/*@import '../../../../../../../node_modules/slick-carousel/slick/slick.css';*/
/*@import '../../../../../../../node_modules/cookieconsent/build/cookieconsent.min.css';*/
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}
.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}
/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}
.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}
/* contains the content */
.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}
/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}
.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}
/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}
.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}
.featherlight iframe {
	/* styling */
	border: none;
}
.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}
/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}
/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* IE9 hack, otherwise navigation doesn't appear */
	background: rgba(0,0,0,0);
}
.featherlight-previous {
	left: 25px;
	right: 80%;
}
.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0.25);
}
.featherlight-next span,
.featherlight-previous span {
	display: none;
	position: absolute;

	top: 50%;
	left: 5%;
	width: 82%;

	/* center horizontally */
	text-align: center;

	font-size: 80px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #fff;
	font-style: normal;
	font-weight: normal;
}
.featherlight-next span {
	right: 5%;
	left: auto;
}
.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}
.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}
/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}
/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}
/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}
@font-face {
  font-family: 'MuseoSans-100';
  src: url('../fonts/380BBE_4_0.eot');
  src: url('../fonts/380BBE_4_0.eot?#iefix') format('embedded-opentype'), url('../fonts/380BBE_4_0.woff2') format('woff2'), url('../fonts/380BBE_4_0.woff') format('woff'), url('../fonts/380BBE_4_0.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSans-100Italic';
  src: url('../fonts/380BBE_7_0.eot');
  src: url('../fonts/380BBE_7_0.eot?#iefix') format('embedded-opentype'), url('../fonts/380BBE_7_0.woff2') format('woff2'), url('../fonts/380BBE_7_0.woff') format('woff'), url('../fonts/380BBE_7_0.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSans-500';
  src: url('../fonts/380BBE_3_0.eot');
  src: url('../fonts/380BBE_3_0.eot?#iefix') format('embedded-opentype'), url('../fonts/380BBE_3_0.woff2') format('woff2'), url('../fonts/380BBE_3_0.woff') format('woff'), url('../fonts/380BBE_3_0.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSans-700';
  src: url('../fonts/380BBE_0_0.eot');
  src: url('../fonts/380BBE_0_0.eot?#iefix') format('embedded-opentype'), url('../fonts/380BBE_0_0.woff2') format('woff2'), url('../fonts/380BBE_0_0.woff') format('woff'), url('../fonts/380BBE_0_0.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSans-900';
  src: url('../fonts/380BBE_9_0.eot');
  src: url('../fonts/380BBE_9_0.eot?#iefix') format('embedded-opentype'), url('../fonts/380BBE_9_0.woff2') format('woff2'), url('../fonts/380BBE_9_0.woff') format('woff'), url('../fonts/380BBE_9_0.ttf') format('truetype');
}
@font-face {
  font-family: 'MuseoSans-300';
  src: url('../fonts/Museo-300.eot');
  src: url('../fonts/Museo-300.eot?#iefix') format('embedded-opentype'), url('../fonts/Museo-300.woff2') format('woff2'), url('../fonts/Museo-300.woff') format('woff'), url('../fonts/Museo-300.ttf') format('truetype');
}
@font-face {
  font-family: 'desyrelregular';
  src: url('../fonts/desyrel_-webfont.woff2') format('woff2'),
  url('../fonts/desyrel_-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
:root {
  --font-family-sans-serif: 'MuseoSans-100', sans-serif;
  --font-family-light: 'MuseoSans-100', sans-serif;
  --font-family-light-italic: 'MuseoSans-100Italic', sans-serif;
  --font-family-medium: 'MuseoSans-500', sans-serif;
  --font-family-bold: 'MuseoSans-700', sans-serif;
  --font-family-black: 'MuseoSans-900', sans-serif;
  --font-family-headline: 'MuseoSans-900', sans-serif;
  --font-family-decoration: 'MuseoSans-300', sans-serif;

  --font-weight-decoration: normal;
  --font-weight-regular: normal;
  --font-weight-semi-bold: normal;
  --font-weight-bold: normal;
  --font-weight-headline: normal;
}
:root {
  --brand-primary: #ffdd00;
  --brand-secondary: #000;
  --brand-tertiary: #f00;

  --white: #fff;
  --gray: #f7f7f9;
  --gray-light: #f7f7f9;
  --gray-lighter: #f7f7f9;
  --gray-lightest: #f7f7f9;
  --black: #000;
  --gray-dark: #2c2c2c;
}
body {
  font-size: 20px;
  line-height: 28px;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-light);
  font-weight: normal;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.content-text h1, .content-text h2 {
    margin: 0 0 20px 0;
    color: #000;
    color: #000;
    color: var(--brand-secondary);
    font-family: 'MuseoSans-900', sans-serif;
    font-family: 'MuseoSans-900', sans-serif;
    font-family: var(--font-family-black);
    font-weight: normal;
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase
  }
@media(min-width: 1024px) {
.content-text h1, .content-text h2 {
      margin: 0 0 30px 0;
      font-size: 52px;
      line-height: 60px
  }
    }
.content-text h3 {
    margin: 0 0 20px 0;
    color: #000;
    color: #000;
    color: var(--brand-secondary);
    font-family: 'MuseoSans-900', sans-serif;
    font-family: 'MuseoSans-900', sans-serif;
    font-family: var(--font-family-black);
    font-weight: normal;
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase
  }
@media(min-width: 1024px) {
.content-text h3 {
      margin: 0 0 30px 0;
      font-size: 38px;
      line-height: 45px
  }
    }
.content-text h4 {
    font-size: 20px;
    line-height: 28px;
    font-family: 'MuseoSans-700', sans-serif;
    font-family: 'MuseoSans-700', sans-serif;
    font-family: var(--font-family-bold);
    font-weight: normal;
  }
.content-text hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: #ffdd00;
    background: #ffdd00;
    background: var(--brand-primary)
  }
@media(min-width: 1024px) {
.content-text hr {
      margin: 30px 0
  }
    }
.content-text ul {
    margin: 30px 0;
    padding: 0 0 0 25px;
    list-style: none
  }
.content-text ul:first-child {
      margin-top: 0;
    }
.content-text ul li {
      margin-bottom: 4px
    }
.content-text ul li:before {
        content: "\2022";
        color: currentColor;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
      }
.content-text a {
    color: #000;
    color: #000;
    color: var(--black);
    text-decoration: underline
  }
.content-text a:hover {
      text-decoration: none;
    }
b, strong {
  font-family: 'MuseoSans-700', sans-serif;
  font-family: 'MuseoSans-700', sans-serif;
  font-family: var(--font-family-bold);
  font-weight: normal;
}
.select-replace {
  position: relative;
  height: 50px;
  background: transparent;
  border: solid 1px #000;
  border: solid 1px #000;
  border: solid 1px var(--black);
  border-radius: 0;
  -webkit-transition: background 500ms;
  transition: background 500ms;

}
.select-replace >select {
    position: absolute;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    line-height: 20px;
    border: none;
    border-radius: 0;
    height: 48px;
    outline: none;
    background: #fff;
    background: #fff;
    background: var(--white);
    -webkit-box-shadow:none !important;
            box-shadow:none !important;
    cursor: pointer;
    color: #000;
    color: #000;
    color: var(--black);
    font-family: 'MuseoSans-100', sans-serif;
    font-family: 'MuseoSans-100', sans-serif;
    font-family: var(--font-family-light);
    font-weight: normal;
    text-align: left;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance:none

  }
.select-replace >select::-ms-expand {
      display: none;
    }
.select-replace >select:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #414141;
    }
.select-replace >select option {
      color: #000;
    }
.select-replace >.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    border-left: solid 1px #000;
    border-left: solid 1px #000;
    border-left: solid 1px var(--black);
    pointer-events: none
  }
.select-replace >.icon:after {
      content: "";
      position: absolute;
      top: -webkit-calc(50% - 9px);
      top: calc(50% - 9px);
      left: -webkit-calc(50% - 9px);
      left: calc(50% - 9px);
      display: block;
      width: 18px;
      height: 18px;
      background: url(../images/arrow-black.svg) no-repeat center;
      background-size: 17px auto;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
    }
.select-replace:hover >.icon {
    }
.select-replace:focus {
    background: #fff;
  }
.radio-replace {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}
.radio-replace >input {
    display: none
  }
.radio-replace >input + .text {
      display: inline-block;
    }
.radio-replace >input + .text >.icon {
        position: relative;
        display: inline-block;
        top: 4px;
        width: 18px;
        height: 18px;
        border: solid 1px #f00;
        border: solid 1px #f00;
        border: solid 1px var(--brand-tertiary);
        border-radius: 18px;
        margin-right: 5px;
        background: transparent;
        text-align: center;
        font-size: 13px;
        line-height: 18px;
        padding: 1px 0 0 0;
        color: red;
        -webkit-transition: color 100ms;
        transition: color 100ms
      }
.radio-replace >input + .text >.icon::before {
          position: absolute;
          left: 0;
          top: 0;
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          border-radius: 18px;
          background: transparent;
          -webkit-transition: all 150ms, background 300ms;
          transition: all 150ms, background 300ms;
        }
.radio-replace >input:checked + .text >.icon::before {
          left: 2px;
          top: 2px;
          width: 12px;
          height: 12px;
          background: #f00;
          background: #f00;
          background: var(--brand-tertiary);
        }
/*
1200
1380

margin desktop 50
margin mobile 36
margin mobile small 23


 */
.container {
  position: relative;
  width: 100%;
}
.container__inside {
  display: block;
  position: relative;
  max-width: 1380px;
  margin: 0 36px
}
@media(min-width: 768px) {
.container__inside {
    margin: 0 50px
}
  }
@media(min-width: 1024px) {
.container__inside {
    margin: 0 50px
}
  }
@media (min-width: 1480px) {
.container__inside {
    margin: 0 auto
}
  }
.container__inside--small {
  margin: 0 36px;
  max-width: 1200px
}
@media(min-width: 768px) {
.container__inside--small {
    margin: 0 50px
}
  }
@media(min-width: 1024px) {
.container__inside--small {
    margin: 0 50px
}
  }
@media (min-width: 1300px) {
.container__inside--small {
    margin: 0 auto
}
  }
.container__inside--big {
  margin: 0 36px;
  max-width: none
}
@media(min-width: 768px) {
.container__inside--big {
    margin: 0 50px !important
}
  }
.container__inside--extra-small {
  margin: 0 15px;
  max-width: 830px
}
@media(min-width: 768px) {
.container__inside--extra-small {
    margin: 0 15px
}
  }
@media(min-width: 1024px) {
.container__inside--extra-small {
    margin: 0 40px
}
  }
@media (min-width: 1120px) {
.container__inside--extra-small {
    margin: 0 auto
}
  }
.container__inside--full-width-border {
  margin: 0;
  max-width: none
}
@media(min-width: 768px) {
.container__inside--full-width-border {
    margin: 0 50px !important
}
  }
.container--margin {
  margin-top: 50px;
  margin-bottom: 50px
}
@media(min-width: 1024px) {
.container--margin {
    margin-top: 90px;
    margin-bottom: 90px
}
  }
.container--margin-top {
  margin-top: 50px
}
@media(min-width: 1024px) {
.container--margin-top {
    margin-top: 90px
}
  }
.container--margin-bottom {
  margin-bottom: 50px
}
@media(min-width: 1024px) {
.container--margin-bottom {
    margin-bottom: 90px
}
  }
.container--margin-big {
  margin-top: 100px;
  margin-bottom: 100px;
}
.container--margin-big-top {
  margin-top: 100px;
}
.container--margin-big-bottom {
  margin-bottom: 100px;
}
.container--padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.container--padding-top {
  padding-top: 50px;
}
.container--padding-bottom {
  padding-bottom: 50px;
}
.container--padding-big {
  padding-top: 100px;
  padding-bottom: 100px;
}
.container--padding-big-top {
  padding-top: 100px;
}
.container--padding-big-bottom {
  padding-bottom: 100px;
}
a.btn,
.btn {
  position: relative;
  margin-right: 15px;
  padding: 15px 50px 14px 15px;
  background: #000;
  background: #000;
  background: var(--brand-secondary);
  color: #fff;
  color: #fff;
  color: var(--white);
  font-family: 'MuseoSans-300', sans-serif;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: var(--font-family-decoration);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-decoration);
  font-size: 20px;
  line-height: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer
}
a.btn:hover, .btn:hover {
    text-decoration: none;
  }
a.btn:after, .btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 17px;
    right: 15px;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background: url(../images/arrow-white.svg) no-repeat center;
    background-size: 14px auto;
  }
a.btn.btn--fixed-sm, .btn.btn--fixed-sm {
    display: block;
    width: 150px;
  }
.table-responsive {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 0 20px 0
}
.table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
  }
