/* Web & icon fonts */
/* @font-face {
	    font-family: $project-font-1;
	    src: url('../fonts/webfonts/fontname/fontname.eot');
	    src: url('../fonts/webfonts/fontname/fontname.eot?#iefix') format('embedded-opentype'), //         url('../fonts/webfonts/fontname/fontname.woff2') format('woff2'), //         url('../fonts/webfonts/fontname/fontname.woff') format('woff'), //         url('../fonts/webfonts/fontname/fontname.ttf') format('truetype');
	    font-weight: normal;
	    font-style: normal;
	    font-display: swap;
	

@font-face {
	    font-family: $project-font-2;
	    src: url('../fonts/webfonts/fontname/fontname-Bold.eot');
	    src: url('../fonts/webfonts/fontname/fontname-Bold.eot?#iefix') format('embedded-opentype'), //         url('../fonts/webfonts/fontname/fontname-Bold.woff2') format('woff2'), //         url('../fonts/webfonts/fontname/fontname-Bold.woff') format('woff'), //         url('../fonts/webfonts/fontname/fontname-Bold.ttf') format('truetype');
	    font-weight: normal;
	    font-style: normal;
	    font-display: swap;
	
}
*/
.ico-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* .icon-close:before {
  content: "\e909";

} */
.icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-left: -20px;
  margin-top: -20px;
}

.icon-close:before, .icon-close:after {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  content: '';
  background: #0e1e2e;
}

.icon-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.icon-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

/* Animate helpers */
@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-spinner {
  display: inline-block;
  width: 60px;
  height: 60px;
  -webkit-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border: 5px solid #ffbf00;
  border-right-color: transparent;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/* Typography */
.typography p,
.typography li,
.typography td,
.typography th {
  line-height: 1.5;
}

.typography p,
.typography ul, .typography ol,
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6,
.typography table,
.typography fieldset,
.typography blockquote,
.typography iframe {
  margin-bottom: 1rem;
}

.typography h1 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  color: #0e1e2e;
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 771px) {
  .typography h1 {
    font-size: 41px;
    font-size: 2.5625rem;
  }
}