.table-responsive::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);
  }
.table-responsive table,
table.contenttable {
  width: 100%;
  max-width: 100%;
  border-bottom: solid 1px #000;
  border-bottom: solid 1px #000;
  border-bottom: solid 1px var(--black);
  font-size: 23px;
  line-height: 28px;
  background: #fff;
  background: #fff;
  background: var(--white);
  border-collapse: collapse;

}
.table-responsive table thead, table.contenttable thead {
    border-bottom: solid 1px #000;
    border-bottom: solid 1px #000;
    border-bottom: solid 1px var(--black);
  }
.table-responsive table thead th, table.contenttable thead th {
      padding: 10px;
      color: #000;
      color: #000;
      color: var(--black);
      text-align: left;
      font-family: 'MuseoSans-700', sans-serif;
      font-family: 'MuseoSans-700', sans-serif;
      font-family: var(--font-family-bold);
      font-weight: normal;
      vertical-align: top;
      background: #fff;
      background: #fff;
      background: var(--white);
    }
.table-responsive table td, table.contenttable td {
    padding: 10px;
    vertical-align: middle;
  }
.table-responsive table tr, table.contenttable tr {
    background: #ffdd00;
    background: #ffdd00;
    background: var(--brand-primary);
    vertical-align: top
  }
.table-responsive table tr:nth-child(even), table.contenttable tr:nth-child(even) {
      background: none;
    }
.table-responsive table p, table.contenttable p {
    margin: 0 !important;
  }
/*@import 'Components/modal.css';*/
/*@import 'Components/loading-icon.css';*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  margin: 0;
  padding: 0;
}
html {
  background: #fff;
  background: #fff;
  background: var(--white);
}
body {
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  color: #000;
  color: #000;
  color: var(--black);
}
.page__main {
/*  display: flex;
  flex-wrap: wrap;*/
  overflow: hidden;
  margin-top: 195px
}
@media(min-width: 1024px) {
.page__main {
    margin-top: 253px
}
  }
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
.page-header {
  position: fixed;
  top: 0;
  height: 195px;
  width: 100%;
  z-index: 100;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  -webkit-transition: background 300ms, height 250ms, -webkit-box-shadow 250ms;
  transition: background 300ms, height 250ms, -webkit-box-shadow 250ms;
  transition: background 300ms, height 250ms, box-shadow 250ms;
  transition: background 300ms, height 250ms, box-shadow 250ms, -webkit-box-shadow 250ms
}
@media(min-width: 1024px) {
.page-header {
    height: 253px
}
  }
.admin-bar .page-header {
    top: 46px
  }
@media(min-width: 1024px) {
.admin-bar .page-header {
      top: 32px
  }
    }
.page-header__inside {
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px);
}
.page-header__logo {
  position: absolute;
  top: 22px;
  left: -webkit-calc(50% - 100px);
  left: calc(50% - 100px);
  z-index: 120;
  width: 200px;
  height: -webkit-calc(100% - 24px);
  height: calc(100% - 24px);
  overflow: hidden;
  -webkit-transition: top 250ms;
  transition: top 250ms;
}
@media(min-width: 768px) {
.page-header__logo {
    top: 19px;
    left: -webkit-calc(50% - 100px);
    left: calc(50% - 100px);
    width: 200px;
}
  }
.page-header__logo img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: auto;
  }
.header__logo--icon {
  opacity: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.header__logo--full {
  opacity: 1;
}
body.scrolled .page-header {

  height: 130px;
}
@media(min-width: 1024px) {
body.scrolled .page-header {
}

  }
body.scrolled .page-header {

/*  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 60px;
    background: url(../images/header-border-background.svg) center repeat-x;
    background-size: auto 100%;
  }

  @md-min {
    height: calc(253px + 60px);
  }*/
}
body.scrolled .page-header .page-header__logo {
    top: 9px;
    height: -webkit-calc(100% - 9px);
    height: calc(100% - 9px);
  }
body.scrolled .page-header .header__logo--full {
    opacity: 0;
  }
body.scrolled .page-header .header__logo--icon {
    opacity: 1;
  }
body.scrolled .page-header {

  -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);

          box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
}
/*
.navigation-open, .scrolled {

  .page-header--white {
    .page-header__logo-img--white {
      display: none;
    }

    .page-header__logo-img--gray {
      display: block;
    }
  }
}*/
.page-header__mobile-wrap {
  display: none
}
@media(max-width: 1023px) {
.page-header__mobile-wrap {
    position: absolute;
    left: -36px;
    right: -36px;
    top: 145px;
    height: -webkit-calc(100vh - 145px);
    height: calc(100vh - 145px);
    background: #ffdd00;
    background: #ffdd00;
    background: var(--brand-primary)
}
  }
@media(min-width: 768px) and (max-width: 1023px) {
.page-header__mobile-wrap {
    left: -50px;
    right: -50px
}
  }
@media(min-width: 1024px) {
.page-header__mobile-wrap {
    display: block
}
  }
@media(max-width: 1023px) {
.scrolled .page-header__mobile-wrap {
      top: 80px;
      height: -webkit-calc(100vh - 80px);
      height: calc(100vh - 80px)
  }
    }
@media(max-width: 1023px) {
.navigation-open .page-header__mobile-wrap {
      display: block
  }
    }
.page-header__service-section {
  position: relative;
  width: 100%;
  height: 50px;
  background: #000;
  background: #000;
  background: var(--black);
}
.page-header__service-section__inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-header__whatsapp {
  position: relative;
  justify-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  color: #fff;
  color: var(--white);
}
.page-header__whatsapp a {
    position: relative;
    display: block;
    padding-left: 38px;
    color: #fff;
    color: #fff;
    color: var(--white);
    text-decoration: none;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: var(--font-family-medium);
    font-weight: normal
  }
.page-header__whatsapp a:hover {
      text-decoration: underline;
    }
.page-header__whatsapp a:before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: -5px;
      height: 27px;
      width: 27px;
      background: url(../images/icon-whatsapp.svg) no-repeat center center;
      background-size: 100%;

    }
@media(max-width: 767px) {
.header__whatsapp__sm-min {
    display: none
}
  }
.woocommerce .page-header__search,
.page-header__search {
  margin-left: 49px;


}
@media(max-width: 1023px) {
.woocommerce .page-header__search,
.page-header__search {
    display: none;


}
  }
.woocommerce .page-header__search form, .page-header__search form {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
.woocommerce .page-header__search button, .page-header__search button {
    display: block;
    width: 23px;
    height: 23px;
    margin: 0 10px 0 0;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: url(../images/icon-search.svg) no-repeat center center;
    background-size: contain;
    text-indent: -1000px;
    overflow: hidden;
  }
.woocommerce .page-header__search input[type=text], .page-header__search input[type=text] {
    width: 186px;
    height: 20px;
    padding: 0;
    font-size: 15px;
    line-height: 20px;
    background: black;
    border: none;
    border-bottom: solid 1px #fff;
    border-bottom: solid 1px #fff;
    border-bottom: solid 1px var(--white);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    color: #fff;
    color: #fff;
    color: var(--white);
  }
.page-header__main-navigation {
  position: relative;
  margin: 80px 35px 35px 35px;
  -webkit-transition: top 250ms;
  transition: top 250ms;
}
@media(min-width: 1024px) {
.page-header__main-navigation {
    position: absolute;
    right: 0;
    top: 85px;
    margin: 0;
}
  }
.page-header__main-navigation > ul {
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 184px;
    list-style: none;
    z-index: 200;
  }
.page-header__main-navigation > ul > li {
      position: relative;
      display: block;
      padding-bottom: 28px;
      padding-left: 36px;
      white-space: nowrap;
      text-align: left
    }
@media(max-width: 1023px) {
.page-header__main-navigation > ul > li {

        padding-bottom: 8px
    }
          .page-header__main-navigation > ul > li.menu-item-has-children > .before-icon {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 4px;
            width: 25px;
            height: 25px;
            background: url(../images/nav-arrow.svg) no-repeat center;
            background-size: contain;
            -webkit-transition: -webkit-transform 250ms;
            transition: -webkit-transform 250ms;
            transition: transform 250ms;
            transition: transform 250ms, -webkit-transform 250ms;
            cursor: pointer;
          }
          .page-header__main-navigation > ul > li.open > .before-icon {
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
          }

        .page-header__main-navigation > ul > li:last-child {
          padding-bottom: 0;
        }
      }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li {
        display: inline-block;
        margin-left: 20px;
        padding-left: 0;
        text-align: left
    }

        .page-header__main-navigation > ul > li:first-child {
          margin-left: 0;
        }
          .page-header__main-navigation > ul > li.menu-item-has-children > .before-icon {
            display: none;
          }
      }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li:hover > a {
            color: #000;
            color: #000;
            color: var(--brand-secondary)
        }
          }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li.active > a {
            color: #000;
            color: #000;
            color: var(--brand-secondary)
        }
          }
.page-header__main-navigation > ul > li > a {
        font-family: 'MuseoSans-100', sans-serif;
        font-family: 'MuseoSans-100', sans-serif;
        font-family: var(--font-family-sans-serif);
        font-weight: normal;
        font-weight: normal;
        font-weight: var(--font-weight-regular);
      }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li.menu-item-has-children:hover > ul {
              display: block
          }
            }
.page-header__main-navigation > ul > li > ul {
        display: none;
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0
      }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul {
          position: absolute;
          background: #fff;
          background: #fff;
          background: var(--white);
          -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
                  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
          right: 0;
          top: 54px;
          padding: 25px
      }
        }
.page-header__main-navigation > ul > li > ul:before {
          content: "";
          position: absolute;
          right: 20px;
          top: -15px;
          display: block;
          width: 30px;
          height: 30px;
          background: #fff;
          background: #fff;
          background: var(--white);
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg)
        }
@media(max-width: 1023px) {
.page-header__main-navigation > ul > li > ul:before {
            display: none
        }
          }
.page-header__main-navigation > ul > li > ul a {
          font-size: 35px;
          line-height: 40px;
          text-decoration: none;
          font-family: 'MuseoSans-500', sans-serif;
          font-family: 'MuseoSans-500', sans-serif;
          font-family: var(--font-family-medium);
          font-weight: normal;
          font-weight: normal;
          font-weight: var(--font-weight-regular);
          color: #000;
          color: #000;
          color: var(--black);
          text-transform: none
        }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul a {
            font-size: 15px;
            line-height: 20px
        }
          }
.page-header__main-navigation > ul > li > ul a:hover {
            color: #000;
            color: #000;
            color: var(--brand-secondary);
            text-decoration: underline
          }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul a:hover {
              color: #000;
              color: #000;
              color: var(--brand-secondary)
          }
            }
.page-header__main-navigation > ul > li > ul > li {
          position: relative;
          white-space: normal;
          padding-left: 36px;
        }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul > li {
            white-space: nowrap;
            padding-left: 0;
        }
          }
.page-header__main-navigation > ul > li > ul > li > .before-icon {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 4px;
            width: 25px;
            height: 25px;
            background: url(../images/nav-arrow.svg) no-repeat center;
            background-size: contain;
            -webkit-transition: -webkit-transform 250ms;
            transition: -webkit-transform 250ms;
            transition: transform 250ms;
            transition: transform 250ms, -webkit-transform 250ms;
            cursor: pointer
          }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul > li > .before-icon {
              display: inline-block;
              position: relative;
              top: 2px;
              margin-right: 4px;
              width: 15px;
              height: 15px;
              background: url(../images/nav-arrow.svg) no-repeat center;
              -webkit-transform: rotate(0);
                      transform: rotate(0);
              -webkit-transition: -webkit-transform 250ms;
              transition: -webkit-transform 250ms;
              transition: transform 250ms;
              transition: transform 250ms, -webkit-transform 250ms;
              cursor: pointer
          }
            }
.page-header__main-navigation > ul > li > ul > li.open {

            /*            >ul {
                          display: block;
                        }*/
          }
.page-header__main-navigation > ul > li > ul > li.open .before-icon {
              -webkit-transform: rotate(90deg);
                      transform: rotate(90deg);
            }
.page-header__main-navigation > ul > li > ul > li.open > a {
              text-decoration: underline;
              /*              color: var(--white);*/
            }
.page-header__main-navigation > ul > li > ul > li > ul {
            display: none;
            margin: 10px 0;
            padding: 0;
            list-style: none;
          }
@media(min-width: 1024px) {
.page-header__main-navigation > ul > li > ul > li > ul {
              margin: 5px 0 5px 20px;
          }
            }
.page-header__main-navigation > ul > li > ul > li > ul a {
              font-family: 'MuseoSans-900', sans-serif;
              font-family: 'MuseoSans-900', sans-serif;
              font-family: var(--font-family-black);
              font-weight: normal;
              font-weight: normal;
              font-weight: var(--font-weight-regular)
            }
.page-header__main-navigation > ul > li > ul > li > ul a:hover {
                text-decoration: underline;
              }
.page-header__main-navigation a {
    font-size: 35px;
    line-height: 40px;
    text-decoration: none;
    text-transform: none;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: var(--font-family-medium);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    color: #000;
    color: #000;
    color: var(--black)
  }
@media(min-width: 1024px) {
.page-header__main-navigation a {
      font-size: 18px;
      line-height: 22px;
      color: #000;
      color: #000;
      color: var(--black);
      text-decoration: none;
      text-transform: uppercase
  }

    }
.page-header__main-navigation a:hover {
      color: #fff;
      color: #fff;
      color: var(--white);
      text-decoration: underline
    }
@media(min-width: 1024px) {
.page-header__main-navigation a:hover {
        color: #000;
        color: #000;
        color: var(--brand-secondary)
    }
      }
@media(min-width: 1024px) {
.scrolled .page-header__main-navigation {
      top: 28px
  }
    }
.page-header__shop-navigation {
  position: relative;
  margin: 35px;
  -webkit-transition: top 250ms;
  transition: top 250ms;
}
@media(min-width: 1024px) {
.page-header__shop-navigation {
    position: absolute;
    left: 0;
    top: 85px;
    margin: 0;
}
  }
.page-header__shop-navigation > ul {
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 184px;
    list-style: none;
    z-index: 200;
  }
.page-header__shop-navigation > ul > li {
      position: relative;
      display: block;
      padding-bottom: 28px;
      padding-left: 36px;
      white-space: nowrap;
      text-align: left
    }
@media(max-width: 1023px) {
          .page-header__shop-navigation > ul > li.menu-item-has-children > .before-icon {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 4px;
            width: 25px;
            height: 25px;
            background: url(../images/nav-arrow.svg) no-repeat center;
            background-size: contain;
            -webkit-transition: -webkit-transform 250ms;
            transition: -webkit-transform 250ms;
            transition: transform 250ms;
            transition: transform 250ms, -webkit-transform 250ms;
            cursor: pointer;
          }
          .page-header__shop-navigation > ul > li.open > .before-icon {
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
          }

        .page-header__shop-navigation > ul > li:last-child {
          padding-bottom: 0;
        }
      }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li {
        display: inline-block;
        margin-left: 20px;
        padding-left: 0;
        text-align: left
    }

        .page-header__shop-navigation > ul > li:first-child {
          margin-left: 0;
        }
          .page-header__shop-navigation > ul > li.menu-item-has-children > .before-icon {
            display: none;
          }
      }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li:hover > a {
            color: #000;
            color: #000;
            color: var(--brand-secondary)
        }
          }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li.active > a {
            color: #000;
            color: #000;
            color: var(--brand-secondary)
        }
          }
.page-header__shop-navigation > ul > li > a {
        font-family: 'MuseoSans-900', sans-serif;
        font-family: 'MuseoSans-900', sans-serif;
        font-family: var(--font-family-headline);
        font-weight: normal;
        font-weight: normal;
        font-weight: var(--font-weight-headline);
      }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li.menu-item-has-children:hover > ul {
              display: block
          }
            }
.page-header__shop-navigation > ul > li > ul {
        display: none;
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0
      }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul {
          position: absolute;
          background: #fff;
          background: #fff;
          background: var(--white);
          -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
                  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
          top: 54px;
          padding: 25px
      }
        }
.page-header__shop-navigation > ul > li > ul:before {
          content: "";
          position: absolute;
          left: 20px;
          top: -15px;
          display: block;
          width: 30px;
          height: 30px;
          background: #fff;
          background: #fff;
          background: var(--white);
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg)
        }
@media(max-width: 1023px) {
.page-header__shop-navigation > ul > li > ul:before {
            display: none
        }
          }
.page-header__shop-navigation > ul > li > ul a {
          font-size: 35px;
          line-height: 40px;
          text-decoration: none;
          font-family: 'MuseoSans-500', sans-serif;
          font-family: 'MuseoSans-500', sans-serif;
          font-family: var(--font-family-medium);
          font-weight: normal;
          font-weight: normal;
          font-weight: var(--font-weight-regular);
          color: #000;
          color: #000;
          color: var(--black);
          text-transform: none
        }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul a {
            font-size: 15px;
            line-height: 20px
        }
          }
.page-header__shop-navigation > ul > li > ul a:hover {
            color: #000;
            color: #000;
            color: var(--brand-secondary);
            text-decoration: underline
          }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul a:hover {
              color: #000;
              color: #000;
              color: var(--brand-secondary)
          }
            }
.page-header__shop-navigation > ul > li > ul > li {
          position: relative;
          white-space: nowrap;
          padding-left: 36px;
        }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul > li {
            padding-left: 0;
        }
          }
.page-header__shop-navigation > ul > li > ul > li > .before-icon {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 4px;
            width: 25px;
            height: 25px;
            background: url(../images/nav-arrow.svg) no-repeat center;
            background-size: contain;
            -webkit-transition: -webkit-transform 250ms;
            transition: -webkit-transform 250ms;
            transition: transform 250ms;
            transition: transform 250ms, -webkit-transform 250ms;
            cursor: pointer
          }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul > li > .before-icon {
              display: inline-block;
              position: relative;
              top: 2px;
              margin-right: 4px;
              width: 15px;
              height: 15px;
              background: url(../images/nav-arrow.svg) no-repeat center;
              -webkit-transform: rotate(0);
                      transform: rotate(0);
              -webkit-transition: -webkit-transform 250ms;
              transition: -webkit-transform 250ms;
              transition: transform 250ms;
              transition: transform 250ms, -webkit-transform 250ms;
              cursor: pointer
          }
            }
.page-header__shop-navigation > ul > li > ul > li.open {

            /*            >ul {
                          display: block;
                        }*/
          }
.page-header__shop-navigation > ul > li > ul > li.open .before-icon {
              -webkit-transform: rotate(90deg);
                      transform: rotate(90deg);
            }
.page-header__shop-navigation > ul > li > ul > li.open > a {
              text-decoration: underline;
              /*              color: var(--white);*/
            }
.page-header__shop-navigation > ul > li > ul > li > ul {
            display: none;
            margin: 10px 0;
            padding: 0;
            list-style: none;
          }
@media(min-width: 1024px) {
.page-header__shop-navigation > ul > li > ul > li > ul {
              margin: 5px 0 5px 20px;
          }
            }
.page-header__shop-navigation > ul > li > ul > li > ul a {
              font-family: 'MuseoSans-900', sans-serif;
              font-family: 'MuseoSans-900', sans-serif;
              font-family: var(--font-family-black);
              font-weight: normal;
              font-weight: normal;
              font-weight: var(--font-weight-regular)
            }
.page-header__shop-navigation > ul > li > ul > li > ul a:hover {
                text-decoration: underline;
              }
.page-header__shop-navigation a {
    font-size: 35px;
    line-height: 40px;
    text-decoration: none;
    text-transform: none;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: 'MuseoSans-500', sans-serif;
    font-family: var(--font-family-medium);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    color: #000;
    color: #000;
    color: var(--black)
  }
@media(min-width: 1024px) {
.page-header__shop-navigation a {
      font-size: 18px;
      line-height: 22px;
      color: #000;
      color: #000;
      color: var(--black);
      text-decoration: none;
      text-transform: uppercase
  }

    }
.page-header__shop-navigation a:hover {
      color: #fff;
      color: #fff;
      color: var(--white);
      text-decoration: underline
    }
@media(min-width: 1024px) {
.page-header__shop-navigation a:hover {
        color: #000;
        color: #000;
        color: var(--brand-secondary)
    }
      }
@media(min-width: 1024px) {
.scrolled .page-header__shop-navigation {
      top: 28px
  }
    }
.page-header__service-nav {
  margin-left: auto;
}
.page-header__service-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
.page-header__service-nav > ul li {
      display: block;
      margin: 0 0 0 10px;
      width: 50px;
      height: 50px

      /* Hide cart: */
    }
.page-header__service-nav > ul li:last-child {
        display: none !important;
      }
.page-header__service-nav > ul li {

/*      &.language a {
        background-image: url(../images/header-icon-language.svg);

        &:hover {
          background-image: url(../images/header-icon-language-hover.svg);
        }

        &:focus {
          background-image: url(../images/header-icon-language-hover.svg);
        }
      }*/
    }
.page-header__service-nav > ul li.login a {
        background-image: url(../images/icon-login-white.svg);
      }
.page-header__service-nav > ul li.contact a {
        background-image: url(../images/icon-contact-white.svg);
      }
/*      &.cart.cart--has-items {
        position: relative;

        .cart__counter {
          display: block;
        }

        a {
          position: relative;
        }

        &:before {
          content: "";
          position: absolute;
          left: -7px;
          top: -7px;
          display: inline-block;
          width: 36px;
          height: 36px;
          border-radius: 50%;
          background: var(--gray-light);

          @xl-min {
            width: 48px;
            height: 48px;
            top: -9px;
            left: -9px;
          }
        }
      }*/