.typography h2 {
  display: block;
  margin-bottom: 2rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  color: #0e1e2e;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 771px) {
  .typography h2 {
    margin-bottom: 4rem;
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.typography h2:after {
  content: '';
  position: relative;
  display: block;
  width: 48px;
  height: 10px;
  margin: 10px auto 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/headline-dots.svg");
}

.typography h3 {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  color: #0e1e2e;
  letter-spacing: 0.1px;
  font-size: 22px;
  font-size: 1.375rem;
}

@media (min-width: 771px) {
  .typography h3 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.typography h4 {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  color: #0e1e2e;
  letter-spacing: 0.1px;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 771px) {
  .typography h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.typography h5 {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  color: #0e1e2e;
  letter-spacing: 0.1px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  .typography h5 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.typography h6 {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  color: #0e1e2e;
  letter-spacing: 0.1px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  .typography h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.typography a {
  text-decoration: underline;
}

.typography a:hover {
  text-decoration: underline;
}

.typography p {
  display: block;
  margin-top: 0;
  margin-bottom: 2.5em;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #0e1e2e;
  font-size: 15px;
  font-size: 0.938rem;
}

.typography strong {
  font-weight: 700;
  color: #ffbf00;
}

.typography img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 2rem;
  width: 100%;
}

.typography ul,
.typography ol {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}

.typography ul li,
.typography ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #0e1e2e;
  font-size: 14px;
  font-size: 0.875rem;
}

.typography ul li {
  padding-left: 30px;
}

.typography ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  display: block;
  width: 15px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/check-yellow.svg");
}

.typography ol {
  list-style-position: inside;
  counter-reset: item;
}

.typography ol li {
  padding-left: 20px;
}

.typography ol li:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  line-height: 1.4;
  content: counter(item) ".";
  font-family: "Industry", Arial, sans-serif;
  counter-increment: item;
  color: #ffbf00;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.typography table {
  margin-bottom: 2rem;
}

.typography figure {
  position: relative;
  margin: 0;
  margin-bottom: 2em;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #ffffff;
  overflow: hidden;
}

.typography figure img {
  margin: 0;
}

.typography .js-gallery-item {
  text-decoration: none !important;
}

.typography figcaption {
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  color: #0e1e2e;
  padding: 1.2rem 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.14px;
  border-bottom: 3px solid #ffbf00;
  line-height: 1.6;
  background-color: #ffffff;
}

.typography figcaption strong {
  display: block;
  color: #ffbf00;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.46px;
  font-weight: 600;
}

.gallery-group figure:hover figcaption {
  opacity: 1;
}

.gallery-group figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  border-bottom: 0;
  border-top: 3px solid #ffbf00;
  padding: 0.8rem 1.2rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .gallery-group figcaption {
    padding: 0.4rem 0.6rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (min-width: 771px) {
  .gallery-group figcaption {
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .gallery-group figcaption {
    padding: 0.4rem 0.6rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.gallery-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 2rem 1.5rem 2rem;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  border-top: 3px solid #ffbf00;
  margin-bottom: 2rem;
}

@media (min-width: 771px) {
  .info {
    padding: 2rem 3rem 2rem;
  }
}

.info .info-text {
  width: 15%;
  max-width: 15%;
  -webkit-box-flex: 15%;
  -webkit-flex: 15%;
      -ms-flex: 15%;
          flex: 15%;
  display: inline-block;
  vertical-align: middle;
  color: #ffbf00;
  font-family: "Industry", Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}

@media (max-width: 770px) {
  .info .info-text {
    display: block;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-bottom: 15px;
  }
}

.info p {
  display: inline-block;
  vertical-align: middle;
  width: 85%;
  max-width: 85%;
  -webkit-box-flex: 85%;
  -webkit-flex: 85%;
      -ms-flex: 85%;
          flex: 85%;
  margin-bottom: 0;
  line-height: 1.6;
  padding-left: 2rem;
}

@media (max-width: 770px) {
  .info p {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding-left: 0;
  }
}

/* Form helpers */
.form-input, .form-textarea {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  color: #0e1e2e;
  border: 2px solid #d1d7db;
  outline: none !important;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  border-color: #0e1e2e;
}

.form-input:focus, .form-textarea:focus {
  border-color: #0e1e2e;
}

.form-input-ext {
  border: 0;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  height: 150px;
  padding: 1rem 1.5rem;
  line-height: 1.5rem;
  resize: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}

@media (min-width: 576px) {
  .form-textarea-limit {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    min-height: 100px;
    max-height: 250px;
  }
}

@media (max-width: 575px) {
  .form-textarea-limit {
    height: 200px !important;
  }
}

.form-select {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0e1e2e;
  border: 2px solid #0e1e2e;
  outline: none;
  background-color: #ffffff;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-appearance: value;
  -moz-appearance: value;
  -ms-appearance: value;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.form-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  font-size: 22px;
  font-size: 1.375rem;
  color: #0e1e2e;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.form-icon-block .form-input {
  padding-right: 60px;
}

.form-label {
  display: block;
  margin: 0 0 10px;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  color: #0e1e2e;
  font-size: 16px;
  font-size: 1rem;
}

.form-line-small {
  margin-bottom: 0.5rem;
}

.form-line-normal {
  margin-bottom: 1rem;
}

.form-line-big {
  margin-bottom: 2rem;
}

.form-placeholder {
  position: relative;
}

.form-placeholder.is-active .form-label {
  width: auto;
  -webkit-transform: translateX(20px) translateY(0px);
  -ms-transform: translateX(20px) translateY(0px);
      transform: translateX(20px) translateY(0px);
  color: #0e1e2e;
  font-size: 12px;
  font-size: 0.75rem;
}

.form-placeholder .form-input,
.form-placeholder .form-textarea {
  padding: 20px 20px 13px;
}

.form-placeholder .form-label {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  margin: 0;
  padding: 8px 0 2px;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  cursor: text;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateX(20px) translateY(15px);
  -ms-transform: translateX(20px) translateY(15px);
  transform: translateX(20px) translateY(15px);
  text-transform: none;
  pointer-events: none;
  color: #0e1e2e;
  font-size: 16px;
  font-size: 1rem;
}

.is-field-error .field-message {
  display: block;
}

.is-field-error .select2-container .select2-selection--single,
.is-field-error .select-classic .select2-container .select2-selection--multiple,
.is-field-error .form-textarea,
.is-field-error .form-input {
  border-width: 2px !important;
  border-color: #870000 !important;
}

.field-message {
  display: none;
  margin-top: 5px;
  text-align: right;
  color: #870000;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}

/* .checkbox.radiobox
	input#checkbox_payment_1.checkbox-hidden(type='radio', name="payment" required='')
	label.checkbox-label(for='checkbox_payment_1')
		span.checkbox-box
		span.checkbox-text Platba kartou */
/* Checkbox helpers */
.checkbox {
  margin-bottom: 2rem;
}

.checkbox-hidden {
  position: absolute;
  opacity: 0;
}

.checkbox-label {
  margin: 0;
  padding-left: 0;
  min-height: inherit;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  padding-top: 0;
  cursor: pointer;
  text-transform: none;
}

.checkbox-box {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #0e1e2e;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 0;
}

.checkbox-text {
  display: block;
  position: relative;
  cursor: pointer;
  text-align: left;
  vertical-align: middle;
  color: #0e1e2e;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-left: 0;
}

.checkbox-hidden:checked + .checkbox-label .checkbox-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 13px;
  border: solid #0e1e2e;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
      transform: rotate(40deg);
}

.radiobox {
  margin-bottom: 2rem;
}

.radiobox .checkbox-box {
  top: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #0e1e2e;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}

.radiobox .checkbox-hidden:checked + .checkbox-label .checkbox-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background-color: #0e1e2e;
}

/* Placeholder helpers */
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #817f7f;
}

input::-moz-input-placeholder,
select::-moz-input-placeholder,
textarea::-moz-input-placeholder {
  color: #817f7f;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #817f7f;
}

.input-white input::-webkit-input-placeholder,
.input-white select::-webkit-input-placeholder,
.input-white textarea::-webkit-input-placeholder {
  color: white;
}

.input-white input::-moz-input-placeholder,
.input-white select::-moz-input-placeholder,
.input-white textarea::-moz-input-placeholder {
  color: white;
}

.input-white input:-ms-input-placeholder,
.input-white select:-ms-input-placeholder,
.input-white textarea:-ms-input-placeholder {
  color: white;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-moz-input-placeholder,
textarea:focus::-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus:-moz-input-placeholder,
textarea:focus:-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

/* Border helpers */
.border-0 {
  border: 0 !important;
}

.border-0-left {
  border-left: 0 !important;
}

.border-0-right {
  border-right: 0 !important;
}

.border-0-bottom {
  border-bottom: 0 !important;
}

.border-0-top {
  border-top: 0 !important;
}

/* Buttons helper */
.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
  padding: 1.1em 1.2rem 1em;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  font-family: "Industry", Arial, sans-serif;
  outline: none !important;
  background: #0e1e2e;
  text-align: center;
  letter-spacing: 3.48px;
  -webkit-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  -webkit-border-radius: 0;
          border-radius: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  -webkit-appearance: none;
}

.btn, .btn:visited, .btn:active, .btn:focus {
  color: white;
}

.btn:hover {
  -webkit-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

@media (min-width: 992px) {
  .btn:hover {
    cursor: pointer;
    text-decoration: none;
    color: white;
  }
}

.btn-responsive {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.btn-size-small {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn-size-normal {
  font-size: 14px;
  font-size: 0.875rem;
}

.btn-size-big {
  font-size: 18px;
  font-size: 1.125rem;
}

.btn-size-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.btn-small {
  letter-spacing: 1.34px;
  padding: 0.5em 0.5rem;
}

.btn-normal {
  padding: 1.5em 1.5rem;
}

.btn-big {
  padding: 2em 2rem;
}

.btn-min-width-small {
  min-width: 140px;
}

.btn-min-width-normal {
  min-width: 220px;
}

.btn-min-width-big {
  min-width: 250px;
}

.btn-max-width-big {
  max-width: 250px;
}

.btn-black-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #000000;
}

.btn-black-fill, .btn-black-fill:visited, .btn-black-fill:active, .btn-black-fill:focus {
  color: #ffffff;
}

.btn-black-fill:hover {
  color: #000000;
  background-color: #ffffff;
}

.btn-black-fill:hover .btn-icon {
  color: #000000;
}

.btn-black-fill .btn-icon {
  color: #ffffff;
}

.btn-yellow-fill {
  -webkit-clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
  color: #0e1e2e;
  border: 2px solid transparent;
  background-color: #ffbf00;
}

.btn-yellow-fill, .btn-yellow-fill:visited, .btn-yellow-fill:active, .btn-yellow-fill:focus {
  color: #0e1e2e;
}

.btn-yellow-fill:hover {
  color: #0e1e2e;
  background-color: #e6ac00;
}

.btn-yellow-fill.btn-arrow-right:after {
  border-color: transparent transparent transparent #0e1e2e;
}

.btn-white-fill {
  -webkit-clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
  color: #0e1e2e;
  border: 2px solid transparent;
  background-color: #ffffff;
}

.btn-white-fill, .btn-white-fill:visited, .btn-white-fill:active, .btn-white-fill:focus {
  color: #0e1e2e;
}

.btn-white-fill:hover {
  color: #0e1e2e;
  background-color: white;
}

.btn-white-fill.btn-arrow-right:after {
  border-color: transparent transparent transparent #0e1e2e;
}

.btn-white-outline {
  -webkit-clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 70%, 92% 100%, 0 100%, 0 0);
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: transparent;
}

.btn-white-outline, .btn-white-outline:visited, .btn-white-outline:active, .btn-white-outline:focus {
  color: #ffffff;
}

.btn-white-outline:hover {
  color: #0e1e2e;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}

.btn-white-outline.btn-arrow-right:after {
  border-color: transparent transparent transparent #ffffff;
}

.btn-arrow-right {
  position: relative;
  padding-right: 40px;
}

@media (min-width: 992px) {
  .btn-arrow-right {
    padding-right: 60px;
  }
}

.btn-arrow-right:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #ffbf00;
}

@media (min-width: 992px) {
  .btn-arrow-right:after {
    right: 25px;
  }
}

.btn-arrow {
  position: relative;
  display: block;
  width: 7px;
  height: 14px;
}

.btn-arrow:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent transparent transparent #ffbf00;
}

.btn-arrow-small:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #ffbf00;
}

@media (min-width: 992px) {
  .btn-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 991px) {
  .btn-group .btn-item {
    margin-bottom: 1rem;
  }
}

/* Color helpers */
.bg-black-normal {
  background-color: #000000;
}

.bg-gray-light {
  background-color: #fefaf1;
}

.txt-white {
  color: #ffffff;
}

.txt-yellow {
  color: #ffbf00;
}

.txt-black {
  color: #000000;
}

.h-white h1, .h-white .alfa,
.h-white h2, .h-white .beta,
.h-white h3, .h-white .gamma,
.h-white h4, .h-white .delta,
.h-white h5, .h-white .epsilon,
.h-white h6, .h-white .zeta {
  color: #ffffff;
}

.h-yellow h1, .h-yellow .alfa,
.h-yellow h2, .h-yellow .beta,
.h-yellow h3, .h-yellow .gamma,
.h-yellow h4, .h-yellow .delta,
.h-yellow h5, .h-yellow .epsilon,
.h-yellow h6, .h-yellow .zeta {
  color: #ffbf00;
}

.p-white p {
  color: #ffffff;
}

.p-blue-light p {
  color: #97a6b4;
}

.ul-white li {
  color: #ffffff !important;
}

.ul-white li:before {
  background-color: #ffffff !important;
}

.ol-white li {
  color: #ffffff !important;
}

.ol-white li:before {
  color: #ffffff !important;
}

/* Float helpers */
.float-0 {
  float: none;
}

.float-r {
  float: right;
}

.float-l {
  float: left;
}

@media (max-width: 1199px) {
  .float-lg-r {
    float: right;
  }
  .float-lg-l {
    float: left;
  }
}

@media (max-width: 991px) {
  .float-md-l {
    float: left;
  }
  .float-md-r {
    float: right;
  }
}

@media (max-width: 770px) {
  .float-sm-l {
    float: left;
  }
  .float-sm-r {
    float: right;
  }
}

@media (max-width: 575px) {
  .float-xs-l {
    float: left;
  }
  .float-xs-r {
    float: right;
  }
}

/* Gutter helpers */
.no-gutter {
  margin: 0;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.gutter-10.row {
  margin-right: -5px;
  margin-left: -5px;
}

.gutter-10 > [class*="col-"],
.gutter-10 > [class*=" col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.gutter-20.row {
  margin-right: -10px;
  margin-left: -10px;
}

.gutter-20 > [class*="col-"],
.gutter-20 > [class*=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.gutter-30.row {
  margin-right: -15px;
  margin-left: -15px;
}

.gutter-30 > [class*="col-"],
.gutter-30 > [class*=" col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.gutter-40.row {
  margin-right: -20px;
  margin-left: -20px;
}

.gutter-40 > [class*="col-"],
.gutter-40 > [class*=" col-"] {
  padding-right: 20px;
  padding-left: 20px;
}

.gutter-50.row {
  margin-right: -25px;
  margin-left: -25px;
}

.gutter-50 > [class*="col-"],
.gutter-50 > [class*=" col-"] {
  padding-right: 25px;
  padding-left: 25px;
}

.gutter-60.row {
  margin-right: -30px;
  margin-left: -30px;
}

.gutter-60 > [class*="col-"],
.gutter-60 > [class*=" col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

@media (min-width: 576px) {
  .gutter-xs-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-xs-10 > [class*="col-"],
  .gutter-xs-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-xs-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-xs-20 > [class*="col-"],
  .gutter-xs-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-xs-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xs-30 > [class*="col-"],
  .gutter-xs-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xs-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xs-40 > [class*="col-"],
  .gutter-xs-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xs-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-xs-50 > [class*="col-"],
  .gutter-xs-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-xs-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xs-60 > [class*="col-"],
  .gutter-xs-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xs-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-xs-100 > [class*="col-"],
  .gutter-xs-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 771px) {
  .gutter-sm-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-sm-10 > [class*="col-"],
  .gutter-sm-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-sm-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-sm-20 > [class*="col-"],
  .gutter-sm-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-sm-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-sm-30 > [class*="col-"],
  .gutter-sm-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-sm-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-sm-40 > [class*="col-"],
  .gutter-sm-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-sm-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-sm-50 > [class*="col-"],
  .gutter-sm-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-sm-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-sm-60 > [class*="col-"],
  .gutter-sm-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-sm-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-sm-100 > [class*="col-"],
  .gutter-sm-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .gutter-md-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-md-10 > [class*="col-"],
  .gutter-md-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-md-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-md-20 > [class*="col-"],
  .gutter-md-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-md-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-md-30 > [class*="col-"],
  .gutter-md-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-md-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-md-40 > [class*="col-"],
  .gutter-md-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-md-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-md-50 > [class*="col-"],
  .gutter-md-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-md-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-md-60 > [class*="col-"],
  .gutter-md-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-md-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-md-100 > [class*="col-"],
  .gutter-md-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .gutter-lg-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-lg-10 > [class*="col-"],
  .gutter-lg-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-lg-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-lg-20 > [class*="col-"],
  .gutter-lg-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-lg-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-lg-30 > [class*="col-"],
  .gutter-lg-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-lg-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-lg-40 > [class*="col-"],
  .gutter-lg-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-lg-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-lg-50 > [class*="col-"],
  .gutter-lg-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-lg-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-lg-60 > [class*="col-"],
  .gutter-lg-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-lg-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-lg-100 > [class*="col-"],
  .gutter-lg-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

/* Hidden content */
.hidden-content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.hidden-content.is-active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

@media (min-width: 576px) {
  .hidden-xs-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-xs-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 771px) {
  .hidden-sm-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-sm-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 992px) {
  .hidden-md-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-md-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (min-width: 1200px) {
  .hidden-lg-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-lg-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

/* Hidden class */
.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.overflow {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-visible {
  overflow: visible;
}

/* HR helper */
.hr-line {
  margin: 30px 0;
  height: 1px;
  background-color: #fefaf1;
}

.hr-line-small {
  margin: 10px 0;
}

.hr-line-normal {
  margin: 20px 0;
}

.hr-line-big {
  margin: 20px 0;
}

.hr-line-width-small {
  width: 100px;
}

.hr-line-width-normal {
  width: 200px;
}

.hr-line-width-big {
  width: 300px;
}

.hr-line-center {
  margin: 0 auto;
}

.hr-line-black {
  background-color: #0e1e2e;
}

.hr-line-brown {
  background-color: #f3eee8;
}

/* Icon helpers */
.ico-size-small svg {
  font-size: 12px;
  font-size: 0.75rem;
}

.ico-size-normal svg {
  font-size: 12px;
  font-size: 0.75rem;
}

.icon-size-73 svg {
  font-size: 73px;
  font-size: 4.5625rem;
}

.icon-size-110 svg {
  font-size: 110px;
  font-size: 6.875rem;
}

/* Image helpers */
.img {
  display: block;
}

.img-full {
  width: 100%;
}

@media (max-width: 575px) {
  .img-xs-full {
    width: 100%;
  }
}

.img-contain {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-hover {
  display: block;
  overflow: hidden;
}

.img-hover:hover > img {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.img-hover img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
}

.bg-image-hover {
  display: block;
  overflow: hidden;
}

.bg-image-hover:hover > .bg-image {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.bg-image-hover .bg-image {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
}

.img-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.img-flex img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 576px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 992px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .img-flex-gallery {
    height: 160px;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .img-flex-gallery {
    height: 380px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .img-flex-gallery {
    height: 380px;
  }
}

.bg-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
}

@media (max-width: 770px) {
  .bg-image-offer {
    background-position: center right;
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  height: 100%;
}

.bg-image-leaf {
  top: auto;
  bottom: 40px;
  left: 10px;
  width: 141px;
  height: 118px;
}

@media (max-width: 770px) {
  .bg-image-leaf {
    bottom: 0px;
    left: -40px;
  }
}

.bg-image-cherry {
  left: 10px;
  top: 0;
  width: 218px;
  height: 320px;
}

.bg-image-leaf-blur {
  left: auto;
  right: 0;
  top: 30px;
  width: 287px;
  height: 192px;
}

[class*='aspect-ratio-'] {
  display: block;
  position: relative;
}

[class*='aspect-ratio-'] > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.aspect-ratio-wide {
  padding-top: 56.25%;
}

.aspect-ratio-square {
  padding-top: 100%;
}

/* Margin helpers */
.margin-0 {
  margin: 0 !important;
}

@media (min-width: 576px) {
  .margin-xs-0 {
    margin: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-sm-0 {
    margin: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-md-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-lg-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1440px) {
  .margin-xl-0 {
    margin: 0 !important;
  }
}

.margin-bottom-01 {
  margin-bottom: 0.1rem;
}

.margin-bottom-02 {
  margin-bottom: 0.2rem;
}

.margin-bottom-03 {
  margin-bottom: 0.3rem;
}

.margin-bottom-04 {
  margin-bottom: 0.4rem;
}

.margin-bottom-05 {
  margin-bottom: 0.5rem;
}

.margin-bottom-08 {
  margin-bottom: 0.8rem;
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

.margin-bottom-3 {
  margin-bottom: 3rem;
}

.margin-bottom-4 {
  margin-bottom: 4rem;
}

.margin-bottom-5 {
  margin-bottom: 5rem;
}

.margin-bottom-6 {
  margin-bottom: 6rem;
}

.margin-bottom-7 {
  margin-bottom: 7rem;
}

.margin-bottom-8 {
  margin-bottom: 8rem;
}

.margin-bottom-9 {
  margin-bottom: 9rem;
}

.margin-bottom-10 {
  margin-bottom: 10rem;
}

@media (min-width: 576px) {
  .margin-bottom-xs-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xs-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xs-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xs-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xs-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-sm-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-sm-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-sm-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-sm-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-md-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-md-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-md-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-md-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-lg-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-lg-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-lg-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-lg-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-bottom-xl-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xl-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xl-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xl-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xl-6 {
    margin-bottom: 6rem;
  }
}

.margin-top-01 {
  margin-top: 0.1rem;
}

.margin-top-02 {
  margin-top: 0.2rem;
}

.margin-top-03 {
  margin-top: 0.3rem;
}

.margin-top-04 {
  margin-top: 0.4rem;
}

.margin-top-05 {
  margin-top: 0.5rem;
}

.margin-top-08 {
  margin-top: 0.8rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-1-5 {
  margin-top: 1.5rem;
}

.margin-top-2 {
  margin-top: 2rem;
}

.margin-top-3 {
  margin-top: 3rem;
}

.margin-top-4 {
  margin-top: 4rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.margin-top-6 {
  margin-top: 6rem;
}

.margin-top-7 {
  margin-top: 7rem;
}

.margin-top-8 {
  margin-top: 8rem;
}

.margin-top-9 {
  margin-top: 9rem;
}

.margin-top-10 {
  margin-top: 10rem;
}

@media (min-width: 576px) {
  .margin-top-xs-1 {
    margin-top: 1rem;
  }
  .margin-top-xs-2 {
    margin-top: 2rem;
  }
  .margin-top-xs-3 {
    margin-top: 3rem;
  }
  .margin-top-xs-4 {
    margin-top: 4rem;
  }
  .margin-top-xs-5 {
    margin-top: 5rem;
  }
  .margin-top-xs-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-1 {
    margin-top: 1rem;
  }
  .margin-top-sm-2 {
    margin-top: 2rem;
  }
  .margin-top-sm-3 {
    margin-top: 3rem;
  }
  .margin-top-sm-4 {
    margin-top: 4rem;
  }
  .margin-top-sm-5 {
    margin-top: 5rem;
  }
  .margin-top-sm-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-top-md-1 {
    margin-top: 1rem;
  }
  .margin-top-md-2 {
    margin-top: 2rem;
  }
  .margin-top-md-3 {
    margin-top: 3rem;
  }
  .margin-top-md-4 {
    margin-top: 4rem;
  }
  .margin-top-md-5 {
    margin-top: 5rem;
  }
  .margin-top-md-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-1 {
    margin-top: 1rem;
  }
  .margin-top-lg-2 {
    margin-top: 2rem;
  }
  .margin-top-lg-3 {
    margin-top: 3rem;
  }
  .margin-top-lg-4 {
    margin-top: 4rem;
  }
  .margin-top-lg-5 {
    margin-top: 5rem;
  }
  .margin-top-lg-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-top-xl-1 {
    margin-top: 1rem;
  }
  .margin-top-xl-2 {
    margin-top: 2rem;
  }
  .margin-top-xl-3 {
    margin-top: 3rem;
  }
  .margin-top-xl-4 {
    margin-top: 4rem;
  }
  .margin-top-xl-5 {
    margin-top: 5rem;
  }
  .margin-top-xl-6 {
    margin-top: 6rem;
  }
}

.margin-left-01 {
  margin-left: 0.1rem;
}

.margin-left-02 {
  margin-left: 0.2rem;
}

.margin-left-03 {
  margin-left: 0.3rem;
}

.margin-left-04 {
  margin-left: 0.4rem;
}

.margin-left-05 {
  margin-left: 0.5rem;
}

.margin-left-08 {
  margin-left: 0.8rem;
}

.margin-left-1 {
  margin-left: 1rem;
}

.margin-left-1-5 {
  margin-left: 1.5rem;
}

.margin-left-2 {
  margin-left: 2rem;
}

.margin-left-3 {
  margin-left: 3rem;
}

.margin-left-4 {
  margin-left: 4rem;
}

.margin-left-5 {
  margin-left: 5rem;
}

.margin-left-6 {
  margin-left: 6rem;
}

.margin-left-7 {
  margin-left: 7rem;
}

.margin-left-8 {
  margin-left: 8rem;
}

.margin-left-9 {
  margin-left: 9rem;
}

.margin-left-10 {
  margin-left: 10rem;
}

@media (min-width: 576px) {
  .margin-left-xs-1 {
    margin-left: 1rem;
  }
  .margin-left-xs-2 {
    margin-left: 2rem;
  }
  .margin-left-xs-3 {
    margin-left: 3rem;
  }
  .margin-left-xs-4 {
    margin-left: 4rem;
  }
  .margin-left-xs-5 {
    margin-left: 5rem;
  }
  .margin-left-xs-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-1 {
    margin-left: 1rem;
  }
  .margin-left-sm-2 {
    margin-left: 2rem;
  }
  .margin-left-sm-3 {
    margin-left: 3rem;
  }
  .margin-left-sm-4 {
    margin-left: 4rem;
  }
  .margin-left-sm-5 {
    margin-left: 5rem;
  }
  .margin-left-sm-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-left-md-1 {
    margin-left: 1rem;
  }
  .margin-left-md-2 {
    margin-left: 2rem;
  }
  .margin-left-md-3 {
    margin-left: 3rem;
  }
  .margin-left-md-4 {
    margin-left: 4rem;
  }
  .margin-left-md-5 {
    margin-left: 5rem;
  }
  .margin-left-md-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-1 {
    margin-left: 1rem;
  }
  .margin-left-lg-2 {
    margin-left: 2rem;
  }
  .margin-left-lg-3 {
    margin-left: 3rem;
  }
  .margin-left-lg-4 {
    margin-left: 4rem;
  }
  .margin-left-lg-5 {
    margin-left: 5rem;
  }
  .margin-left-lg-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-left-xl-1 {
    margin-left: 1rem;
  }
  .margin-left-xl-2 {
    margin-left: 2rem;
  }
  .margin-left-xl-3 {
    margin-left: 3rem;
  }
  .margin-left-xl-4 {
    margin-left: 4rem;
  }
  .margin-left-xl-5 {
    margin-left: 5rem;
  }
  .margin-left-xl-6 {
    margin-left: 6rem;
  }
}

.margin-right-01 {
  margin-right: 0.1rem;
}

.margin-right-02 {
  margin-right: 0.2rem;
}

.margin-right-03 {
  margin-right: 0.3rem;
}

.margin-right-04 {
  margin-right: 0.4rem;
}

.margin-right-05 {
  margin-right: 0.5rem;
}

.margin-right-08 {
  margin-right: 0.8rem;
}

.margin-right-1 {
  margin-right: 1rem;
}

.margin-right-1-5 {
  margin-right: 1.5rem;
}

.margin-right-2 {
  margin-right: 2rem;
}

.margin-right-3 {
  margin-right: 3rem;
}

.margin-right-4 {
  margin-right: 4rem;
}

.margin-right-5 {
  margin-right: 5rem;
}

.margin-right-6 {
  margin-right: 6rem;
}

.margin-right-7 {
  margin-right: 7rem;
}

.margin-right-8 {
  margin-right: 8rem;
}

.margin-right-9 {
  margin-right: 9rem;
}

.margin-right-10 {
  margin-right: 10rem;
}

@media (min-width: 576px) {
  .margin-right-xs-1 {
    margin-right: 1rem;
  }
  .margin-right-xs-2 {
    margin-right: 2rem;
  }
  .margin-right-xs-3 {
    margin-right: 3rem;
  }
  .margin-right-xs-4 {
    margin-right: 4rem;
  }
  .margin-right-xs-5 {
    margin-right: 5rem;
  }
  .margin-right-xs-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-1 {
    margin-right: 1rem;
  }
  .margin-right-sm-2 {
    margin-right: 2rem;
  }
  .margin-right-sm-3 {
    margin-right: 3rem;
  }
  .margin-right-sm-4 {
    margin-right: 4rem;
  }
  .margin-right-sm-5 {
    margin-right: 5rem;
  }
  .margin-right-sm-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-right-md-1 {
    margin-right: 1rem;
  }
  .margin-right-md-2 {
    margin-right: 2rem;
  }
  .margin-right-md-3 {
    margin-right: 3rem;
  }
  .margin-right-md-4 {
    margin-right: 4rem;
  }
  .margin-right-md-5 {
    margin-right: 5rem;
  }
  .margin-right-md-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-1 {
    margin-right: 1rem;
  }
  .margin-right-lg-2 {
    margin-right: 2rem;
  }
  .margin-right-lg-3 {
    margin-right: 3rem;
  }
  .margin-right-lg-4 {
    margin-right: 4rem;
  }
  .margin-right-lg-5 {
    margin-right: 5rem;
  }
  .margin-right-lg-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-right-xl-1 {
    margin-right: 1rem;
  }
  .margin-right-xl-2 {
    margin-right: 2rem;
  }
  .margin-right-xl-3 {
    margin-right: 3rem;
  }
  .margin-right-xl-4 {
    margin-right: 4rem;
  }
  .margin-right-xl-5 {
    margin-right: 5rem;
  }
  .margin-right-xl-6 {
    margin-right: 6rem;
  }
}

.margin-center {
  margin: 0 auto;
}

@media (min-width: 576px) {
  .margin-xs-center {
    margin: 0 auto;
  }
}

@media (min-width: 771px) {
  .margin-sm-center {
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .margin-md-center {
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .margin-lg-center {
    margin: 0 auto;
  }
}

.margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 576px) {
  .margin-top-xs-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-top-xs-0 {
    margin-top: 0 !important;
  }
}

.margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 576px) {
  .margin-right-xs-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-right-xs-0 {
    margin-right: 0 !important;
  }
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 576px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

.margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 576px) {
  .margin-left-xs-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-left-xs-0 {
    margin-left: 0 !important;
  }
}

/* Padding block */
.padding-0 {
  padding: 0 !important;
}

@media (min-width: 576px) {
  .padding-xs-0 {
    padding: 0 !important;
  }
}

@media (min-width: 771px) {
  .padding-sm-0 {
    padding: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-md-0 {
    padding: 0 !important;
  }
}

@media (min-width: 1440px) {
  .padding-xl-0 {
    padding: 0 !important;
  }
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-top-xs-0 {
  padding-top: 0 !important;
}

@media (min-width: 771px) {
  .padding-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-top-xs-0 {
    padding-top: 0 !important;
  }
}

.padding-right-0 {
  padding-right: 0 !important;
}

.padding-right-xs-0 {
  padding-right: 0 !important;
}

@media (min-width: 771px) {
  .padding-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-right-xs-0 {
    padding-right: 0 !important;
  }
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-xs-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 771px) {
  .padding-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-bottom-xs-0 {
    padding-bottom: 0 !important;
  }
}

.padding-left-0 {
  padding-left: 0 !important;
}

.padding-left-xs-0 {
  padding-left: 0 !important;
}

@media (min-width: 771px) {
  .padding-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-left-xs-0 {
    padding-left: 0 !important;
  }
}

/* Position helpers */
.pos-r {
  position: relative;
}

.pos-f {
  position: fixed;
}

.pos-s {
  position: static;
}

.pos-sticky {
  position: -webkit-sticky;
  position: sticky;
}

.pos-a {
  position: absolute;
}

.pos-auto {
  position: inherit;
}

/* Row helpers */
.row-40 {
  margin-right: -40px;
  margin-left: -40px;
}

.row-40 .row-item {
  padding-left: 40px;
  padding-right: 40px;
}

.row-30 {
  margin-right: -30px;
  margin-left: -30px;
}

.row-30 .row-item {
  padding-left: 30px;
  padding-right: 30px;
}

.row-20 {
  margin-right: -20px;
  margin-left: -20px;
}

.row-20 .row-item {
  padding-left: 20px;
  padding-right: 20px;
}

.row-10 {
  margin-right: -10px;
  margin-left: -10px;
}

.row-10 .row-item {
  padding-left: 10px;
  padding-right: 10px;
}

/* Size helpers */
.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-quarter {
  width: 25%;
}

.h-full-vh {
  height: 100vh;
}

.h-full {
  height: 100%;
}

.h-half {
  height: 50%;
}

.h-quarter {
  height: 25%;
}

/* Text helpers */
.txt-r {
  text-align: right;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-upper {
  text-transform: uppercase;
}

.txt-lower {
  text-transform: lowercase;
}

.txt-italic {
  font-style: italic;
}

.txt-light {
  font-weight: 300;
}

.txt-regular {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

.txt-line {
  text-decoration: line-through;
}

.txt-underline {
  text-decoration: underline;
}

.h-light h1, .h-light .alfa,
.h-light h2, .h-light .beta,
.h-light h3, .h-light .gamma,
.h-light h4, .h-light .delta,
.h-light h5, .h-light .epsilon,
.h-light h6, .h-light .zeta {
  font-weight: 300;
}

.h-regular h1, .h-regular .alfa,
.h-regular h2, .h-regular .beta,
.h-regular h3, .h-regular .gamma,
.h-regular h4, .h-regular .delta,
.h-regular h5, .h-regular .epsilon,
.h-regular h6, .h-regular .zeta {
  font-weight: 400;
}

.h-semibold h1, .h-semibold .alfa,
.h-semibold h2, .h-semibold .beta,
.h-semibold h3, .h-semibold .gamma,
.h-semibold h4, .h-semibold .delta,
.h-semibold h5, .h-semibold .epsilon,
.h-semibold h6, .h-semibold .zeta {
  font-weight: 600;
}

.h-bold h1, .h-bold .alfa,
.h-bold h2, .h-bold .beta,
.h-bold h3, .h-bold .gamma,
.h-bold h4, .h-bold .delta,
.h-bold h5, .h-bold .epsilon,
.h-bold h6, .h-bold .zeta {
  font-weight: 700;
}

.h-black h1, .h-black .alfa,
.h-black h2, .h-black .beta,
.h-black h3, .h-black .gamma,
.h-black h4, .h-black .delta,
.h-black h5, .h-black .epsilon,
.h-black h6, .h-black .zeta {
  font-weight: 900;
}

.h-primary-semi h1, .h-primary-semi .alfa,
.h-primary-semi h2, .h-primary-semi .beta,
.h-primary-semi h3, .h-primary-semi .gamma,
.h-primary-semi h4, .h-primary-semi .delta,
.h-primary-semi h5, .h-primary-semi .epsilon,
.h-primary-semi h6, .h-primary-semi .zeta {
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
}

.h-upper h1, .h-upper .alfa,
.h-upper h2, .h-upper .beta,
.h-upper h3, .h-upper .gamma,
.h-upper h4, .h-upper .delta,
.h-upper h5, .h-upper .epsilon,
.h-upper h6, .h-upper .zeta {
  text-transform: uppercase;
}

.h-line-1-2 h1, .h-line-1-2 .alfa,
.h-line-1-2 h2, .h-line-1-2 .beta,
.h-line-1-2 h3, .h-line-1-2 .gamma,
.h-line-1-2 h4, .h-line-1-2 .delta,
.h-line-1-2 h5, .h-line-1-2 .epsilon,
.h-line-1-2 h6, .h-line-1-2 .zeta {
  line-height: 1.2;
}

.h-line-1-4 h1, .h-line-1-4 .alfa,
.h-line-1-4 h2, .h-line-1-4 .beta,
.h-line-1-4 h3, .h-line-1-4 .gamma,
.h-line-1-4 h4, .h-line-1-4 .delta,
.h-line-1-4 h5, .h-line-1-4 .epsilon,
.h-line-1-4 h6, .h-line-1-4 .zeta {
  line-height: 1.4;
}

.h-line-1-6 h1, .h-line-1-6 .alfa,
.h-line-1-6 h2, .h-line-1-6 .beta,
.h-line-1-6 h3, .h-line-1-6 .gamma,
.h-line-1-6 h4, .h-line-1-6 .delta,
.h-line-1-6 h5, .h-line-1-6 .epsilon,
.h-line-1-6 h6, .h-line-1-6 .zeta {
  line-height: 1.6;
}

.h-line-1-8 h1, .h-line-1-8 .alfa,
.h-line-1-8 h2, .h-line-1-8 .beta,
.h-line-1-8 h3, .h-line-1-8 .gamma,
.h-line-1-8 h4, .h-line-1-8 .delta,
.h-line-1-8 h5, .h-line-1-8 .epsilon,
.h-line-1-8 h6, .h-line-1-8 .zeta {
  line-height: 1.8;
}

@media (min-width: 576px) {
  .h-line-xs-1-2 h1, .h-line-xs-1-2 .alfa,
  .h-line-xs-1-2 h2, .h-line-xs-1-2 .beta,
  .h-line-xs-1-2 h3, .h-line-xs-1-2 .gamma,
  .h-line-xs-1-2 h4, .h-line-xs-1-2 .delta,
  .h-line-xs-1-2 h5, .h-line-xs-1-2 .epsilon,
  .h-line-xs-1-2 h6, .h-line-xs-1-2 .zeta {
    line-height: 1.2;
  }
}

@media (min-width: 771px) {
  .h-line-sm-1-2 h1, .h-line-sm-1-2 .alfa,
  .h-line-sm-1-2 h2, .h-line-sm-1-2 .beta,
  .h-line-sm-1-2 h3, .h-line-sm-1-2 .gamma,
  .h-line-sm-1-2 h4, .h-line-sm-1-2 .delta,
  .h-line-sm-1-2 h5, .h-line-sm-1-2 .epsilon,
  .h-line-sm-1-2 h6, .h-line-sm-1-2 .zeta {
    line-height: 1.2;
  }
}

@media (min-width: 370px) {
  .txt-xss-c {
    text-align: center;
  }
  .txt-xss-l {
    text-align: left;
  }
  .txt-xss-r {
    text-align: right;
  }
}

@media (min-width: 576px) {
  .txt-xs-c {
    text-align: center;
  }
  .txt-xs-l {
    text-align: left;
  }
  .txt-xs-r {
    text-align: right;
  }
}

@media (min-width: 771px) {
  .txt-sm-l {
    text-align: left;
  }
  .txt-sm-r {
    text-align: right;
  }
  .txt-sm-c {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .txt-md-l {
    text-align: left;
  }
  .txt-md-r {
    text-align: right;
  }
  .txt-md-c {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .txt-lg-r {
    text-align: right;
  }
  .txt-lg-l {
    text-align: left;
  }
  .txt-lg-c {
    text-align: center;
  }
}

.h-margin-0 .alfa, .h-margin-0 .beta, .h-margin-0 .gamma, .h-margin-0 .delta, .h-margin-0 .epsilon, .h-margin-0 .zeta,
.h-margin-0 h1, .h-margin-0 h2, .h-margin-0 h3, .h-margin-0 h4, .h-margin-0 h5, .h-margin-0 h6 {
  margin-bottom: 0;
}

.h-margin-01 .alfa, .h-margin-01 .beta, .h-margin-01 .gamma, .h-margin-01 .delta, .h-margin-01 .epsilon, .h-margin-01 .zeta,
.h-margin-01 h1, .h-margin-01 h2, .h-margin-01 h3, .h-margin-01 h4, .h-margin-01 h5, .h-margin-01 h6 {
  margin-bottom: 0.1em;
}

.h-margin-02 .alfa, .h-margin-02 .beta, .h-margin-02 .gamma, .h-margin-02 .delta, .h-margin-02 .epsilon, .h-margin-02 .zeta,
.h-margin-02 h1, .h-margin-02 h2, .h-margin-02 h3, .h-margin-02 h4, .h-margin-02 h5, .h-margin-02 h6 {
  margin-bottom: 0.2em;
}

.h-margin-03 .alfa, .h-margin-03 .beta, .h-margin-03 .gamma, .h-margin-03 .delta, .h-margin-03 .epsilon, .h-margin-03 .zeta,
.h-margin-03 h1, .h-margin-03 h2, .h-margin-03 h3, .h-margin-03 h4, .h-margin-03 h5, .h-margin-03 h6 {
  margin-bottom: 0.3em;
}

.h-margin-04 .alfa, .h-margin-04 .beta, .h-margin-04 .gamma, .h-margin-04 .delta, .h-margin-04 .epsilon, .h-margin-04 .zeta,
.h-margin-04 h1, .h-margin-04 h2, .h-margin-04 h3, .h-margin-04 h4, .h-margin-04 h5, .h-margin-04 h6 {
  margin-bottom: 0.4em;
}

.h-margin-05 .alfa, .h-margin-05 .beta, .h-margin-05 .gamma, .h-margin-05 .delta, .h-margin-05 .epsilon, .h-margin-05 .zeta,
.h-margin-05 h1, .h-margin-05 h2, .h-margin-05 h3, .h-margin-05 h4, .h-margin-05 h5, .h-margin-05 h6 {
  margin-bottom: 0.5em;
}

.h-margin-06 .alfa, .h-margin-06 .beta, .h-margin-06 .gamma, .h-margin-06 .delta, .h-margin-06 .epsilon, .h-margin-06 .zeta,
.h-margin-06 h1, .h-margin-06 h2, .h-margin-06 h3, .h-margin-06 h4, .h-margin-06 h5, .h-margin-06 h6 {
  margin-bottom: 0.6em;
}

.h-margin-07 .alfa, .h-margin-07 .beta, .h-margin-07 .gamma, .h-margin-07 .delta, .h-margin-07 .epsilon, .h-margin-07 .zeta,
.h-margin-07 h1, .h-margin-07 h2, .h-margin-07 h3, .h-margin-07 h4, .h-margin-07 h5, .h-margin-07 h6 {
  margin-bottom: 0.7em;
}

.h-margin-08 .alfa, .h-margin-08 .beta, .h-margin-08 .gamma, .h-margin-08 .delta, .h-margin-08 .epsilon, .h-margin-08 .zeta,
.h-margin-08 h1, .h-margin-08 h2, .h-margin-08 h3, .h-margin-08 h4, .h-margin-08 h5, .h-margin-08 h6 {
  margin-bottom: 0.8em;
}

.h-margin-1 .alfa, .h-margin-1 .beta, .h-margin-1 .gamma, .h-margin-1 .delta, .h-margin-1 .epsilon, .h-margin-1 .zeta,
.h-margin-1 h1, .h-margin-1 h2, .h-margin-1 h3, .h-margin-1 h4, .h-margin-1 h5, .h-margin-1 h6 {
  margin-bottom: 1em;
}

.h-margin-1-5 .alfa, .h-margin-1-5 .beta, .h-margin-1-5 .gamma, .h-margin-1-5 .delta, .h-margin-1-5 .epsilon, .h-margin-1-5 .zeta,
.h-margin-1-5 h1, .h-margin-1-5 h2, .h-margin-1-5 h3, .h-margin-1-5 h4, .h-margin-1-5 h5, .h-margin-1-5 h6 {
  margin-bottom: 1.5em;
}

.h-margin-2 .alfa, .h-margin-2 .beta, .h-margin-2 .gamma, .h-margin-2 .delta, .h-margin-2 .epsilon, .h-margin-2 .zeta,
.h-margin-2 h1, .h-margin-2 h2, .h-margin-2 h3, .h-margin-2 h4, .h-margin-2 h5, .h-margin-2 h6 {
  margin-bottom: 2em;
}

.p-margin-0 p {
  margin-bottom: 0;
}

.p-margin-01 p {
  margin-bottom: 0.1rem;
}

.p-margin-02 p {
  margin-bottom: 0.2rem;
}

.p-margin-03 p {
  margin-bottom: 0.3rem;
}

.p-margin-04 p {
  margin-bottom: 0.4rem;
}

.p-margin-05 p {
  margin-bottom: 0.5rem;
}

.p-margin-08 p {
  margin-bottom: 0.8rem;
}

.p-margin-1 p {
  margin-bottom: 1rem;
}

.p-margin-1-5 p {
  margin-bottom: 1.5rem;
}

.p-margin-2 p {
  margin-bottom: 2rem;
}

/* Z-index helpers */
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.z-index-100 {
  z-index: 100;
}

.z-index-1000 {
  z-index: 1000;
}

.z-index-10000 {
  z-index: 10000;
}

.opacity-0 {
  opacity: 0;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.opacity-1 {
  opacity: 1;
}

.dots {
  overflow: hidden;
}

.dots-10 {
  height: 10px;
}

.dots-20 {
  height: 20px;
}

.dots-30 {
  height: 30px;
}

.dots-40 {
  height: 40px;
}

.dots-50 {
  height: 50px;
}

.dots-60 {
  height: 60px;
}

.dots-70 {
  height: 70px;
}

.dots-80 {
  height: 80px;
}

.dots-90 {
  height: 90px;
}

.dots-100 {
  height: 100px;
}

.dots-110 {
  height: 160px;
}

.dots-120 {
  height: 120px;
}

.dots-130 {
  height: 130px;
}

.dots-140 {
  height: 140px;
}

.dots-150 {
  height: 150px;
}

@media (max-width: 991px) {
  .dots-md-10 {
    height: 10px;
  }
  .dots-md-20 {
    height: 20px;
  }
  .dots-md-30 {
    height: 30px;
  }
  .dots-md-40 {
    height: 40px;
  }
  .dots-md-50 {
    height: 50px;
  }
  .dots-md-60 {
    height: 60px;
  }
  .dots-md-70 {
    height: 70px;
  }
  .dots-md-80 {
    height: 80px;
  }
  .dots-md-90 {
    height: 90px;
  }
  .dots-md-100 {
    height: 100px;
  }
  .dots-md-110 {
    height: 160px;
  }
  .dots-md-120 {
    height: 120px;
  }
  .dots-md-130 {
    height: 130px;
  }
  .dots-md-140 {
    height: 140px;
  }
  .dots-md-150 {
    height: 150px;
  }
}

@media (max-width: 770px) {
  .dots-sm-10 {
    height: 10px;
  }
  .dots-sm-20 {
    height: 20px;
  }
  .dots-sm-30 {
    height: 30px;
  }
  .dots-sm-40 {
    height: 40px;
  }
  .dots-sm-50 {
    height: 50px;
  }
  .dots-sm-60 {
    height: 60px;
  }
  .dots-sm-70 {
    height: 70px;
  }
  .dots-sm-80 {
    height: 80px;
  }
  .dots-sm-90 {
    height: 90px;
  }
  .dots-sm-100 {
    height: 100px;
  }
  .dots-sm-110 {
    height: 160px;
  }
  .dots-sm-120 {
    height: 120px;
  }
  .dots-sm-130 {
    height: 130px;
  }
  .dots-sm-140 {
    height: 140px;
  }
  .dots-sm-150 {
    height: 150px;
  }
}

@media (max-width: 575px) {
  .dots-xs-10 {
    height: 10px;
  }
  .dots-xs-20 {
    height: 20px;
  }
  .dots-xs-30 {
    height: 30px;
  }
  .dots-xs-40 {
    height: 40px;
  }
  .dots-xs-50 {
    height: 50px;
  }
  .dots-xs-60 {
    height: 60px;
  }
  .dots-xs-70 {
    height: 70px;
  }
  .dots-xs-80 {
    height: 80px;
  }
  .dots-xs-90 {
    height: 90px;
  }
  .dots-xs-100 {
    height: 100px;
  }
  .dots-xs-110 {
    height: 160px;
  }
  .dots-xs-120 {
    height: 120px;
  }
  .dots-xs-130 {
    height: 130px;
  }
  .dots-xs-140 {
    height: 140px;
  }
  .dots-xs-150 {
    height: 150px;
  }
}

.dots-max-10 {
  max-height: 10px;
}

.dots-max-20 {
  max-height: 20px;
}

.dots-max-30 {
  max-height: 30px;
}

.dots-max-40 {
  max-height: 40px;
}

.dots-max-50 {
  max-height: 50px;
}

.dots-max-60 {
  max-height: 60px;
}

.dots-max-70 {
  max-height: 70px;
}

.dots-max-80 {
  max-height: 80px;
}

.dots-max-90 {
  max-height: 90px;
}

.dots-max-100 {
  max-height: 100px;
}

.dots-max-110 {
  max-height: 160px;
}

.dots-max-120 {
  max-height: 120px;
}

.dots-max-130 {
  max-height: 130px;
}

.dots-max-140 {
  max-height: 140px;
}

.dots-max-150 {
  max-height: 150px;
}

@media (max-width: 991px) {
  .dots-md-max-10 {
    max-height: 10px;
  }
  .dots-md-max-20 {
    max-height: 20px;
  }
  .dots-md-max-30 {
    max-height: 30px;
  }
  .dots-md-max-40 {
    max-height: 40px;
  }
  .dots-md-max-50 {
    max-height: 50px;
  }
  .dots-md-max-60 {
    max-height: 60px;
  }
  .dots-md-max-70 {
    max-height: 70px;
  }
  .dots-md-max-80 {
    max-height: 80px;
  }
  .dots-md-max-90 {
    max-height: 90px;
  }
  .dots-md-max-100 {
    max-height: 100px;
  }
  .dots-md-max-110 {
    max-height: 160px;
  }
  .dots-md-max-120 {
    max-height: 120px;
  }
  .dots-md-max-130 {
    max-height: 130px;
  }
  .dots-md-max-140 {
    max-height: 140px;
  }
  .dots-md-max-150 {
    max-height: 150px;
  }
}

@media (max-width: 770px) {
  .dots-sm-max-10 {
    max-height: 10px;
  }
  .dots-sm-max-20 {
    max-height: 20px;
  }
  .dots-sm-max-30 {
    max-height: 30px;
  }
  .dots-sm-max-40 {
    max-height: 40px;
  }
  .dots-sm-max-50 {
    max-height: 50px;
  }
  .dots-sm-max-60 {
    max-height: 60px;
  }
  .dots-sm-max-70 {
    max-height: 70px;
  }
  .dots-sm-max-80 {
    max-height: 80px;
  }
  .dots-sm-max-90 {
    max-height: 90px;
  }
  .dots-sm-max-100 {
    max-height: 100px;
  }
  .dots-sm-max-110 {
    max-height: 160px;
  }
  .dots-sm-max-120 {
    max-height: 120px;
  }
  .dots-sm-max-130 {
    max-height: 130px;
  }
  .dots-sm-max-140 {
    max-height: 140px;
  }
  .dots-sm-max-150 {
    max-height: 150px;
  }
}

@media (max-width: 575px) {
  .dots-xs-max-10 {
    max-height: 10px;
  }
  .dots-xs-max-20 {
    max-height: 20px;
  }
  .dots-xs-max-30 {
    max-height: 30px;
  }
  .dots-xs-max-40 {
    max-height: 40px;
  }
  .dots-xs-max-50 {
    max-height: 50px;
  }
  .dots-xs-max-60 {
    max-height: 60px;
  }
  .dots-xs-max-70 {
    max-height: 70px;
  }
  .dots-xs-max-80 {
    max-height: 80px;
  }
  .dots-xs-max-90 {
    max-height: 90px;
  }
  .dots-xs-max-100 {
    max-height: 100px;
  }
  .dots-xs-max-110 {
    max-height: 160px;
  }
  .dots-xs-max-120 {
    max-height: 120px;
  }
  .dots-xs-max-130 {
    max-height: 130px;
  }
  .dots-xs-max-140 {
    max-height: 140px;
  }
  .dots-xs-max-150 {
    max-height: 150px;
  }
}

.no-object-fit .img-flex img {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

.no-object-fit .img-contain {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

/* Base settings */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-transition: color .15s, background .15s, border .15s, opacity .15s;
  -o-transition: color .15s, background .15s, border .15s, opacity .15s;
  transition: color .15s, background .15s, border .15s, opacity .15s;
}

*:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

::-moz-selection {
  color: #fff;
  background-color: #5de15d;
}

::selection {
  color: #fff;
  background-color: #5de15d;
}

@-ms-viewport {
  width: device-width;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 310px;
  height: 100%;
  margin: 0;
  color: #000;
  background-color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
  font-family: "Industry", Arial, sans-serif;
}

a:focus, a:active, a:visited {
  outline: none;
}

.a-hover:hover, .a-hover:focus {
  text-decoration: underline;
  color: white;
}

.a-hover-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.a-hover-link-text {
  text-transform: uppercase;
  color: #5de15d;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.a-hover-link-text-yellow {
  color: #ffbf00;
}

.a-hover-link-icon {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  color: #5de15d;
  font-size: 24px;
  font-size: 1.5rem;
}

p {
  display: block;
  margin-top: 0;
  margin-bottom: 2em;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-large p {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .p-large p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 771px) {
  .p-large p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .p-large p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-big p {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 771px) {
  .p-big p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

.p-normal p {
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-small p {
  letter-spacing: 0.65px;
  line-height: 1.5;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-secondary p {
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
}

.p-line-1-4 p {
  line-height: 1.4;
}

.p-line-1-6 p {
  line-height: 1.6;
}

.p-line-1-8 p {
  line-height: 1.8;
}

.p-line-2 p {
  line-height: 2;
}

.p-line-2-2 p {
  line-height: 2.2;
}

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

ul.list-style, ol.list-style {
  margin-bottom: 2em;
}

ul.list-style li, ol.list-style li {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.31px;
  font-size: 15px;
  font-size: 0.9375rem;
}

ul.list-style a, ol.list-style a {
  color: #5de15d;
}

ul.list-style a:hover, ol.list-style a:hover {
  text-decoration: underline;
}

ul.list-style li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 70px;
  border-bottom: 1px solid #eff2f4;
}

@media (min-width: 576px) {
  ul.list-style li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

ul.list-style li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 19px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/check.svg");
}

ol.list-style {
  list-style-position: inside;
  counter-reset: item;
}

ol.list-style li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: counter(item) ".";
  counter-increment: item;
  color: #5de15d;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}

em, i, .italic {
  font-style: italic;
}

strong, .strong {
  font-weight: 700;
}

small, .small {
  font-size: 12px;
  font-size: 0.75rem;
}

h1, .alfa, h2, .beta, h3, .gamma, h4, .delta, h5, .epsilon, h6, .zeta {
  margin: 0;
  margin-bottom: 1.5em;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 a, .alfa a, h2 a, .beta a, h3 a, .gamma a, h4 a, .delta a, h5 a, .epsilon a, h6 a, .zeta a {
  color: inherit;
}

h1, .alfa {
  font-size: 46px;
  font-size: 2.875rem;
}

@media (min-width: 576px) {
  h1, .alfa {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (min-width: 771px) {
  h1, .alfa {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  h1, .alfa {
    font-size: 78px;
    font-size: 4.875rem;
  }
}

@media (min-width: 1200px) {
  h1, .alfa {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media (min-width: 1440px) {
  h1, .alfa {
    font-size: 82px;
    font-size: 5.125rem;
  }
}

@media (min-width: 1600px) {
  h1, .alfa {
    font-size: 96px;
    font-size: 6rem;
  }
}

h2, .beta {
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 576px) {
  h2, .beta {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 771px) {
  h2, .beta {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

h3, .gamma {
  letter-spacing: 2.21px;
  font-size: 28px;
  font-size: 1.75rem;
}

@media (min-width: 576px) {
  h3, .gamma {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (min-width: 771px) {
  h3, .gamma {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}

h4, .delta {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 576px) {
  h4, .delta {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 771px) {
  h4, .delta {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h5, .epsilon {
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 576px) {
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 771px) {
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

h6, .zeta {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (max-width: 770px) {
  h6, .zeta {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 575px) {
  h6, .zeta {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.headline-divider {
  margin-top: -15px;
}

.headline-divider svg {
  font-size: 50px;
  font-size: 3.125rem;
  fill: #ffbf00;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-slider {
  display: none;
}

.js-slider.slick-initialized {
  display: block;
}

.js-slider .slick-slide {
  outline: none;
}

.js-slider .js-slide-item {
  outline: none;
}

.slick-margin-negative-10 {
  margin: 0 -10px;
}

.slick-margin-negative-10 .js-slide-item {
  padding-right: 10px;
  padding-left: 10px;
}

.slick-margin-negative-20 {
  margin: 0 -20px;
}

.slick-margin-negative-20 .js-slide-item {
  padding-right: 20px;
  padding-left: 20px;
}

.slick-margin-negative-30 {
  margin: 0 -30px;
}

.slick-margin-negative-30 .js-slide-item {
  padding-right: 30px;
  padding-left: 30px;
}

.slick-margin-negative-40 {
  margin: 0 -40px;
}

.slick-margin-negative-40 .js-slide-item {
  padding-right: 40px;
  padding-left: 40px;
}

.slick-margin-negative-50 {
  margin: 0 -50px;
}

.slick-margin-negative-50 .js-slide-item {
  padding-right: 50px;
  padding-left: 50px;
}

@media (min-width: 576px) {
  .slick-margin-negative-xs-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-xs-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-xs-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-xs-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-xs-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-xs-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-xs-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-xs-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-xs-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-xs-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-xs-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-xs-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 771px) {
  .slick-margin-negative-sm-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-sm-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-sm-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-sm-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-sm-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-sm-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-sm-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-sm-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-sm-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-sm-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-sm-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-sm-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .slick-margin-negative-md-5 {
    margin: 0 -5px;
  }
  .slick-margin-negative-md-5 .js-slide-item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .slick-margin-negative-md-10 {
    margin: 0 -10px;
  }
  .slick-margin-negative-md-10 .js-slide-item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .slick-margin-negative-md-20 {
    margin: 0 -20px;
  }
  .slick-margin-negative-md-20 .js-slide-item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-margin-negative-md-30 {
    margin: 0 -30px;
  }
  .slick-margin-negative-md-30 .js-slide-item {
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-margin-negative-md-40 {
    margin: 0 -40px;
  }
  .slick-margin-negative-md-40 .js-slide-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .slick-margin-negative-md-50 {
    margin: 0 -50px;
  }
  .slick-margin-negative-md-50 .js-slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.slick-margin-10 {
  margin: 0 10px;
}

.slick-margin-20 {
  margin: 0 20px;
}

.slick-margin-30 {
  margin: 0 30px;
}

.slick-margin-40 {
  margin: 0 40px;
}

.slick-margin-50 {
  margin: 0 50px;
}

@media (min-width: 771px) {
  .slick-margin-sm-50 {
    margin: 0 50px;
  }
}

@media (min-width: 992px) {
  .slick-dots-hero .slick-dots {
    text-align: left;
    left: calc((100% - 905px) / 2);
  }
}

@media (min-width: 1200px) {
  .slick-dots-hero .slick-dots {
    left: calc((100% - 1125px) / 2);
  }
}

@media (min-width: 1440px) {
  .slick-dots-hero .slick-dots {
    left: calc((100% - 1185px) / 2);
  }
}

@media (max-width: 991px) {
  .slick-dots-hero .slick-dots {
    position: absolute;
    bottom: 10px;
  }
}

.slick-dots-hero .slick-dots li {
  width: 30px;
  height: 40px;
}

.slick-dots-hero .slick-dots li:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  content: '';
}

.slick-dots-hero .slick-dots li.slick-active:after, .slick-dots-hero .slick-dots li:hover:after {
  border-color: #ffffff;
  background-color: #ffffff;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  margin: 0 !important;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 40px;
  padding: 0 !important;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.slick-dots li:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  content: '';
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #97a6b4;
}

.slick-dots li.slick-active:after, .slick-dots li:hover:after {
  border-color: #ffbf00;
  background-color: #ffbf00;
}

.slick-dots li button:before {
  content: none;
}

.slick-dots li button {
  display: none;
}

.slick-arrow-hero .slick-arrows.slick-prev {
  left: 10px;
}

@media (min-width: 1440px) {
  .slick-arrow-hero .slick-arrows.slick-prev {
    left: 20px;
  }
}

@media (min-width: 1600px) {
  .slick-arrow-hero .slick-arrows.slick-prev {
    left: 50px;
  }
}

.slick-arrow-hero .slick-arrows.slick-next {
  right: 10px;
}

@media (min-width: 1440px) {
  .slick-arrow-hero .slick-arrows.slick-next {
    right: 20px;
  }
}

.slick-arrows {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: block;
  margin-top: -20px;
  cursor: pointer;
}

@media (max-width: 770px) {
  .slick-arrows {
    display: none !important;
  }
}

.slick-arrows svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 40px;
  text-align: center;
  fill: #97a6b4;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 36px;
  font-size: 2.25rem;
}

.slick-arrows svg:hover {
  fill: #ffbf00;
}

.slick-arrows.slick-disabled {
  opacity: 0.2;
}

.slick-arrows.slick-prev {
  left: -50px;
}

.slick-arrows.slick-next {
  right: -50px;
}

.select2-container {
  z-index: 9;
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--multiple .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--multiple .select2-selection__arrow:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.select2-container .select2-search--inline {
  display: block;
  width: 100%;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  width: 100%;
  height: 70px;
  padding: 20px 0 1px 2rem;
  padding-bottom: 1px;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #0e1e2e;
  border: 0;
  outline: none !important;
  background-color: transparent;
  font-size: 22px;
  font-size: 1.375rem;
  -webkit-border-radius: 0;
          border-radius: 0;
}

@media (min-width: 771px) {
  .select2-container .select2-selection--single,
  .select2-container .select2-selection--multiple {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .select2-container .select2-selection--single,
  .select2-container .select2-selection--multiple {
    font-size: 22px;
    font-size: 1.375rem;
    padding-left: 1rem;
  }
}

.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  line-height: 50px;
  color: #0e1e2e;
}

.select2-container .select2-selection--single .select2-selection__placeholder,
.select2-container .select2-selection--multiple .select2-selection__placeholder {
  color: #0e1e2e;
}

.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  position: absolute;
  top: -15px;
  right: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.select2-container .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-selection--multiple .select2-selection__arrow:after {
  content: "" !important;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -14px;
  margin-top: -8px;
  width: 28px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/filter-arrow.svg");
}

.select2-container .select2-selection--single .select2-selection__arrow b,
.select2-container .select2-selection--multiple .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: "\e91a";
}

.select2-dropdown {
  border: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  background-color: white;
  -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 15px 20px rgba(0, 0, 0, 0.03);
}

.select2-dropdown .select2-results__options--nested .select2-results__option {
  padding: 0 25px;
}

.select2-dropdown.select2-dropdown--above {
  -webkit-box-shadow: 0 -15px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 -15px 20px rgba(0, 0, 0, 0.03);
}

.select2-dropdown .select2-results__options {
  max-height: 220px !important;
}

.select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
  color: #ffffff;
  background-color: #0e1e2e;
}

.select2-dropdown .select2-results__options .select2-results__option {
  padding: 1.2rem 2rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  color: #0e1e2e;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .select2-dropdown .select2-results__options .select2-results__option {
    padding: 1.2rem 1rem;
  }
}

.select2-dropdown .select2-results__options .select2-results__option--highlighted {
  color: #0e1e2e;
  background-color: #f5f5f5;
}

.lg-sub-html {
  line-height: 1.6;
}

.lg-sub-html strong {
  display: block;
}

/* Content */
section {
  position: relative;
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  section {
    padding: 3rem 0 3rem;
  }
}

.no-padding {
  padding: 0;
}

@media (min-width: 576px) {
  .no-xs-padding {
    padding: 0;
  }
}

@media (min-width: 771px) {
  .no-sm-padding {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .no-md-padding {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .no-lg-padding {
    padding: 0;
  }
}

.padding-style-1 {
  padding: 4rem 0.5rem 1rem;
}

@media (min-width: 771px) {
  .padding-style-1 {
    padding: 2rem 0 0;
  }
}

.padding-style-2 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-2 {
    padding: 4rem 0 4rem;
  }
}

.padding-style-3 {
  padding: 2rem 0.5rem 1rem;
}

@media (min-width: 771px) {
  .padding-style-3 {
    padding: 2rem 0 1rem;
  }
}

.padding-style-4 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-4 {
    padding: 4rem 0 4rem;
  }
}

.padding-style-5 {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-5 {
    padding: 5rem 0 5rem;
  }
}

.padding-style-5-ext {
  padding: 3rem 0.5rem 0;
}

@media (min-width: 771px) {
  .padding-style-5-ext {
    padding: 5rem 0 2.5rem;
  }
}

.padding-style-6 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 992px) {
  .padding-style-6 {
    padding: 0 0 5rem;
  }
}

.padding-style-6-ext {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-6-ext {
    padding: 6rem 0 4rem;
  }
}

.padding-style-6-ext-1 {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-6-ext-1 {
    padding: 6rem 0 6rem;
  }
}

.padding-style-7 {
  padding: 3rem 0.5rem 3rem;
}

@media (min-width: 771px) {
  .padding-style-7 {
    padding: 6rem 0 8rem;
  }
}

.padding-style-7-ext {
  padding: 3rem 0.5rem 2rem;
}

@media (min-width: 771px) {
  .padding-style-7-ext {
    padding: 4rem 0 4rem;
  }
}

.padding-content-1 {
  padding: 1rem 1rem;
}

.padding-content-2 {
  padding: 2rem 2rem;
}

.padding-content-3 {
  padding: 3rem 3rem;
}

.padding-content-4 {
  padding: 4rem 4rem;
}

.padding-content-5 {
  padding: 5rem 5rem;
}

.content-width-200 {
  max-width: 200px;
}

.content-width-300 {
  max-width: 300px;
}

.content-width-400 {
  max-width: 400px;
}

@media (max-width: 991px) {
  .content-width-md-300 {
    max-width: 300px;
  }
}

.page-index main {
  padding-top: 60px;
}

@media (min-width: 992px) {
  .page-index main {
    padding-top: 0;
  }
}

main {
  position: relative;
  display: block;
  padding-top: 60px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media (min-width: 992px) {
  main {
    padding-top: 110px;
  }
}

.container-full {
  padding: 0 15px;
}

.container-small,
.container-normal,
.container-large {
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 771px) {
  .container-small {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-small {
    width: 800px;
  }
}

@media (min-width: 1200px) {
  .container-small {
    width: 800px;
  }
}

@media (min-width: 1440px) {
  .container-small {
    width: 800px;
  }
}

@media (max-width: 770px) {
  .container-small {
    width: 100%;
  }
}

@media (min-width: 771px) {
  .container-normal {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-normal {
    width: 920px;
  }
}

@media (min-width: 1200px) {
  .container-normal {
    width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container-normal {
    width: 1200px;
  }
}

@media (max-width: 770px) {
  .container-normal {
    width: 100%;
  }
}

@media (min-width: 771px) {
  .container-large {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-large {
    width: 950px;
  }
}

@media (min-width: 1200px) {
  .container-large {
    width: 1170px;
  }
}

@media (min-width: 1440px) {
  .container-large {
    width: 1360px;
  }
}

@media (max-width: 770px) {
  .container-large {
    width: 100%;
  }
}

/* Footer */
.footer {
  z-index: 2;
  position: relative;
  overflow: hidden;
  background-color: #fefaf1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-item {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .footer-item {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .footer-item {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 369px) {
  .footer-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.footer-top {
  padding: 3rem 0.5rem 0;
  border-top: 2px solid #ffbf00;
}

@media (max-width: 991px) {
  .footer-top {
    padding: 2rem 0.5rem 0;
  }
}

.footer-bottom {
  background-color: #ffbf00;
  padding: 1rem 0.5rem 1rem;
}

.footer-copy {
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 770px) {
  .footer-copy {
    text-align: center;
  }
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-link {
  color: white;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  width: 210px;
  height: 190px;
  padding-bottom: 1.5rem;
  position: relative;
  margin-top: -30px;
}

.footer-logo:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 227px;
  height: 207px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/footer-logo-bg.svg");
  z-index: -1;
}

@media (min-width: 992px) {
  .footer-logo {
    margin-top: -46px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .footer-logo {
    width: 180px;
  }
}

@media (min-width: 576px) {
  .footer-logo {
    position: relative;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .footer-logo img {
    margin: 0 auto;
  }
}

.footer-address-item {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer-address-item {
    margin: 0;
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .footer-address-item {
    display: block;
    padding: 15px 0;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .footer-address-item {
    display: block;
    margin-bottom: 10px;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .footer-address-item {
    display: block;
    margin-bottom: 10px;
  }
}

.footer-address-item:hover .footer-address-text {
  text-decoration: underline;
}

.footer-address-icon {
  display: inline-block;
  font-family: "Industry", Arial, sans-serif;
  float: left;
  width: 25px;
  margin-right: 25px;
  position: relative;
  top: -6px;
}

.footer-address-icon svg {
  fill: #ffbf00;
  font-size: 35px;
  font-size: 2.1875rem;
}

@media (max-width: 575px) {
  .footer-address-icon {
    width: 25px;
  }
}

.footer-address-text {
  display: block;
  height: 100%;
  position: relative;
  top: 3px;
  overflow: hidden;
  font-family: "Industry", Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #0e1e2e;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 575px) {
  .footer-address-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.footer-address-text strong {
  display: block;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.footer-address-text-ext {
  line-height: 1.6;
}

.footer-bg {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}

@media (min-width: 772px) and (max-width: 992px) {
  .footer-bg {
    top: -110px;
  }
}

@media (max-width: 575px) {
  .footer-bg {
    bottom: -160px;
    top: auto;
  }
}

.footer-bg svg {
  font-size: 958px;
  font-size: 59.875rem;
  height: 530px;
}

/* Header */
.navigation .navigation-trigger {
  display: none;
}

@media (max-width: 991px) {
  .navigation .container-normal, .navigation .container-large {
    width: 100%;
  }
  .navigation .nav-collapse {
    position: fixed;
    z-index: 98;
    top: 59px;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 25px 0 70px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    background-color: #ffffff;
    -webkit-transition: none 0.4s ease-out;
    -o-transition: none 0.4s ease-out;
    transition: none 0.4s ease-out;
  }
  .navigation .navigation-trigger {
    position: fixed;
    z-index: 200;
    top: 3px;
    right: 0;
    display: block;
    width: 70px;
    height: 57px;
  }
  .navigation .navigation-trigger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 30px;
    height: 3px;
    -webkit-transition-duration: 250ms;
    -o-transition-duration: 250ms;
       transition-duration: 250ms;
    -webkit-transition-property: background-color, transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    -o-transition-property: background-color, transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    background-color: #000000;
    font-weight: 300;
  }
  .navigation .navigation-trigger-icon:before, .navigation .navigation-trigger-icon:after {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    content: '';
    -webkit-transition-duration: 250ms;
    -o-transition-duration: 250ms;
       transition-duration: 250ms;
    -webkit-transition-property: margin, transform;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    -o-transition-property: margin, transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    background: #000000;
  }
  .navigation .navigation-trigger-icon:before {
    margin-top: -10px;
  }
  .navigation .navigation-trigger-icon:after {
    margin-top: 10px;
  }
  .navigation.is-collapse .nav-collapse {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
    -webkit-transition: -webkit-transform 250ms ease;
    transition: -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
  }
  .navigation.is-collapse .navigation-trigger-icon {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background: rgba(0, 0, 0, 0);
  }
  .navigation.is-collapse .navigation-trigger-icon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
  .navigation.is-collapse .navigation-trigger-icon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
}

@media (min-width: 992px) {
  .page-index .header {
    position: relative;
  }
  .page-index .navigation:not(.navigation-scroll) {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .page-index .navigation:not(.navigation-scroll) .menu-list-link {
    color: #ffffff;
  }
  .page-index .navigation:not(.navigation-scroll) .footer-address-icon svg {
    fill: #ffbf00;
  }
  .page-index .navigation:not(.navigation-scroll) .footer-address-text {
    color: #ffffff;
  }
}

.navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 17px rgba(0, 0, 0, 0.12);
  padding: 0 20px;
  border-top: 2px solid #ffbf00;
  -webkit-transition: background-color 350ms ease-out, -webkit-box-shadow 350ms ease-out;
  transition: background-color 350ms ease-out, -webkit-box-shadow 350ms ease-out;
  -o-transition: box-shadow 350ms ease-out, background-color 350ms ease-out;
  transition: box-shadow 350ms ease-out, background-color 350ms ease-out;
  transition: box-shadow 350ms ease-out, background-color 350ms ease-out, -webkit-box-shadow 350ms ease-out;
}

@media (min-width: 992px) {
  .navigation {
    padding: 0 10px;
  }
}

@media (min-width: 1440px) {
  .navigation {
    padding: 0 30px;
  }
}

.navigation-scroll {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
          box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

.navigation-scroll .header-logo {
  height: 80px;
}

.navigation-scroll .header-logo-link {
  height: 110px;
}

@media (min-width: 992px) {
  .navigation-scroll .header-logo-link {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .navigation-scroll .header-image {
    width: 110px;
  }
}

.navigation-scroll .menu-list-item.is-active:before {
  top: -1px;
}

@media (min-width: 992px) {
  .header-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header-logo {
  float: left;
  text-align: center;
  height: 57px;
  -webkit-transition: height 400ms ease-out;
  -o-transition: height 400ms ease-out;
  transition: height 400ms ease-out;
}

@media (min-width: 992px) {
  .header-logo {
    height: 110px;
    width: 180px;
    max-width: 180px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 180px;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}

@media (min-width: 1440px) {
  .header-logo {
    width: 220px;
    max-width: 220px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 220px;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
}

@media (max-width: 991px) {
  .header-logo {
    position: relative;
    z-index: 99;
    padding: 5px 0 5px;
  }
}

.header-logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  position: absolute;
  top: -3px;
  left: 15px;
  height: 90px;
  width: 100px;
  -webkit-transition: height 400ms ease-out;
  -o-transition: height 400ms ease-out;
  transition: height 400ms ease-out;
}

.header-logo-link:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 209px;
  height: 191px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
  background-image: url("../images/icons/footer-logo-bg.svg");
  z-index: -1;
}

@media (max-width: 991px) {
  .header-logo-link:before {
    width: 130px;
    height: 121px;
  }
}

@media (min-width: 992px) {
  .header-logo-link {
    left: 0;
    width: 170px;
    height: 180px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .header-logo-link {
    left: 0;
    width: 170px;
    height: 180px;
  }
}

@media (min-width: 1600px) {
  .header-logo-link {
    left: 50px;
    height: 191px;
    width: 209px;
  }
}

.header-image {
  -webkit-transition: width 400ms ease-out;
  -o-transition: width 400ms ease-out;
  transition: width 400ms ease-out;
}

@media (max-width: 991px) {
  .header-image {
    width: 85px;
  }
}

@media (min-width: 992px) {
  .nav-collapse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 180px);
    max-width: calc(100% - 180px);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 180px);
        -ms-flex: 0 0 calc(100% - 180px);
            flex: 0 0 calc(100% - 180px);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1440px) {
  .nav-collapse {
    width: calc(100% - 220px);
    max-width: calc(100% - 220px);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 220px);
        -ms-flex: 0 0 calc(100% - 220px);
            flex: 0 0 calc(100% - 220px);
  }
}

@media (min-width: 1600px) {
  .nav-collapse {
    padding-left: 3rem;
  }
}

.menu-list {
  text-align: center;
}

@media (min-width: 992px) {
  .menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .menu-list {
    width: 100%;
  }
}

.menu-list-item {
  position: relative;
}

@media (min-width: 992px) {
  .menu-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.2rem;
  }
}

@media (max-width: 991px) {
  .menu-list-item {
    display: block;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .menu-list-item {
    margin: 0 0.5rem;
  }
}

@media (min-width: 1600px) {
  .menu-list-item {
    margin: 0 1rem;
  }
}

.menu-list-item:hover .menu-list-link, .menu-list-item.is-active .menu-list-link {
  color: #ffbf00 !important;
}

@media (min-width: 992px) {
  .menu-list-item.is-active:before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: #ffbf00 transparent transparent transparent;
  }
}

.menu-list-link {
  position: relative;
  display: inline-block;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .menu-list-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem 0.5rem;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

@media (min-width: 1200px) {
  .menu-list-link {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

@media (min-width: 1440px) {
  .menu-list-link {
    padding: 2rem 1rem;
  }
}

@media (min-width: 1600px) {
  .menu-list-link {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 2rem 1.4rem;
    letter-spacing: 1.37px;
  }
}

@media (max-width: 991px) {
  .header-contact {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 280px;
    margin: 1rem auto 0;
  }
}

@media (min-width: 992px) {
  .header-contact {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .header-contact {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.header-contact .footer-address-item {
  padding: 8px 20px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .header-contact .footer-address-item {
    display: flex;
    align-items: center;
    gap: 1em;
  }
}

@media (min-width: 992px) {
  .header-contact .footer-address-item {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 1em;
  }
}

@media (min-width: 1440px) {
  .header-contact .footer-address-item {
    padding: 8px 20px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .header-contact .footer-address-item {
    padding: 5px 20px;
  }
}

.header-contact .footer-address-text {
  letter-spacing: 2.61px;
  font-size: 13px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.header-contact .footer-address-icon {
  position: relative;
  top: 1px;
  margin-right: 0;
  width: 18px;
  height: 18px;
}

.header-contact .footer-address-icon svg {
  font-size: 18px;
  font-size: 1.125rem;
}

.header-zaruka {

  img {
    display: block;
  }
}

/* Social block */
.social-list-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.social-list-item {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .social-list-item {
    margin-right: 4px;
  }
}

@media (min-width: 1200px) {
  .social-list-item {
    margin-right: 20px;
  }
}

.social-list-item:last-child {
  margin-right: 0;
}

.social-list-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  color: #ffbf00;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}

.social-list-link svg {
  fill: #ffbf00;
  font-size: 40px;
  font-size: 2.5rem;
}

.social-list-link:hover svg {
  fill: #cc9900;
}

/* article block */
.article-item {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .article-item {
    margin-bottom: 3rem;
  }
}

.article-content {
  display: block;
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 17px rgba(0, 0, 0, 0.11);
          box-shadow: 0 3px 17px rgba(0, 0, 0, 0.11);
  -webkit-transition: -webkit-box-shadow 400ms ease-out;
  transition: -webkit-box-shadow 400ms ease-out;
  -o-transition: box-shadow 400ms ease-out;
  transition: box-shadow 400ms ease-out;
  transition: box-shadow 400ms ease-out, -webkit-box-shadow 400ms ease-out;
}

@media (min-width: 576px) {
  .article-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 992px) {
  .article-content {
    height: 200px;
  }
}

.article-content:hover {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.article-content:hover img {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

@media (min-width: 992px) {
  .article-width {
    max-width: 225px;
    margin: 0 auto;
  }
}

.article-image-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .article-image-block {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .article-image-block {
    height: 180px;
  }
}

@media (min-width: 576px) {
  .article-image-block {
    width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

.article-image-block img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
}

.article-text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1.5rem;
}

@media (min-width: 576px) {
  .article-text-block {
    width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0.3rem 1rem;
  }
}

.article-category {
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #0e1e2e;
  padding: 0.5rem 0.5rem;
  min-width: 80px;
  font-size: 14px;
  font-size: 0.875rem;
}

.map {
  width: 100%;
  background-color: #fefaf1;
  height: 400px;
}

@media (min-width: 771px) {
  .map {
    height: 600px;
  }
}

.map .map-block {
  width: 100%;
  height: 100%;
}

.clusterer-text {
  display: block;
  text-align: center;
  color: white;
  font-weight: 600;
  line-height: 50px;
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14px;
}

/* Breadcrumbs block */
.breadcrumbs-list {
  position: relative;
  top: 5px;
}

.breadcrumb-list-item {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 770px) {
  .breadcrumb-list-item:last-child .breadcrumb-list-link {
    margin-right: 0;
  }
}

.breadcrumb-list-item:last-child .breadcrumb-list-link:after {
  content: none;
}

.breadcrumb-list-link {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  color: #0e1e2e;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0.5rem 1.5rem 0.5rem 0;
  position: relative;
}

@media (min-width: 771px) {
  .breadcrumb-list-link {
    margin: 0.8rem 0 0.8rem 1.5rem;
  }
}

.breadcrumb-list-link:hover {
  color: #ffbf00;
}

.breadcrumb-list-link:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url(../images/icons/filter-arrow.svg);
  -webkit-transform: rotateZ(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotateZ(-90deg);
}

/* Table block */
@media (max-width: 770px) {
  .table-responsives {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: .01%;
    border: 0 !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: -webkit-linear-gradient(left, white 30%, rgba(255, 255, 255, 0)), -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white 70%) 0 100%, -webkit-radial-gradient(0% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)), -webkit-radial-gradient(100% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: -o-linear-gradient(left, white 30%, rgba(255, 255, 255, 0)), -o-linear-gradient(left, rgba(255, 255, 255, 0), white 70%) 0 100%, -o-radial-gradient(0% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)), -o-radial-gradient(100% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background-repeat: no-repeat;
    background-color: white;
    -webkit-background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
            background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-position: 0 0, 100%, 0 0, 100%;
    background-attachment: local, local, scroll, scroll;
  }
}

@media (max-width: 991px) {
  .table-md-responsives {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: .01%;
    border: 0 !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: -webkit-linear-gradient(left, white 30%, rgba(255, 255, 255, 0)), -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white 70%) 0 100%, -webkit-radial-gradient(0% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)), -webkit-radial-gradient(100% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: -o-linear-gradient(left, white 30%, rgba(255, 255, 255, 0)), -o-linear-gradient(left, rgba(255, 255, 255, 0), white 70%) 0 100%, -o-radial-gradient(0% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)), -o-radial-gradient(100% 50%, farthest-side, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, #faf7f3, rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, #faf7f3, rgba(0, 0, 0, 0)) 0 100%;
    background-repeat: no-repeat;
    background-color: white;
    -webkit-background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
            background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-position: 0 0, 100%, 0 0, 100%;
    background-attachment: local, local, scroll, scroll;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead tr {
  border-bottom: 4px solid #0e1e2e;
}

table th {
  padding: 1rem 1rem 1rem 1rem;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #0e1e2e;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 771px) {
  table th {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

table tbody tr:nth-child(even) {
  background-color: #faf7f3;
}

table td {
  padding: 1rem 1rem 1rem 1rem;
  font-family: "Industry", Arial, sans-serif;
  line-height: 1.4;
  text-align: center;
  color: #0e1e2e;
  font-size: 14px;
  font-size: 0.875rem;
}

.pagination-list {
  width: 100%;
  position: relative;
}

@media (max-width: 575px) {
  .pagination-list {
    text-align: center;
  }
}

.pagination-list-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: -4px;
  margin-right: 10px;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .pagination-list-item {
    margin-right: 8px;
  }
}

.pagination-list-item:hover .pagination-list-link {
  border-color: #ffbf00;
  background-color: #ffbf00;
  color: #ffffff;
}

.pagination-list-item.more .pagination-list-link:hover {
  border-color: #e8e8e8;
  background-color: #fefaf1;
  color: #8a8a8a;
}

.pagination-list-item:before {
  content: none;
}

.pagination-list-item:first-child .pagination-list-link {
  width: auto;
  min-width: 120px;
  padding: 0 25px;
  padding-top: 2px;
}

@media (max-width: 770px) {
  .pagination-list-item:first-child .pagination-list-link {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .pagination-list-item:first-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.pagination-list-item:last-child {
  margin-right: 0;
}

.pagination-list-item:last-child .pagination-list-link {
  width: auto;
  min-width: 120px;
  padding: 0 25px;
  padding-top: 2px;
}

@media (max-width: 770px) {
  .pagination-list-item:last-child .pagination-list-link {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .pagination-list-item:last-child {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
}

.pagination-list-item.is-active .pagination-list-link {
  background-color: #ffbf00;
  color: #ffffff;
  border-color: #ffbf00;
}

.pagination-list-link {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fefaf1;
  border: 1px solid #e8e8e8;
  text-decoration: none !important;
  color: #212232;
  padding-top: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .section-hero {
    height: calc(100vh - 80px);
    max-height: 750px;
  }
}

@media (min-width: 1440px) {
  .section-hero {
    max-height: 850px;
  }
}

@media (max-width: 991px) {
  .section-hero {
    padding: 3.5rem 0 0;
  }
  .section-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 250px;
    background-color: transparent;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c000000', endColorstr='#00000000',GradientType=0 );
    pointer-events: none;
  }
}

.section-hero .container-normal {
  height: 100%;
}

.hero-group {
  position: relative;
  z-index: 2;
  height: 100%;
}

@media (min-width: 992px) and (max-width: 1440px) and (min-height: 820px) {
  .hero-group .alfa {
    font-size: 54px;
    font-size: 3.375rem;
  }
  .hero-group .p-large p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) and (max-width: 1220px) and (min-height: 820px) {
  .hero-group .alfa {
    font-size: 56px;
    font-size: 3.5rem;
  }
  .hero-group .p-large p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .hero-group .alfa {
    font-size: 56px;
    font-size: 3.5rem;
  }
  .hero-group .p-large p {
    font-size: 16px;
    font-size: 1rem;
  }
  .hero-group .hero-img {
    margin-bottom: -260px;
  }
  .hero-group .margin-bottom-6 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .hero-group .btn {
    letter-spacing: 0.60px;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .hero-group p {
    max-width: 400px;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .hero-group p {
    max-width: 380px;
  }
}

@media (max-width: 575px) {
  .hero-group .btn {
    min-width: 160px;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 1rem 1rem;
    padding-right: 30px;
  }
}

@media (max-width: 369px) {
  .hero-group p {
    max-width: 100%;
  }
}

@media (max-width: 1599px) {
  .hero-group .margin-bottom-6 {
    margin-bottom: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding: 0 0.5rem;
  }
}

.hero-slider {
  height: 100%;
  width: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide {
  width: 100%;
  height: 100%;
}

.hero-slider .slick-slide > div {
  width: 100%;
  height: 100%;
}

.hero-slider .js-slide-item {
  position: relative;
  height: 100%;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 53vw;
}

@media (min-width: 992px) {
  .hero-img {
    /*width: 340px;*/
    margin-right: 100px;
    margin-bottom: -180px;
    -webkit-filter: drop-shadow(80px 0 35px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(80px 0 35px rgba(0, 0, 0, 0.3));
  }
}

@media (min-width: 1200px) {
  .hero-img {
    /*width: 460px;*/
    margin-right: 80px;
    margin-bottom: -150px;
  }
}

@media (min-width: 1440px) {
  .hero-img {
    /*width: 600px;*/
    margin-right: 0;
    margin-bottom: -100px;
  }
}

@media (min-width: 1600px) {
  .hero-img {
    margin-right: 0;
    margin-bottom: -100px;
  }
}

@media (max-width: 991px) {
  .hero-img {
    -webkit-filter: drop-shadow(-30px 0 35px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(-30px 0 35px rgba(0, 0, 0, 0.3));
    /*width: 320px;*/
    margin-right: -120px;
    margin-top: -280px;
    margin-bottom: -20px;
  }
}

@media (max-width: 770px) {
  .hero-img {
    /*width: 320px;*/
    margin-right: -40px;
    margin-top: -220px;
    margin-bottom: -20px;
  }
}

@media (max-width: 575px) {
  .hero-img {
    /*width: 230px;*/
    margin-right: -10px;
    margin-top: -200px;
    margin-bottom: -20px;
  }
}

@media (max-width: 369px) {
  .hero-img {
    margin-top: -20px;
  }
}

.hero-info {
  z-index: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
      -ms-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
  left: 50%;
  width: 220px;
  text-align: left;
}

.hero-info:after {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 1117px;
  height: 1117px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
  z-index: -1;
  background-image: url(../images/square-yellow.svg);
}

@media (min-width: 992px) {
  .hero-info {
    margin-left: -200px;
    margin-top: 90px;
    left: 100%;
  }
}

@media (min-width: 1200px) {
  .hero-info {
    margin-left: -180px;
    margin-top: 0px;
    left: 100%;
  }
}

@media (min-width: 1440px) {
  .hero-info {
    margin-left: -150px;
    margin-top: -40px;
  }
}

@media (min-width: 1600px) {
  .hero-info {
    margin-left: -130px;
    margin-top: -70px;
  }
}

@media (max-width: 991px) {
  .hero-info {
    margin-right: -270px;
    margin-top: -100px;
    left: auto;
    top: 0;
    right: 100%;
    -webkit-transform: translateY(0) rotate(45deg);
        -ms-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
}

@media (max-width: 575px) {
  .hero-info {
    margin-right: -240px;
    margin-top: 60px;
  }
}

@media (max-width: 369px) {
  .hero-info {
    margin-top: 90px;
  }
}

.hero-info-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .hero-info-flex {
    -webkit-transform: translate(-90px, 180px) rotate(-90deg);
        -ms-transform: translate(-90px, 180px) rotate(-90deg);
            transform: translate(-90px, 180px) rotate(-90deg);
  }
}

.hero-info-count {
  color: #0e1e2e;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.64px;
}

@media (max-width: 991px) {
  .hero-info-count {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.hero-info-title {
  display: block;
  min-width: 250px;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-size: 9px;
  font-size: 0.5625rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 6.74px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .hero-info-title {
    padding-left: 1.5rem;
  }
}

@media (max-width: 991px) {
  .hero-info-title {
    padding-right: 1.5rem;
    text-align: right;
  }
}

.hero-info-name {
  display: block;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 1.63px;
  font-size: 23px;
  font-size: 1.4375rem;
  margin-top: 0.3rem;
}

@media (max-width: 991px) {
  .hero-info-name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.testimonial-group {
  margin-bottom: 2rem;
}

.testimonial-group .js-slide-item {
  padding-top: 3.5rem;
}

@media (min-width: 771px) {
  .testimonial-group .js-slide-item {
    padding-top: 5.5rem;
  }
}

.textimonial-content {
  max-width: 970px;
  margin: 0 auto;
}

.testimonials-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.testimonials-icon svg {
  font-size: 120px;
  font-size: 7.5rem;
  color: #fff2d0;
}

@media (min-width: 771px) {
  .testimonials-icon svg {
    font-size: 180px;
    font-size: 11.25rem;
  }
}

.testimonial-info {
  color: #0e1e2e;
  font-weight: 300;
  letter-spacing: 1.29px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 1.48px;
}

.product-item {
  margin-bottom: 1rem;
}

@media (min-width: 771px) {
  .product-item {
    margin-bottom: 2rem;
  }
}

.product-item-ext .product-content {
  display: block;
  padding: 1.5rem 1rem 0.8rem;
  border: 0;
}

@media (min-width: 576px) {
  .product-item-ext .product-content {
    padding: 1.8rem 1.8rem;
  }
}

@media (max-width: 770px) {
  .product-item-ext .product-content {
    -webkit-box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
  }
}

.product-item-ext .product-content:hover {
  -webkit-box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 51px rgba(0, 0, 0, 0.05);
}

.product-item-ext .product-title {
  letter-spacing: 0.1px;
}

.product-item-detail .product-icon {
  margin: 0;
  margin-right: 1.5rem;
}

.product-item-detail .product-image-block {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .product-item-detail .product-image-block {
    margin-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 770px) {
  .product-item-detail .product-image-block {
    margin-bottom: 2rem;
  }
}

.product-item-detail .product-btn-block {
  margin-top: 0;
  margin-bottom: 2rem;
}

@media (min-width: 772px) and (max-width: 992px) {
  .product-item-detail .product-btn {
    max-width: 100%;
  }
}

.product-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #ffffff;
  border-top: 3px solid transparent;
  -webkit-transition: -webkit-box-shadow 400ms ease-out, -webkit-transform 400ms ease-out;
  transition: -webkit-box-shadow 400ms ease-out, -webkit-transform 400ms ease-out;
  -o-transition: box-shadow 400ms ease-out, transform 400ms ease-out;
  transition: box-shadow 400ms ease-out, transform 400ms ease-out;
  transition: box-shadow 400ms ease-out, transform 400ms ease-out, -webkit-box-shadow 400ms ease-out, -webkit-transform 400ms ease-out;
  min-height: 270px;
  padding: 0.8rem 0.8rem;
}

@media (min-width: 576px) {
  .product-content {
    padding: 1.8rem 1.8rem;
  }
}

.product-content:hover {
  border-top-color: #0e1e2e;
  -webkit-box-shadow: 0 0 48px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 48px rgba(0, 0, 0, 0.08);
  -webkit-transform: scale(1.02, 1.02);
      -ms-transform: scale(1.02, 1.02);
          transform: scale(1.02, 1.02);
}

.product-image-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 280px;
  max-width: 280px;
  margin: 0 auto 2rem;
  position: relative;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}

.product-image-block img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
}

.product-check {
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  width: 40px;
  height: 40px;
}

.product-check.is-available {
  background-color: #5de15d;
}

.product-check.is-sold {
  background-color: #0e1e2e;
}

.product-check svg {
  fill: #ffffff;
}

.product-center {
  width: 100%;
}

.product-title {
  line-height: 1.2;
  letter-spacing: 1.53px;
}

.product-subtitle {
  display: block;
  margin-bottom: 1.5rem;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.product-icon {
  margin: 4rem 0;
  text-align: center;
}

.product-icon svg {
  font-size: 50px;
  font-size: 3.125rem;
}

.product-count {
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}

@media (min-width: 576px) {
  .product-count {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.product-link svg {
  position: relative;
  fill: #0e1e2e;
  font-size: 26px;
  font-size: 1.625rem;
  -webkit-transform: rotateZ(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotateZ(-90deg);
}

.product-btn-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -5px;
  margin-top: 2rem;
}

.product-btn-right,
.product-btn-left {
  padding: 0 5px;
}

.product-btn-left {
  width: calc(100% - 70px);
  max-width: calc(100% - 70px);
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(100% - 70px);
      -ms-flex: 0 0 calc(100% - 70px);
          flex: 0 0 calc(100% - 70px);
}

.product-btn-right {
  width: 70px;
  max-width: 70px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70px;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
}

.product-like {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fbf4ef;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.product-like:hover {
  background-color: #f1d8c6;
}

.product-like svg {
  fill: #0e1e2e;
}

.products-bg {
  position: absolute;
  top: 50%;
  right: -150px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.products-bg svg {
  fill: #f7f0eb;
  font-size: 609px;
  font-size: 38.0625rem;
  height: 609px;
}

.quote-block {
  padding: 1.2rem 1.2rem;
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #5de15d;
}

@media (max-width: 575px) {
  .quote-block {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .quote-block {
    position: absolute;
    top: -20px;
    left: calc(100% - 50px);
    width: 360px;
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 771px) {
  .quote-block {
    padding: 1.5rem 1.5rem;
    width: 250px;
    top: calc(100% - 80px);
    left: calc(100% - 120px);
  }
}

@media (min-width: 992px) {
  .quote-block {
    top: calc(100% - 170px);
    left: calc(100% - 50px);
    width: 250px;
  }
}

@media (min-width: 1200px) {
  .quote-block {
    width: 370px;
  }
}

.quote-text {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 1.25px;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 576px) {
  .quote-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 771px) {
  .quote-text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .quote-text {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.quote-sign {
  margin-bottom: 0.3rem;
  height: 45px;
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-size: 90px;
  font-size: 5.625rem;
  font-weight: 700;
}

.quote-author {
  margin-bottom: 0.3rem;
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.53px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .quote-author {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.quote-position {
  color: #ffffff;
  font-family: "Industry", Arial, sans-serif;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 1.53px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .quote-position {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.file-item {
  margin-bottom: 1rem;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background-color: #faf8f4;
  padding: 1.5rem 1.5rem;
}

@media (min-width: 576px) {
  .file-item {
    padding: 1.5rem 2rem;
  }
}

.file-content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.file-name {
  display: block;
  margin-bottom: 0.3rem;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.25px;
  font-size: 22px;
  font-size: 1.375rem;
}

.file-description {
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.14px;
}

.file-info {
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.05px;
}

@media (min-width: 771px) {
  .file-info {
    min-width: 130px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media (max-width: 770px) {
  .file-info {
    margin-top: 10px;
  }
}

.file-btn {
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (min-width: 772px) and (max-width: 992px) {
  .file-btn {
    min-width: auto;
  }
}

@media (min-width: 771px) {
  .file-btn {
    margin-left: 1rem;
  }
}

@media (max-width: 770px) {
  .file-btn {
    width: 100%;
  }
}

.filter-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 3rem -15px 5rem;
}

@media (min-width: 992px) {
  .filter-group {
    margin: -70px -15px 8rem;
  }
}

.filter-item {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
}

@media (min-width: 576px) {
  .filter-item {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .filter-item {
    width: 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

@media (max-width: 991px) {
  .filter-item {
    height: 70px;
    margin: 1rem 0;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .filter-item:nth-child(2n + 2):after {
    display: none;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .filter-item:nth-child(2n + 2):after {
    display: none;
  }
}

.filter-item:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}

@media (max-width: 575px) {
  .filter-item:after {
    bottom: -10px;
    top: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

.filter-item:last-child:after {
  display: none;
}

.filter-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.53px;
  font-size: 15px;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 0 2rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-label {
    padding: 0 1rem;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.filter-label-ext {
  padding: 0 1.5rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-label-ext {
    padding: 0 1rem;
  }
}

.filter-input {
  height: 70px;
  border: 0;
  background-color: transparent;
  padding: 25px 1rem 0.2rem 1.5rem;
  color: #0e1e2e;
  font-family: "Industry", Arial, sans-serif;
  line-height: 1.2;
  font-style: italic;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .filter-input {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 25px 1rem 0.2rem 1rem;
  }
}

.filter-left-panel,
.filter-right-panel {
  padding: 0 15px;
}

@media (max-width: 991px) {
  .filter-left-panel,
  .filter-right-panel {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (min-width: 992px) {
  .filter-left-panel {
    width: calc(100% - 190px);
    max-width: calc(100% - 190px);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 190px);
        -ms-flex: 0 0 calc(100% - 190px);
            flex: 0 0 calc(100% - 190px);
  }
}

@media (max-width: 991px) {
  .filter-left-panel {
    margin-bottom: 0.5rem;
  }
}

.filter-left-panel .filter-content {
  background-color: #ffffff;
}

.filter-right-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .filter-right-panel {
    width: 190px;
    max-width: 190px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 190px;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
  }
}

.filter-right-panel svg {
  fill: #ffffff;
  font-size: 36px;
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  .filter-right-panel svg {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.filter-right-panel .filter-content {
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 30px rgba(0, 0, 0, 0.11);
  background-color: #0e1e2e;
  text-align: center;
}

@media (min-width: 992px) {
  .filter-right-panel .filter-content {
    border-top-color: #ba3127;
  }
}

@media (max-width: 991px) {
  .filter-right-panel .filter-content {
    border-top: 0;
    border-bottom: 4px solid #ba3127;
  }
}

.filter-right-panel .filter-item {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 100%;
  background-color: transparent;
}

@media (max-width: 991px) {
  .filter-right-panel .filter-item {
    height: 80px;
    margin: 0;
  }
}

.filter-right-panel .filter-item:hover {
  background-color: #ba3127;
}

.filter-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: 0 4px 27px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 27px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #0e1e2e;
}

@media (min-width: 992px) {
  .filter-content {
    height: 140px;
  }
}

.stats-item {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 1.5rem 15px;
}

.stats-item:last-child:after {
  display: none;
}

@media (min-width: 771px) {
  .stats-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #e4e5f5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 770px) {
  .stats-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #e4e5f5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .stats-item:nth-child(2n + 2):after {
    display: none;
  }
}

.stats-item .headline-divider {
  margin-top: 0;
  margin-bottom: 0;
}

.stats-number,
.stats-text {
  display: block;
  color: #0e1e2e;
  font-weight: 400;
  line-height: 1;
}

.stats-number {
  margin-bottom: 0;
  position: relative;
  line-height: 1;
  font-weight: 300;
  font-size: 50px;
  font-size: 3.125rem;
}

@media (min-width: 771px) {
  .stats-number {
    font-size: 65px;
    font-size: 4.0625rem;
  }
}

.stats-text {
  color: #2e2e36;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 1.05px;
  font-weight: 500;
  line-height: 1.4;
}

.offer-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 73px;
  margin-bottom: 3rem;
}

.offer-icon-small svg {
  font-size: 73px;
  font-size: 4.5625rem;
}

.offer-icon-big svg {
  font-size: 110px;
  font-size: 6.875rem;
}

@media (min-width: 992px) {
  .offer-group {
    margin-top: -80px;
  }
}

.offer-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-filter: drop-shadow(0 0 33px rgba(0, 0, 0, 0.11));
          filter: drop-shadow(0 0 33px rgba(0, 0, 0, 0.11));
}

@media (min-width: 992px) {
  .offer-item {
    height: 350px;
  }
}

.offer-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 1rem;
  border-top: 2px solid #ffffff;
  background-color: #ffffff;
  -webkit-clip-path: polygon(100% 0, 100% 92%, 92% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 92%, 92% 100%, 0 100%, 0 0);
  -webkit-transition: height 250ms ease-out;
  -o-transition: height 250ms ease-out;
  transition: height 250ms ease-out;
}

@media (min-width: 992px) {
  .offer-content {
    padding: 1rem 1rem;
    height: 300px;
  }
}

.offer-content:hover {
  border-color: #ffbf00;
}

@media (min-width: 992px) {
  .offer-content:hover {
    height: 350px;
  }
}

.offer-content .btn-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

@media (min-width: 771px) {
  .offer-content .btn-arrow {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.portfolio-filter-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 575px) {
  .portfolio-filter-list {
    margin: 0 -20px;
  }
}

.portfolio-filter-list-item {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 5px 15px;
  padding: 0.4em 0.3em;
  color: #0e1e2e;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.20px;
  height: 45px;
}

@media (min-width: 370px) {
  .portfolio-filter-list-item {
    margin: 0 5px 15px;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.20px;
  }
}

@media (min-width: 771px) {
  .portfolio-filter-list-item {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 20px 15px;
    letter-spacing: 0.41px;
  }
}

.portfolio-filter-list-item.is-active {
  color: #ffbf00;
}

.portfolio-filter-list-item.is-active:after {
  opacity: 1;
}

.portfolio-filter-list-item:after {
  content: '';
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  opacity: 0;
  display: block;
  display: inline-block;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 0 4.5px 5px 4.5px;
  border-color: transparent transparent #ffbf00 transparent;
}

.portfolio-group {
  border-top: 2px solid #ffbf00;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-content {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

@media (min-width: 576px) {
  .portfolio-content {
    min-height: 360px;
  }
}

@media (min-width: 771px) {
  .portfolio-content {
    min-height: 350px;
  }
}

.portfolio-content:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(14, 30, 46, 0.85);
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}

.portfolio-content:focus:after, .portfolio-content:hover:after {
  opacity: 1;
}

.portfolio-content:focus .portfolio-info-block, .portfolio-content:hover .portfolio-info-block {
  opacity: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.portfolio-content:focus p, .portfolio-content:hover p {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.portfolio-content:focus .btn-arrow, .portfolio-content:hover .btn-arrow {
  opacity: 1;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

.portfolio-info-block {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em 1.5em 1em;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
  text-align: center;
}

.portfolio-info-block p {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.portfolio-info-block .btn-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0;
}

@media (min-width: 771px) {
  .portfolio-info-block .btn-arrow {
    bottom: 2.5rem;
    right: 2.5rem;
  }
}

.project-bg {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.project-bg svg {
  font-size: 100vw;
  fill: #ffbf00;
  opacity: 0.04;
}

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