.page-header__service-nav > ul li a {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        text-indent: -1000px;
        background-size: auto 27px;
        background-repeat: no-repeat;
        background-position: center
      }
/*      &.cart .cart__counter {
        display: none;
        position: absolute;
        top: -10px;
        right: -10px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        font-size: 10px;
        line-height: 15px;
        font-family: var(--font-family-bold);
        font-weight: var(--font-weight-bold);
        color: var(--white);
        text-align: center;
        background: var(--brand-primary);

        @xl-min {
          top: -14px;
          right: -14px;
          width: 22px;
          height: 22px;
          font-size: 12px;
          line-height: 22px;
        }
      }*/
.page-header__service-nav > ul li a:hover {
          opacity: .6;
        }
.page-header__service-nav > ul .wc-block-mini-cart {
      display: block;
      width: 100%;
      height: 100%;
    }
.page-header__service-nav > ul .wc-block-mini-cart__button {
      display: block;
      width: 100%;
      height: 100%;
      padding: 0;
      cursor: pointer;
    }
.page-header__service-nav > ul .wc-block-mini-cart__quantity-badge {
      display: block;
      width: 100%;
      height: 100%;
      background: url(../images/icon-cart.svg) no-repeat center;
      background-size: auto 25px;
    }
.page-header__service-nav > ul .wc-block-mini-cart__quantity-badge svg {
        display: none;
      }
/*.page-header__service-nav__overlay--language {
  padding: 7px 0;

  .wpml-ls-legacy-list-horizontal {
    padding: 0;
    border: none;
  }

  .wpml-ls-display {
    display: none;
  }

  ul {
    @md-max {
      text-align: center;
    }
  }

  li {
    margin: 0 !important;
    font-size: 14px;

    @lg-min {
      display: block;
      margin: 0 0 10px 0;
      width: 100%;
      font-size: 16px;
    }
  }

  a.wpml-ls-link {
    color: var(--black);
    margin: 7px 0;
    padding: 0 10px;
    transition: all 500ms;
    font-size: 16px;
    line-height: 24px;

    @lg-min {
      padding: 6px 57px 6px 24px;
      font-size: 14px;
      line-height: 20px;
    }

    @xl-min {
      font-size: 16px;
      line-height: 24px;
    }

    &:hover {
      text-decoration: none;
      background-color: var(--very-light-pink) !important;
    }

    !* &:hover {
      background-color: var(--very-light-pink);
      color: var(--black);
    }

    &:focus {
      background-color: var(--very-light-pink);
      color: var(--black);
    } *!
  }

  .wpml-ls-current-language {
    a {
      font-weight: var(--font-weight-light);
    }
  }
}*/
.page-header__service-nav__overlay--mini-cart {
  position: relative;


}
@media(min-width: 1024px) {
.page-header__service-nav__overlay--mini-cart {
    width: 597px;
    max-width: none;


}
  }
@media(min-width: 1200px)  {
.page-header__service-nav__overlay--mini-cart {
    position: absolute;
    width: 597px;
    padding: 16px;


}
  }
.page-header__service-nav__overlay--mini-cart ul.woocommerce-mini-cart {
    margin: 10px 0;
    padding: 8px 0 0 0;
    list-style: none;
    border-top: solid 1px #f7f7f9;
    border-top: solid 1px #f7f7f9;
    border-top: solid 1px var(--gray);
    border-bottom: solid 1px #f7f7f9;
    border-bottom: solid 1px #f7f7f9;
    border-bottom: solid 1px var(--gray);
  }
.page-header__service-nav__overlay--mini-cart li.woocommerce-mini-cart-item {
    margin-bottom: 8px;
  }
.page-header__service-nav__overlay--mini-cart li.woocommerce-mini-cart-item >a {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      color: #000;
      color: #000;
      color: var(--black);
      text-decoration: none;
      font-size: 16px;
      line-height: 24px;
    }
.page-header__service-nav__overlay--mini-cart a.remove_from_cart_button {
    display: none;
  }
.page-header__service-nav__overlay--mini-cart img.wp-post-image, .page-header__service-nav__overlay--mini-cart img.attachment-woocommerce_thumbnail {
    display: block;
    width: 64px;
    height: auto;
    float: none !important;
    margin-right: 8px;
  }
.page-header__service-nav__overlay--mini-cart .mini-cart__product-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
.page-header__service-nav__overlay--mini-cart .mini-cart__product-topline {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-bold);
  }
.page-header__service-nav__overlay--mini-cart .mini-cart__product-subline {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons .button {
      background: #fff;
      background: #fff;
      background: var(--white);
      border-color: var(--solid-blue-100);
      color: var(--solid-blue-100)
    }
@media(min-width: 1024px) {
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons .button {
        width: -webkit-calc(50% - 8px);
        width: calc(50% - 8px);
        text-align: center
    }
      }
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons .button:hover {
        background-color: var(--solid-blue-strong-1);
        border-color: var(--solid-blue-strong-1);
        color: #fff;
        color: #fff;
        color: var(--white);
      }
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons .button.checkout {
        background: var(--solid-blue-100);
        border-color: var(--solid-blue-100);
        color: #fff;
        color: #fff;
        color: var(--white)
      }
.page-header__service-nav__overlay--mini-cart .woocommerce-mini-cart__buttons .button.checkout:hover {
          background-color: var(--solid-blue-strong-1);
          border-color: var(--solid-blue-strong-1);
        }
.page-header__service-nav__overlay--mini-cart >p {
    margin: 16px 0 0 0;
    font-size: 14px;
    line-height: 22px;
  }
.page-header__service-nav__overlay--mini-cart >p a {
      color: var(--solid-blue-100);
      font-weight: normal;
      font-weight: normal;
      font-weight: var(--font-weight-bold);
    }
h4.page-header__service-nav__overlay--mini-cart__headline {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--solid-blue-100);
  text-transform: uppercase;
}
.page-chat-toggle {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1000;
  display: none
}
@media(min-width: 1200px) {
.page-chat-toggle.page-chat-toggle--open {
      display: block
  }
    }
.page-chat-toggle__image-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
          box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
}
.page-chat-toggle__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 125px;
  height: auto;
}
.page-chat-toggle__text-box {
  display: block;
  position: absolute;
  right: 120px;
  bottom: 75px;
  width: 110px;
  height: 107px;
  padding: 6px 10px;
  background: #000;
  background: #000;
  background: var(--black);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
          box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
  color: #fff;
  color: #fff;
  color: var(--white);
  font-size: 10px;
  line-height: 12px;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: var(--font-family-medium);
  z-index: 1001;
}
.page-chat-toggle__headline {
  display: block;
  margin: 0 0 8px 0;
  font-size: 30px;
  line-height: 36px;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: var(--font-family-medium);
}
.page-chat-toggle__close-btn {
  display: block;
  position: absolute;
  bottom: 0;
  right: 125px;
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 25px;
  height: 25px;
  background: none;
  cursor: pointer;
}
.page-chat-toggle__close-btn__bar {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: #000;
    background: #000;
    background: var(--black);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg)
}
.page-chat-toggle__close-btn__bar:nth-child(2) {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg);
    }
.page-navigation-toggle {
  display: block;
  position: absolute;
  left: -25px;
  top: 10px;
  height: 40px;
  width: 85px;
  padding: 0;
  border-radius: 0;
  border: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  -webkit-transition: background 500ms, top 250ms;
  transition: background 500ms, top 250ms;
  z-index: 110
}
@media(min-width: 1024px) {
.page-navigation-toggle {
    display: none
}
  }
.page-navigation-toggle.page-navigation-toggle--open .page-navigation-toggle__bar {}
.page-navigation-toggle.page-navigation-toggle--open .page-navigation-toggle__bar:nth-child(1) {
      -webkit-transform: rotate(405deg);
              transform: rotate(405deg);
      top: 20px;
    }
.page-navigation-toggle.page-navigation-toggle--open .page-navigation-toggle__bar:nth-child(2) {
      height: 0;
    }
.page-navigation-toggle.page-navigation-toggle--open .page-navigation-toggle__bar:nth-child(3) {
      -webkit-transform: rotate(-225deg);
              transform: rotate(-225deg);
      top: 20px;
    }
.page-navigation-toggle.page-navigation-toggle--open .page-navigation-toggle__text {
      color: #ffdd00;
      color: #ffdd00;
      color: var(--brand-primary);
    }
@media(max-width: 767px) {
.page-header--subpage .page-navigation-toggle {
      top: 25px
  }
    }
.page-navigation-toggle__bar {
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 17px;
  height: 1px;
  background: #000;
  background: #000;
  background: var(--black);
  -webkit-transition: all 200ms;
  transition: all 200ms;
  will-change: left, top
}
.page-navigation-toggle__bar:nth-child(2) {
    top: 19px;
  }
.page-navigation-toggle__bar:nth-child(3) {
    top: 23px;
  }
.page-navigation-toggle__text {
  position: absolute;
  left: 40px;
  top: 14px;
  color: #000;
  color: #000;
  color: var(--black);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
}
.page-footer {
  position: relative;
  overflow: hidden;
  font-size: 15px;
  line-height: 22px;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-light);
  font-weight: normal;
  color: #000;
  color: #000;
  color: var(--brand-secondary);

  margin-top: 100px;
}
.page-footer h3 {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 22px;
    font-family: 'MuseoSans-900', sans-serif;
    font-family: 'MuseoSans-900', sans-serif;
    font-family: var(--font-family-black);
    font-weight: normal;
    text-transform: uppercase
  }
.page-footer h3.page-footer__headline-1 {
      position: relative;
      padding-left: 30px
    }
.page-footer h3.page-footer__headline-1:before {
        content: "";
        display: block;
        position: absolute;
        top: -6px;
        left: 0;
        width: 28px;
        height: 28px;
        background: url(../images/icon-corn.svg) no-repeat left center;
        background-size: contain;
      }
.page-footer p {
    margin: 0 0 30px 0;
  }
.page-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
.page-footer ul li {

    }
.page-footer ul a {
      text-decoration: none;
      color: #000;
      color: #000;
      color: var(--brand-secondary)
    }
.page-footer ul a:hover {
        text-decoration: underline;
      }
.page-footer a {
    color: #000;
    color: #000;
    color: var(--black);
    text-decoration: none
  }
.page-footer a:hover {
      text-decoration: underline;
    }
.page-footer address {
    font-style: normal;
  }
.page-footer .btn {
    margin-top: 13px;
    color: #fff;
    color: #fff;
    color: var(--white)
  }
.page-footer .btn:hover {
      text-decoration: none;
    }
p.footer__tax-adivce {
  margin-top: 30px;
}
.page-footer__inside {
  margin-top: 40px;
  margin-bottom: 40px
}
@media(min-width: 1024px) {
.page-footer__inside {
    margin-top: 50px;
    margin-bottom: 50px
}
  }
@media(min-width: 1024px) {
.page-footer__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    grid-gap: 30px;
    grid-gap: 30px;
    gap: 30px
}
  }
.page-footer__column {
  margin-bottom: 40px
}
@media(min-width: 1024px) {
.page-footer__column {
    max-width: -webkit-calc((100% / 4) - 20px);
    max-width: calc((100% / 4) - 20px);
    margin: 0
}
  }
@media(min-width: 1024px) {
.page-footer__column--column-0 {
    max-width: 400px
}
  }
@media(min-width: 1024px) {
.page-footer__column--column-1 {
    margin: 0
}
  }
@media(min-width: 1024px) {
.page-footer__column--column-2 {
    width: 150px
}
  }
@media(min-width: 1024px) {
.page-footer__column--column-3 {
}

  }
.page-footer__service-navigation {
  position: relative;
  margin: 0 0 30px 0
}
@media(min-width: 768px) {
.page-footer__service-navigation {
    margin: 0;
    width: 100%
}
  }
.page-footer__social-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
.page-footer__social-navigation ul li {
      margin-right: 10px
    }
.page-footer__social-navigation ul li:last-child {
        margin-right: 0;
      }
.text {
  position: relative;

}
.text a {
    color: #000;
    color: #000;
    color: var(--brand-secondary);
    text-decoration: underline
  }
.text a:hover {
      text-decoration: none;
    }
.text p {
    margin: 0 0 30px 0
  }
.text p:last-child {
      margin: 0;
    }
.intro-carousel {
  position: relative;
  width: 100%;
  background: #fff;
  background: #fff;
  background: var(--white);
}
.intro-carousel__carousel-section {
  position: relative;
  width: 100%
}
@media(min-width: 1024px) {
.intro-carousel__carousel-section {
    height: -webkit-calc(90vh - 184px);
    height: calc(90vh - 184px);
    min-height: 600px
}
  }
.intro-carousel__items {
  position: relative;
  width: 100%;
  height: 360px
}
@media(min-width: 1024px) {
.intro-carousel__items {
    height: -webkit-calc(90vh - 184px);
    height: calc(90vh - 184px);
    width: 50%
}
  }
.intro-carousel__content {
  position: relative;
  width: 100%;
}
@media(min-width: 1024px) {
.intro-carousel__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
  }
.intro-carousel__content .slick-arrow {
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    left: -webkit-calc(50% - 40px);
    left: calc(50% - 40px);
    bottom: 35px;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    outline: none;
    text-indent: -500px;
    z-index: 10;
    cursor: pointer;
    background: transparent no-repeat center;
    background-size: 20px auto;
    background-image: url(../images/arrow-black-left.svg);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none
  }
@media(min-width: 1024px) {
.intro-carousel__content .slick-arrow {
      bottom: -webkit-calc(50% - 20px);
      bottom: calc(50% - 20px);
      left: auto;
      right: 50px
  }
    }
.intro-carousel__content .slick-arrow:hover {
      opacity: 0.8;
    }
.intro-carousel__content .slick-arrow.slick-prev {
    }
.intro-carousel__content .slick-arrow.slick-next {
      left: auto;
      right: -webkit-calc(50% - 40px);
      right: calc(50% - 40px);
      background-image: url(../images/arrow-black.svg)
    }
@media(min-width: 1024px) {
.intro-carousel__content .slick-arrow.slick-next {
        bottom: -webkit-calc(50% + 20px);
        bottom: calc(50% + 20px);
        left: auto;
        right: 50px
    }
      }
.intro-carousel__content__inside {
  position: relative;
  min-height: 360px;
  padding: 36px;
}
@media(min-width: 1024px) {
.intro-carousel__content__inside {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-height: auto;
    padding: 0;
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
    max-width: 590px;
    margin: 0 50px 0 50px;
}
  }
@media(min-width: 1200px) {
.intro-carousel__content__inside {
    margin: 0 50px 0 100px;
}
  }
/*  @media (min-width: 1480px) {
    margin: 0 auto;
  }*/
.intro-carousel__content__inside .slick-dots {
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
@media(min-width: 1024px) {
.intro-carousel__content__inside .slick-dots {
      top: auto;
      bottom: 20px;
      left: -webkit-calc((50px + 50vw) * -1);
      left: calc((50px + 50vw) * -1);
      text-align: left;
/*      bottom: 75px;
      left: auto;
      right: 0;
      width: 50px;*/
  }
    }
.intro-carousel__content__inside .slick-dots li {
      display: inline-block;
    }
.intro-carousel__content__inside .slick-dots li button {
        display: block;
        width: 8px;
        height: 8px;
        margin: 0 4px;
        padding: 0;
        border: none;
        background: #fff;
        background: #fff;
        background: var(--white);
        border-radius: 4px;
        text-indent: -100px;
        overflow: hidden;
      }
.intro-carousel__content__inside .slick-dots li.slick-active button {
          background: #ffdd00;
          background: #ffdd00;
          background: var(--brand-primary);
        }
.intro-carousel__content__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
}
@media(min-width: 1024px) {
.intro-carousel__content__text-wrap {
    position: absolute;
    top: 50px
/*    width: 80%;*/
}
  }
@media(min-width: 1200px) {
.intro-carousel__content__text-wrap {
    top: 90px
}
  }
.intro-carousel-item__header {
  margin: 0 0 20px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 25px;
  line-height: 30px
}
@media(min-width: 1024px) {
.intro-carousel-item__header {
    margin: 0 0 30px 0;
    font-size: 52px;
    line-height: 60px
}
  }
.intro-carousel-item__subheader {
  min-height: 48px;
  margin: 0 0 45px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 20px;
  line-height: 24px
}
@media(min-width: 1024px) {
.intro-carousel-item__subheader {
    height: auto;
    margin: 0 0 25px 0;
    font-size: 28px;
    line-height: 34px
}
  }
.intro-carousel-item {
  position: relative;
  width: 100%;
  height: 360px
}
@media(min-width: 1024px) {
.intro-carousel-item {
    height: -webkit-calc(90vh - 184px);
    height: calc(90vh - 184px);
    min-height: 600px
}
  }
.intro-carousel-item__text-wrap {
  display: none;
}
.intro-carousel-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}
@media(min-width: 1024px) {
.intro-carousel-item__image {
    width: 100%
}
  }
.intro-carousel__quote-section {
  position: relative;
  padding: 70px 0 0 0
}
@media(min-width: 1024px) {
.intro-carousel__quote-section {
    min-height: 410px;
    padding: 90px 0 0 0
}
  }
.intro-carousel__quote {
  margin: 0 0 0 20px;
  padding: 0;
}
.intro-carousel__quote__blockquote {
  position: relative;
  margin: 0 0 10px 0;
  max-width: 750px;
  font-size: 35px;
  line-height: 42px;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-style: italic;
  text-transform: uppercase
}
@media(min-width: 1024px) {
.intro-carousel__quote__blockquote {
    font-size: 52px;
    line-height: 62px
}
  }
.intro-carousel__quote__blockquote:before {
    content: "”";
    position: absolute;
    left: -20px;
    top: -20px;
    color: #ffdd00;
    color: #ffdd00;
    color: var(--brand-primary);
    font-family: 'MuseoSans-300', sans-serif;
    font-family: 'MuseoSans-300', sans-serif;
    font-family: var(--font-family-decoration);
    font-weight: normal;
    font-size: 58px;
    line-height: 62px
  }
@media(min-width: 1024px) {
.intro-carousel__quote__blockquote:before {
      left: -45px;
      top: -45px;
      font-size: 110px;
      line-height: 120px
  }
    }
.intro-carousel__quote__name {
  margin: 0 0 5px 0;
  color: #ffdd00;
  color: #ffdd00;
  color: var(--brand-primary);
  font-family: 'MuseoSans-300', sans-serif;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: var(--font-family-decoration);
  font-weight: normal;
  font-size: 22px;
  line-height: 27px
}
@media(min-width: 1024px) {
.intro-carousel__quote__name {
    font-size: 30px;
    line-height: 36px
}
  }
.intro-carousel__quote__role {
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-light);
  font-weight: normal;
  font-size: 20px;
  line-height: 21px;
}
.intro-carousel__decoration--mobile {
  position: absolute;
  width: 150px;
  height: 215px;
  right: 0;
  top: 204px;
  z-index: 1;
  background: url(../images/intro-pattern-mobile.svg) no-repeat top left;
  background-size: 100% auto
}
@media(min-width: 1024px) {
.intro-carousel__decoration--mobile {
    display: none
}
  }
.intro-carousel__decoration--desktop {
  display: none;
  position: absolute;
  width: 200px;
  height: 624px;
  right: 0;
  bottom: -500px;
  z-index: 1;
  background: url(../images/intro-pattern.svg) no-repeat top left;
  background-size: 400px auto
}
@media(min-width: 1024px) {
.intro-carousel__decoration--desktop {
    display: block
}
  }
@media(min-width: 1200px) {
.intro-carousel__decoration--desktop {
    width: 400px
}
  }
.image.image--with-decoration {
    margin-bottom: 150px
  }
@media(min-width: 768px) {
.image.image--with-decoration {
      margin-bottom: 200px
  }
    }
.image__image-wrap {
  position: relative;
  margin: 0;
}
.image__image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.image__image__caption {
  margin: 20px 0 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #ffdd00;
  color: #ffdd00;
  color: var(--brand-primary)
}
@media(min-width: 768px) {
.image__image__caption {
    margin: 35px 75px 0 75px
}
  }
@media(min-width: 1024px) {
.image__image__caption {
    max-width: 50%
}
  }
.image__decoration {
  position: absolute;
  width: 150px;
  height: 210px;
  bottom: -100px;
  background: url(../images/image-pattern-mobile.svg) no-repeat top left;
  background-size: 100% auto
}
@media(min-width: 768px) {
.image__decoration {
    width: 50%;
    max-width: 695px;
    height: 100%;
    background-image: url(../images/image-pattern.svg);
    bottom: auto;
    top: 20%
}
  }
@media(min-width: 1600px) {
.image__decoration {
    top: 25%
}
  }
.image__decoration.image__decoration--left {
    left: 0;
  }
.image__decoration.image__decoration--right {
    right: 0;
  }
.text-with-image {

}
.text-with-image__sections {
  position: relative
}
@media(min-width: 768px) {
.text-with-image__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
}
  }
@media(min-width: 768px) {
.text-with-image--align-center .text-with-image__sections {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center
  }
    }
.text-with-image__image-section {
  position: relative;
  width: 100%;
  margin: 0 0 25px 0
}
@media(min-width: 768px) {
.text-with-image__image-section {
    width: -webkit-calc(50% - 37px);
    width: calc(50% - 37px);
    margin: 0
}
  }
.text-with-image__image-wrap {
  margin: 0;
}
@media(min-width: 768px) {
.text-with-image--image-right .text-with-image__image-section {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1
  }
    }
.text-with-image__image {
  display: block;
  width: 100%;
  height: auto;
}
.text-with-image__text-section {
  width: 100%;
}
@media(min-width: 768px) {
.text-with-image__text-section {
    width: -webkit-calc(50% - 37px);
    width: calc(50% - 37px);
/*    padding: 0 0 0 60px;*/
}
  }
.text-with-image__text-section img {
    display: block;
    max-width: 100%;
    height: auto;
  }
@media(min-width: 768px) {
.text-with-image--image-right .text-with-image__text-section {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0
/*      padding: 0 60px 0 0;*/
  }
    }
.text-with-image__text-wrap {
  /*  padding: 40px 26px;
    font-size: 18px;
    line-height: 26px;

    @sm-min {
      padding: 40px 60px;
    }*/
}
.text-with-image__image__caption {
  margin: 20px 0 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #ffdd00;
  color: #ffdd00;
  color: var(--brand-primary);
}
.text-with-image__header {
}
.text-with-graphic {

}
@media(max-width: 767px) {
.text-with-graphic__inside {
    margin: 0
}
  }
.text-with-graphic__sections {
  position: relative
}
@media(min-width: 768px) {
.text-with-graphic__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
}
  }
.text-with-graphic__graphic-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  margin: 0;
  background-color: #FFDD00;
  background-size: cover;
  overflow: hidden
}
@media(min-width: 768px) {
.text-with-graphic__graphic-section {
    width: 50%
}
  }
.text-with-graphic__graphic {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-with-graphic__graphic-section__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: -webkit-calc(50% - 78px);
  left: calc(50% - 78px);
  top: -webkit-calc(50% - 78px);
  top: calc(50% - 78px);
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}
@media(min-width: 1024px) {
.text-with-graphic__graphic-section__text-wrap {
    left: -webkit-calc(50% - 130px);
    left: calc(50% - 130px);
    top: -webkit-calc(50% - 128px);
    top: calc(50% - 128px);
    width: 260px;
    height: 255px
}
  }
.text-with-graphic__graphic-section__text {
  display: block;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: var(--font-family-decoration);
  font-weight: normal;
  text-align: center;
  font-size: 26px;
  line-height: 23px;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg)
}
@media(min-width: 1024px) {
.text-with-graphic__graphic-section__text {
    font-size: 45px;
    line-height: 40px
}
  }
@media(min-width: 768px) {
.text-with-graphic--graphic-right .text-with-graphic__graphic-section {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1
  }
    }
.text-with-graphic__image {
  display: block;
  width: 100%;
  height: auto;
}
.text-with-graphic__text-section {
  width: 100%;
}
@media(min-width: 768px) {
.text-with-graphic__text-section {
    width: 50%;
}
  }
.text-with-graphic__text-section img {
    display: block;
    max-width: 100%;
    height: auto;
  }
@media(min-width: 768px) {
.text-with-graphic--graphic-right .text-with-graphic__text-section {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0
      /*      padding: 0 60px 0 0;*/
  }
    }
.text-with-graphic__text-wrap {
  position: relative;
  padding: 36px;
  color: #ffdd00;
  color: #ffdd00;
  color: var(--brand-primary);
  background: #000;
  background: #000;
  background: var(--brand-secondary);
}
@media(min-width: 768px) {
.text-with-graphic__text-wrap {
    min-height: 350px;
}
  }
@media(min-width: 1024px) {
.text-with-graphic__text-wrap {
    padding: 90px 50px 50px 100px;
}
  }
.text-with-graphic__text-wrap h1, .text-with-graphic__text-wrap h2, .text-with-graphic__text-wrap h3 {
    color: #ffdd00;
    color: #ffdd00;
    color: var(--brand-primary);
  }
.text-with-graphic__header {
}
.text-with-graphic__icon-wrap {
  width: 44px;
}
@media(min-width: 1024px) {
.text-with-graphic__icon-wrap {
    width: 70px;
    margin-top: 120px;
}
  }
.text-with-graphic__icon-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }
/*
.text-with-graphic__background-1 {
  position: absolute;
  width: 50%;
  top: 0;
  left: 50px;
  bottom: 0;
  background: var(--brand-primary) url(../images/graphic-pattern.png) no-repeat center;
  background-size: cover;
}

.text-with-graphic__background-2 {
  position: absolute;
  width: 50%;
  top: 0;
  right: 50px;
  bottom: 0;
  background: var(--brand-secondary);
}*/
.products__teaser-list .slick-arrow {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    left: -15px;
    top: -webkit-calc(50% - 15px);
    top: calc(50% - 15px);
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    outline: none;
    text-indent: -500px;
    z-index: 10;
    cursor: pointer;
    background: transparent no-repeat center;
    background-size: 20px auto;
    background-image: url(../images/arrow-black-left.svg);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none
  }
@media(min-width: 1024px) {
.products__teaser-list .slick-arrow {
  }
    }
.products__teaser-list .slick-arrow:hover {
      opacity: 0.8;
    }
.products__teaser-list .slick-arrow.slick-prev {
    }
.products__teaser-list .slick-arrow.slick-next {
      left: auto;
      right: -15px;
      background-image: url(../images/arrow-black.svg)
    }
@media(min-width: 1024px) {
.products__teaser-list .slick-arrow.slick-next {
    }

      }
.products__teaser-list__items {
  margin: 0 -15px;
}
.products__teaser dl {
    margin: 15px 0;
  }
.products__teaser dl dt {
      display: inline;
      margin: 0 5px 0 0;
      font-family: 'MuseoSans-900', sans-serif;
      font-family: 'MuseoSans-900', sans-serif;
      font-family: var(--font-family-black);
      font-weight: normal;
    }
.products__teaser dl dd {
      display: inline;
      margin: 0
    }
.products__teaser dl dd:after {
        display: block;
        content: '';
      }
.products__teaser__inside {
  position: relative;
  margin: 0 15px;
}
.products__teaser__icon {
  position: absolute;
  left: 0;
  top: 0;
}
.products__teaser__image-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 120%;
}
.products__teaser__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}
.products__teaser__image.products__teaser__image--placeholder {
    background: #f7f7f9;
    background: #f7f7f9;
    background: var(--gray-lightest);
  }
h3.products__teaser__title {
  margin: 20px 0 0 0;
  font-size: 28px;
  line-height: 34px;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
}
hr.products__teaser__hr {
  height: 3px;
  margin: 10px 0;
  background: #000;
  background: #000;
  background: var(--black);
}
ul.products__teaser__features {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
li.products__teaser__feature {
  display: inline-block;
  height: 26px;
  width: auto;
  margin: 0 15px 0 0
}
li.products__teaser__feature:before {
    display: none !important;
  }
.products__teaser__price-wrap {
  display: inline-block;
  padding: 10px 15px;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 28px;
  line-height: 34px;

  display: none;
}
.products__teaser__buy-button-wrap {
  margin-top: 15px;
  overflow: hidden;
  line-height: 55px;
  cursor: pointer;
}
.products__list {
  position: relative;
}
.products__list__items {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;

}
.products__list__items .products__teaser {
    width: 100%;
    margin-bottom: 60px

  }
@media(min-width: 768px) {
.products__list__items .products__teaser {
      width: 50%

  }
    }
@media(min-width: 1024px) {
.products__list__items .products__teaser {
      width: -webkit-calc(100% / 3);
      width: calc(100% / 3)

  }
    }
@media(min-width: 1200px) {
.products__list__items .products__teaser {
      width: 25%

  }
    }
.frame-type-form_formframework {
  position: relative;

}
.frame-type-form_formframework h2 {
    display: none;
  }
.frame-type-form_formframework .clearfix {
    margin-bottom: 40px;
  }
.frame-type-form_formframework fieldset {
    display: block;
    padding: 0;
    border: none
  }
.frame-type-form_formframework fieldset.form-group {
      margin-bottom: 40px;
    }
.frame-type-form_formframework fieldset legend {
      display: block;
      margin: 20px 0 20px 0;
/*      font-size: 25px;
      line-height: 30px;*/
      color: #000;
      color: #000;
      color: var(--black);
      font-family: 'MuseoSans-100', sans-serif;
      font-family: 'MuseoSans-100', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal
    }
@media(min-width: 1024px) {
.frame-type-form_formframework fieldset legend {
        margin: 35px 0 35px 0
/*        font-size: 30px;
        line-height: 40px;*/
    }
      }
.frame-type-form_formframework .row {
    position: relative;
  }
@media(min-width: 768px) {
.frame-type-form_formframework .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
  }
    }
@media(max-width: 767px) {
.frame-type-form_formframework .row .col-xs-12 {
        width: 100%
    }
      }
.frame-type-form_formframework .row .col-sm-12 {
      width: 100%;
    }
@media(min-width: 768px) {
.frame-type-form_formframework .row .col-sm-6 {
        width: -webkit-calc(50% - 10px);
        width: calc(50% - 10px)
    }
      }
.frame-type-form_formframework .form-group {
    margin-bottom: 15px;

  }
.frame-type-form_formframework .form-group .control-label {
      display: block;
      margin-bottom: 3px;
      font-size: 20px;
      line-height: 27px;
      color: #000;
      color: #000;
      color: var(--black);
      font-weight: normal;
    }
.frame-type-form_formframework .form-group .form-control {
      width: 100%;
    }
.frame-type-form_formframework .form-group input[type=text], .frame-type-form_formframework .form-group input[type=email], .frame-type-form_formframework .form-group input[type=tel], .frame-type-form_formframework .form-group input[type=date] {
      padding: 10px;
      border: none;
      font-size: 18px;
      line-height: 20px;
      background: #f7f7f9;
      background: #f7f7f9;
      background: var(--gray-light);
      font-family: 'MuseoSans-100', sans-serif;
      font-family: 'MuseoSans-100', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
    }
.frame-type-form_formframework .form-group textarea {
      height: 180px;
      padding: 10px;
      border: none;
      font-size: 18px;
      line-height: 20px;
      background: #f7f7f9;
      background: #f7f7f9;
      background: var(--gray-light);
      font-family: 'MuseoSans-100', sans-serif;
      font-family: 'MuseoSans-100', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
    }
.frame-type-form_formframework .form-group input[type=checkbox] {
      position: relative;
      top: -3px;
      margin-right: 5px;
    }
.frame-type-form_formframework .form-group input[type=radio] {
      position: relative;
      top: -3px;
      margin-right: 5px;
    }
.frame-type-form_formframework .form-group select {
      height: 40px;
    }
.frame-type-form_formframework .actions {
    margin: 30px 0;
    text-align: right;
  }
.frame-type-form_formframework .btn {
    margin-right: 0;
  }
.frame-type-form_formframework .advice {
    margin-bottom: 15px;
    color: darkred;
  }
.frame-type-form_formframework input.form-control.error {
    outline: solid 1px darkred;
  }
.frame-type-form_formframework .field-wrap--articles-textarea {
    display: none;
  }
.news-carousel {
  position: relative;
}
.news-carousel__items {
  position: relative;
  width: 100%;
  height: 360px
}
@media(min-width: 1024px) {
.news-carousel__items {
    height: 580px;
    width: 50%
}
  }
.news-carousel__content {
  position: relative;
  width: 100%;
}
@media(min-width: 1024px) {
.news-carousel__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
  }
.news-carousel__content .slick-arrow {
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    left: -webkit-calc(50% - 40px);
    left: calc(50% - 40px);
    bottom: 35px;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    outline: none;
    text-indent: -500px;
    z-index: 10;
    cursor: pointer;
    background: transparent no-repeat center;
    background-size: 20px auto;
    background-image: url(../images/arrow-black-left.svg);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none
  }
@media(min-width: 1024px) {
.news-carousel__content .slick-arrow {
      bottom: -webkit-calc(50% - 20px);
      bottom: calc(50% - 20px);
      left: auto;
      right: 50px
  }
    }
.news-carousel__content .slick-arrow:hover {
      opacity: 0.8;
    }
.news-carousel__content .slick-arrow.slick-prev {
    }
.news-carousel__content .slick-arrow.slick-next {
      left: auto;
      right: -webkit-calc(50% - 40px);
      right: calc(50% - 40px);
      background-image: url(../images/arrow-black.svg)
    }
@media(min-width: 1024px) {
.news-carousel__content .slick-arrow.slick-next {
        bottom: -webkit-calc(50% + 20px);
        bottom: calc(50% + 20px);
        left: auto;
        right: 50px
    }
      }
.news-carousel__content__inside {
  position: relative;
  min-height: 360px;
  padding: 36px;
}
@media(min-width: 1024px) {
.news-carousel__content__inside {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-height: auto;
    padding: 0;
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
    max-width: 590px;
    margin: 0 50px 0 100px;
}
  }
/*  @media (min-width: 1480px) {
    margin: 0 auto;
  }*/
.news-carousel__content__inside .slick-dots {
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
@media(min-width: 1024px) {
.news-carousel__content__inside .slick-dots {
      top: auto;
      bottom: 20px;
      left: -webkit-calc((50px + 50vw) * -1);
      left: calc((50px + 50vw) * -1);
      text-align: left;
/*      bottom: 75px;
      left: auto;
      right: 0;
      width: 50px;*/
  }
    }
.news-carousel__content__inside .slick-dots li {
      display: inline-block;
    }
.news-carousel__content__inside .slick-dots li button {
        display: block;
        width: 8px;
        height: 8px;
        margin: 0 4px;
        padding: 0;
        border: none;
        background: #fff;
        background: #fff;
        background: var(--white);
        border-radius: 4px;
        text-indent: -100px;
        overflow: hidden;
      }
.news-carousel__content__inside .slick-dots li.slick-active button {
          background: #ffdd00;
          background: #ffdd00;
          background: var(--brand-primary);
        }
.news-carousel__content__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
}
@media(min-width: 1024px) {
.news-carousel__content__text-wrap {
    position: absolute;
    top: 120px;
    width: 80%
}
  }
.news-carousel-item__header {
  margin: 0 0 20px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 45px;
  line-height: 55px
}
@media(min-width: 1024px) {
.news-carousel-item__header {
    margin: 0 0 30px 0;
    font-size: 52px;
    line-height: 60px
}
  }
.news-carousel-item__subheader {
  height: 48px;
  margin: 0 0 45px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 20px;
  line-height: 24px
}
@media(min-width: 1024px) {
.news-carousel-item__subheader {
    height: auto;
    margin: 0 0 25px 0;
    font-size: 28px;
    line-height: 34px
}
  }
.news-carousel-item {
  position: relative;
  width: 100%;
  height: 360px;
  background: #f7f7f9;
  background: #f7f7f9;
  background: var(--gray-lighter)
}
@media(min-width: 1024px) {
.news-carousel-item {
    height: 580px
}
  }
.news-carousel-item__text-wrap {
  display: none;
}
.news-carousel-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}
@media(min-width: 1024px) {
.news-carousel-item__image {
    width: 100%
}
  }
.news-carousel__decoration {
  position: absolute;
  width: 150px;
  height: 215px;
  top: 48px;
  left: -36px;
  z-index: 1;
  background: url(../images/intro-pattern.svg) no-repeat top left;
  background-size: 400px auto
}
@media(min-width: 1024px) {
.news-carousel__decoration {
    width: 200px;
    height: 624px;
    left: -48px
}
  }
@media(min-width: 1200px) {
.news-carousel__decoration {
    width: 400px
}
  }
.news-list__content {
  position: relative;
  width: 100%
}
@media(min-width: 1024px) {
.news-list__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%
}
  }
.news-list-item {
  position: relative;
  width: 100%;
  margin-bottom: 36px;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary)
}
@media(min-width: 1024px) {
.news-list-item {
    height: 580px;
    margin-bottom: 135px
}
  }
.news-list-item__inside {
  height: 100%;
}
.news-list-item__sections {
  display: block;
  width: 100%;
  height: 100%
}
@media(min-width: 1024px) {
.news-list-item__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
  }
.news-list-item__image-section {
  position: relative;
  height: 360px;
  width: 100%

}
@media(min-width: 1024px) {
.news-list-item__image-section {
    height: 100%;
    width: 50%

}
  }
.news-list-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-list-item__text-section {
  padding: 36px
}
@media(min-width: 1024px) {
.news-list-item__text-section {
    padding: 80px 70px 0 100px
}
  }
.news-list-item__header {
  margin: 0 0 20px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 45px;
  line-height: 55px
}
@media(min-width: 1024px) {
.news-list-item__header {
    margin: 0 0 30px 0;
    font-size: 52px;
    line-height: 60px
}
  }
.news-list-item__subheader {
  height: 48px;
  margin: 0 0 45px 0;
  color: #000;
  color: #000;
  color: var(--brand-secondary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 20px;
  line-height: 24px
}
@media(min-width: 1024px) {
.news-list-item__subheader {
    height: auto;
    margin: 0 0 25px 0;
    font-size: 28px;
    line-height: 34px
}
  }
.news-list-item__decoration {
  position: absolute;
  width: 150px;
  height: 215px;
  top: 48px;
  left: -36px;
  z-index: 1;
  background: url(../images/intro-pattern.svg) no-repeat top left;
  background-size: 400px auto
}
@media(min-width: 1024px) {
.news-list-item__decoration {
    width: 200px;
    height: 624px;
    left: -48px
}
  }
@media(min-width: 1200px) {
.news-list-item__decoration {
    width: 400px
}
  }
.dictionary-list {

}
.dictionary-list__letters {

}
.dictionary-list__letter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px var(--gray-dark)
}
.dictionary-list__letter-item:first-child {
    padding-top: 40px;
    border-top: solid 2px #2c2c2c;
    border-top: solid 2px #2c2c2c;
    border-top: solid 2px var(--gray-dark);
  }
.dictionary-list__letter-item__letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media(min-width: 768px) {
.dictionary-list__letter-item__letter {
    width: 50%;
}
  }
.dictionary-list__letter-item__letter h1 {
    margin: 0;
  }
.dictionary-list__letter-item__items {
  width: 100%
}
@media(min-width: 768px) {
.dictionary-list__letter-item__items {
    width: 50%
}
  }
.dictionary-list__item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px var(--gray-dark)
}
.dictionary-list__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
.dictionary-list__item h2 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
  }
.dictionary-list__item p {
    margin-top: 0
  }
.dictionary-list__item p:last-child {
      margin-bottom: 0;
    }
.search-results {

}
.search-results__items {

}
.search-results__item {
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px #2c2c2c;
  border-bottom: solid 2px var(--gray-dark);
  padding-bottom: 40px;
  margin-bottom: 40px
}
.search-results__item:first-child {
    padding-top: 40px;
    border-top: solid 2px #2c2c2c;
    border-top: solid 2px #2c2c2c;
    border-top: solid 2px var(--gray-dark);
  }
.search-results__item h3 a {
      text-decoration: none;
    }
.search-results__item__body {
  display: block;
}
.search-results__item__text {
  margin-bottom: 40px;
}
.logo-carousel {

}
.logo-carousel-item {
  position: relative;
  height: 150px;
}
.logo-carousel-item__inside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media(min-width: 1200px) {
.logo-carousel-item__inside {
    width: 95%;
}
  }
.logo-carousel-item__inside img {
    display: block;
    width: 100%;
    height: auto;
  }
.quote {

}
@media(max-width: 767px) {
.quote__inside {
    margin: 0
}
  }
.quote__sections {
  position: relative;
  margin-top: 150px
}
@media(min-width: 768px) {
.quote__sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
}
  }
@media(min-width: 1024px) {
.quote__sections {
    margin-top: 180px
}
  }
@media(min-width: 1200px) {
.quote__sections {
    margin-top: 270px
}
  }
.quote__image-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  margin: 0;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary)
}
@media(min-width: 768px) {
.quote__image-section {
    width: 50%
}
  }
.quote__background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.quote__image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 140%;
  width: auto
}
@media(min-width: 768px) {
.quote__image {
    height: 120%
}
  }
@media(min-width: 1200px) {
.quote__image {
    height: 140%
}
  }
.quote__graphic {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media(min-width: 768px) {
.quote--graphic-right .quote__graphic-section {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1
  }
    }
.quote__text-section {
  width: 100%
}
@media(min-width: 768px) {
.quote__text-section {
    width: 50%
}
  }
@media(min-width: 768px) {
.quote--graphic-right .quote__text-section {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0
      /*      padding: 0 60px 0 0;*/
  }
    }
.quote__text-wrap {
  position: relative;
  padding: 36px;
  color: #fff;
  color: #fff;
  color: var(--white);
  background: #000;
  background: #000;
  background: var(--brand-secondary);
}
@media(min-width: 768px) {
.quote__text-wrap {
    min-height: 350px;
}
  }
@media(min-width: 1024px) {
.quote__text-wrap {
    padding: 90px 50px 50px 100px;
}
  }
.quote__text-wrap h1, .quote__text-wrap h2, .quote__text-wrap h3 {
    color: #ffdd00;
    color: #ffdd00;
    color: var(--brand-primary);
  }
.quote__quote {
  position: relative
}
.quote__quote:before {
    display: block;
    content: "";
    position: absolute;
    left: -30px;
    top: -20px;
    width: 30px;
    height: 90px;
    background: url(../Images/quote-symbol.svg) no-repeat top left;
    background-size: 100% auto
  }
@media(min-width: 768px) {
.quote__quote:before {
      left: -50px;
      top: -20px;
      width: 37px;
      height: 110px
  }
    }
.quote__name {
  font-family: 'MuseoSans-500', sans-serif;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: var(--font-family-medium);
  font-size: 30px;
  line-height: 38px;
}
.quote__header {
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {

  position: relative;
  margin-right: 0;
  padding: 14px 50px 15px 15px;
  background: #000;
  background: #000;
  background: var(--brand-secondary);
  color: #fff;
  color: #fff;
  color: var(--white);
  font-family: 'MuseoSans-300', sans-serif;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: var(--font-family-decoration);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-decoration);
  font-size: 20px;
  line-height: 22px;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: background 150ms;
  transition: background 150ms
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    text-decoration: none;
    background: #2c2c2c;
    background: #2c2c2c;
    background: var(--gray-dark);
    color: #fff;
    color: #fff;
    color: var(--white);
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:after {
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    right: 15px;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background: url(../images/arrow-white.svg) no-repeat center;
    background-size: 14px auto;
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.btn--fixed-sm {
    display: block;
    width: 150px;
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn--fixed-md, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn--fixed-md, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn--fixed-md, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn--fixed-md, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.btn--fixed-md, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.btn--fixed-md, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.btn--fixed-md, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.btn--fixed-md {
    display: block;
    width: 285px;
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled] {
  position: relative;
  margin-right: 0;
  padding: 14px 50px 15px 15px;
  background: #000;
  background: #000;
  background: var(--brand-secondary);
  color: #fff;
  color: #fff;
  color: var(--white);
  font-family: 'MuseoSans-300', sans-serif;
  font-family: 'MuseoSans-300', sans-serif;
  font-family: var(--font-family-decoration);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-decoration);
  font-size: 20px;
  line-height: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  opacity: .5;
  -webkit-transition: background 150ms;
  transition: background 150ms
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled]:hover {
    text-decoration: none;
    background: #2c2c2c;
    background: #2c2c2c;
    background: var(--gray-dark);
    color: #fff;
    color: #fff;
    color: var(--white);
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled]:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled]:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled]:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled]:after {
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    right: 15px;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background: url(../images/arrow-white.svg) no-repeat center;
    background-size: 14px auto;
  }
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled].btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled].btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled].btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled.btn--fixed-sm, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled].btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled].btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled].btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled].btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled.btn--fixed-sm, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled].btn--fixed-sm {
    display: block;
    width: 150px;
  }
.woocommerce input[type=number],
  .woocommerce input[type=text],
  .woocommerce input[type=tel],
  .woocommerce input[type=email] {
    display: block;
    width: 100%;
    height: 51px;
    padding: 5px 20px;
    border: 1px solid #2c2c2c;
    border: 1px solid #2c2c2c;
    border: 1px solid var(--gray-dark);
    font-family: 'MuseoSans-100', sans-serif;
    font-family: 'MuseoSans-100', sans-serif;
    font-family: var(--font-family-light);
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    background: #f7f7f9;
  }
.woocommerce textarea {
    display: block;
    width: 100%;
    height: 200px;
    padding: 5px 20px;
    border: 1px solid #2c2c2c;
    border: 1px solid #2c2c2c;
    border: 1px solid var(--gray-dark);
    font-family: 'MuseoSans-100', sans-serif;
    font-family: 'MuseoSans-100', sans-serif;
    font-family: var(--font-family-light);
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    background: #f7f7f9;
  }
.woocommerce-breadcrumb {
  display: none;
}
.woocommerce-notices-wrapper {
  margin: 0;
  text-align: center;
}
ul.woocommerce-error, ul.woocommerce-info, ul.woocommerce-message {
  padding: 20px;
  list-style: none;
  color: #000;
  color: #000;
  color: var(--black);
  font-family: 'MuseoSans-500', sans-serif;
  font-family: 'MuseoSans-500', sans-serif;
  font-family: var(--font-family-medium);
}
ul.woocommerce-error li:before, ul.woocommerce-info li:before, ul.woocommerce-message li:before {
      display: none;
    }
.woocommerce .woocommerce-cart-form .product-name a {
      font-family: 'MuseoSans-700', sans-serif;
      font-family: 'MuseoSans-700', sans-serif;
      font-family: var(--font-family-bold);
      text-decoration: none
    }
.woocommerce .woocommerce-cart-form .product-name a:hover {
        text-decoration: underline;
      }
.woocommerce .woocommerce-cart-form .product-quantity input {
        width: 100px;
      }
.woocommerce .woocommerce-cart-form .coupon input.input-text {
      width: 140px !important;
      border: 1px solid #2c2c2c !important;
      border: 1px solid #2c2c2c !important;
      border: 1px solid var(--gray-dark) !important;
    }
.woocommerce .cart-collaterals {
    margin: 35px 0 0 0;
  }
.woocommerce .cart-collaterals .cart_totals h2 {
        font-size: 20px;
        line-height: 28px;
        font-family: 'MuseoSans-700', sans-serif;
        font-family: 'MuseoSans-700', sans-serif;
        font-family: var(--font-family-bold);
        font-weight: normal;
      }
#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  background-color: #ffdd00;
  background-color: #ffdd00;
  background-color: var(--brand-primary);
  color: #000;
  color: #000;
  color: var(--black)
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button:after, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:after, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:after {
    background: url(../images/arrow-black.svg) no-repeat center;
    top: 25px;
    width: 20px;
    height: 20px;
  }
#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #ffdd00;
    background-color: #ffdd00;
    background-color: var(--brand-primary);
    color: #000;
    color: #000;
    color: var(--black);
    text-decoration: underline;
  }
.woocommerce-checkout h3 {
    margin: 30px 0;
    font-size: 20px;
    line-height: 28px;
    font-family: 'MuseoSans-700', sans-serif;
    font-family: 'MuseoSans-700', sans-serif;
    font-family: var(--font-family-bold);
    font-weight: normal;
  }
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: unset;
  font-size: unset;
}
@media(max-width: 1199px) {
.products__show .container__inside--small {
      margin: 0
  }
    }
@media(max-width: 1199px) {
.products__show .container__inside {
      margin: 0
  }
    }
.products__show div.summary {
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
    clear: unset !important;
  }
.products__show div.images {
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
  }
.products__show p.price {
    display: none;
  }
.products__show .related.products {
    margin: 30px 0;
  }
.products__show .variations {
    margin: 30px 0 !important;
  }
@media(max-width: 1199px) {
.products__show .variations tr {
        display: block;
        margin-bottom: 20px
    }
      }
.products__show .variations th {
      width: 200px;
      text-align: left
    }
@media(max-width: 1199px) {
.products__show .variations th {
        display: block
    }
      }
@media(max-width: 1199px) {
.products__show .variations td {
        display: block
    }
      }
.products__show .woocommerce-variation.single_variation {
    margin: 40px 0;
  }
.products__show .woocommerce-variation-add-to-cart {
    overflow: hidden;
    width: 100%;
  }
.products__show .woocommerce-variation-add-to-cart button {
      width: -webkit-calc(100% - 80px - 4px);
      width: calc(100% - 80px - 4px);
      background-color: #000 !important;
      background-color: #000 !important;
      background-color: var(--black) !important;
    }
.products__show .qty {
    width: 80px !important;
  }
.products__show .single_add_to_cart_button {
    width: -webkit-calc(100% - 80px - 4px);
    width: calc(100% - 80px - 4px);
    background-color: #000 !important;
    background-color: #000 !important;
    background-color: var(--black) !important;
  }
.products__show .product_meta {
    display: none;
  }
.products__show__section-1__inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
@media(min-width: 768px) {
.products__show__section-1__inside {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
}
  }
.products__show__images {
  width: 100%;
  overflow: hidden;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2
}
@media(min-width: 768px) {
.products__show__images {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial
}
  }
@media(min-width: 1200px) {
.products__show__images {
    width: -webkit-calc(50% - 100px);
    width: calc(50% - 100px)
}
  }
.product-images__main {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 100%;
/*  border: solid 1px var(--black);*/
}
.product-images__image-wrap a:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: url(../images/icon-zoom.svg) no-repeat center;
  }
.product-images__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: #fff;
  background: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}
.product-images__image.product-images__image--placeholder {
    background: #f7f7f9;
    background: #f7f7f9;
    background: var(--gray-lightest);
  }
.product-images__previews {
  position: relative;
  width: -webkit-calc(100% + 30px);
  width: calc(100% + 30px);
  margin: 25px -15px 0 -15px;
}
.product-images__previews__item img {
    display: block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0 15px;
    height: auto;
  }
.products__show__infos {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media(min-width: 768px) {
.products__show__infos {
    width: 50%;
    margin-bottom: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
}
  }
.products__show__infos dl {
    max-width: 300px;
    margin: 15px 0;
  }
.products__show__infos dl dt {
      display: inline-block;
      margin: 0 5px 0 0;
      font-family: 'MuseoSans-900', sans-serif;
      font-family: 'MuseoSans-900', sans-serif;
      font-family: var(--font-family-black);
      font-weight: normal;
    }
.products__show__infos dl dd {
      display: inline-block;
      margin: 0;
    }
/* hide shop functions: */
.products__show__infos .variations_form.cart {
    display: none !important;
  }
.products__show__icon {
  position: relative;
  left: 0;
  top: 0
}
@media(min-width: 768px) {
.products__show__icon {
    position: absolute;
    left: auto;
    right: 0;
    top: 0
}
  }
h1.products__show__headline {
  margin: 20px 0 0 0
}
@media(min-width: 768px) {
h1.products__show__headline {
    margin: 30px 0 0 0
}
  }
hr.products__show__hr {
  height: 3px;
  margin: 10px 0;
  background: #000;
  background: #000;
  background: var(--black);
}
ul.products__show__features {
  margin: 10px 0 20px 0;
  padding: 0;
  list-style: none;
}
li.products__show__feature {
  display: inline-block;
  height: 26px;
  width: auto;
  margin: 0 15px 0 0
}
li.products__show__feature:before {
    display: none !important;
  }
.products__show__price-wrap {
  display: inline-block;
  padding: 10px 15px;
  background: #ffdd00;
  background: #ffdd00;
  background: var(--brand-primary);
  font-family: 'MuseoSans-900', sans-serif;
  font-family: 'MuseoSans-900', sans-serif;
  font-family: var(--font-family-black);
  font-weight: normal;
  font-size: 28px;
  line-height: 34px;
}
.products__show__variants-cart-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 30px
}
@media(min-width: 768px) {
.products__show__variants-cart-section {
    margin-top: 50px
}
  }
.products__show__variants {
  position: relative;
  width: 100%;
  margin-bottom: 25px
}
@media(min-width: 768px) {
.products__show__variants {
    max-width: 235px;
    margin-right: 30px
}
  }
.products__show__quantity-input__wrap {
  width: 100%;
  margin-bottom: 25px
}
@media(min-width: 768px) {
.products__show__quantity-input__wrap {
    max-width: 235px
}
  }
.products__show__quantity-input {
  width: 100%;
  height: 50px;
  padding: 15px;
  font-size: 20px;
  line-height: 20px;
  color: #000;
  color: #000;
  color: var(--black);
  font-family: 'MuseoSans-100', sans-serif;
  font-family: 'MuseoSans-100', sans-serif;
  font-family: var(--font-family-light);
  font-weight: normal;
  text-align: center;
  border: solid 1px #000;
  border: solid 1px #000;
  border: solid 1px var(--black);
}
.products__show__add-to-cart-btn__wrap {
  width: 100%;
}
.products__show__add-to-cart-btn {
  width: 100%;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
  float: none;
  display: none;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  float: none;
  display: none;
}
.woocommerce-no-products-found {

}
.woocommerce-info {
  padding: 18px;
  background: #f7f7f9;
  background: #f7f7f9;
  background: var(--gray-lighter);
  color: #000;
  color: #000;
  color: var(--black);
  border-top-color: #ffdd00;
  border-top-color: #ffdd00;
  border-top-color: var(--brand-primary)
}
.woocommerce-info:before {
    display: none;
  }
.ninja-forms-form-wrap .ninja-forms-req-symbol {
    color: #000;
    color: #000;
    color: var(--black);
  }
.ninja-forms-form-wrap .nf-error-msg {
    font-size: 16px;
    line-height: 18px;
  }
.ninja-forms-form-wrap .nf-before-form-content {
    margin-bottom: 30px;
  }
@media(min-width: 768px) {
.ninja-forms-form-wrap .field-wrap.submit-wrap .nf-field-element {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: right;
              -ms-flex-pack: right;
                  justify-content: right
      }
        }
.ninja-forms-form-wrap .nf-field {
    margin-bottom: 15px;
  }
.ninja-forms-form-wrap .label-above .nf-field-label {
    margin-bottom: 0;
  }
.ninja-forms-form-wrap .nf-field-label .nf-label-span, .ninja-forms-form-wrap .nf-field-label label {
    display: block;
    margin-bottom: 3px;
    font-size: 20px;
    line-height: 27px;
    color: #000;
    color: #000;
    color: var(--black);
    font-weight: normal;
  }
.ninja-forms-form-wrap input[type=text], .ninja-forms-form-wrap input[type=email], .ninja-forms-form-wrap input[type=tel], .ninja-forms-form-wrap input[type=date], .ninja-forms-form-wrap select {
    padding: 10px;
    border: none;
    font-size: 18px;
    line-height: 20px;
    background: #f7f7f9;
    background: #f7f7f9;
    background: var(--gray-light);
    font-family: 'MuseoSans-100', sans-serif;
    font-family: 'MuseoSans-100', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
  }
.ninja-forms-form-wrap select {
    max-width: 400px;
  }
.ninja-forms-form-wrap textarea {
    height: 180px;
    padding: 10px;
    border: none;
    font-size: 18px;
    line-height: 20px;
    background: #f7f7f9;
    background: #f7f7f9;
    background: var(--gray-light);
    font-family: 'MuseoSans-100', sans-serif;
    font-family: 'MuseoSans-100', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
  }
.ninja-forms-form-wrap input[type="submit"] {
    background: #000 url(../images/arrow-white.svg) no-repeat center right 15px;
    background: #000 url(../images/arrow-white.svg) no-repeat center right 15px;
    background: var(--black) url(../images/arrow-white.svg) no-repeat center right 15px;
    background-size: 14px auto;
  }
/*@import "Elements/Cart/cart.css";*/


