/* raleway-regular - latin_cyrillic */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/raleway-v18-latin_cyrillic-regular.eot');

    /* IE9 Compat Modes */
    src: local(''),
       url('../fonts/raleway-v18-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v18-latin_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v18-latin_cyrillic-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v18-latin_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v18-latin_cyrillic-regular.svg#Raleway') format('svg');

    /* Legacy iOS */
}

/* raleway-700 - latin_cyrillic */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/raleway-v18-latin_cyrillic-700.eot');

    /* IE9 Compat Modes */
    src: local(''),
       url('../fonts/raleway-v18-latin_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v18-latin_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v18-latin_cyrillic-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v18-latin_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v18-latin_cyrillic-700.svg#Raleway') format('svg');

    /* Legacy iOS */
}

/* montserrat-regular - latin_cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v15-latin_cyrillic-regular.eot');

    /* IE9 Compat Modes */
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
       url('../fonts/montserrat-v15-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin_cyrillic-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin_cyrillic-regular.svg#Montserrat') format('svg');

    /* Legacy iOS */
}

/* montserrat-700 - latin_cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v15-latin_cyrillic-700.eot');

    /* IE9 Compat Modes */
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
       url('../fonts/montserrat-v15-latin_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin_cyrillic-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin_cyrillic-700.svg#Montserrat') format('svg');

    /* Legacy iOS */
}

html {
    color: #000;
    font-family: Raleway;
    font-style: normal;
    font-size: 1em;
    line-height: 1.4;
}

/* * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design. */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/* * A better looking default horizontal rule */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea {
    resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/* * Hide visually and from screen readers */
.hidden,
[hidden] {
    display: none !important;
}

@media (min-width: 640px) {
    .hidden\@s {
        display: none!important;
    }
}

@media (min-width: 960px) {
    .hidden\@m {
        display: none!important;
    }
}

@media (min-width: 1200px) {
    .hidden\@l {
        display: none!important;
    }
}

@media (min-width: 1600px) {
    .hidden\@xl {
        display: none!important;
    }
}

@media (max-width: 639px) {
    .visible\@s {
        display: none!important;
    }
}

@media (max-width: 959px) {
    .visible\@m {
        display: none!important;
    }
}

@media (max-width: 1199px) {
    .visible\@l {
        display: none!important;
    }
}

@media (max-width: 1599px) {
    .visible\@xl {
        display: none!important;
    }
}

.sticky,
[sticky] {
    position: fixed;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
}

.flex-middle {
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-stretch {
    align-items: stretch;
}

.flex-auto {
    flex: auto;
}

.flex-column {
  flex-direction: column;
}


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

.text-right {
  text-align: right;
}

.text-left {
  text-align-last: left;
}


/* * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;

    /* 1 */
}

/* * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/* * Hide visually and from screen readers, but maintain layout */
.invisible {
    visibility: hidden;
}

/* * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements. */
.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
    *,
    
  *::before,
    
  *::after {
        background: #fff !important;
        color: #000 !important;

        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    
  a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /* * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol */
    a[href^="#"]::after,
    
  a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    
  blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /* * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables */
    thead {
        display: table-header-group;
    }

    tr,
    
  img {
        page-break-inside: avoid;
    }

    p,
    
  h2,
    
  h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    
  h3 {
        page-break-after: avoid;
    }
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 1021px) {
    .container {
        max-width: 1020px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}

@media (min-width: 1101px) {
    .container {
        max-width: 1100px;
    }
}

.margin {
    margin-bottom: 30px;
}

.margin-lg {
    margin-bottom: 55px;
}

.margin-xl {
    margin-bottom: 100px;
}

.margin-sm {
    margin-bottom: 15px;
}

.margin-top {
    margin-top: 20px;
}

.margin-large-top {
    margin-top: 40px;
}

.margin-xlarge-top {
    margin-top: 70px;
}

.margin-auto-top {
    margin-top: auto;
}

@media (min-width: 900px) {
    .margin {
        margin-bottom: 50px;
    }

    .margin-lg {
        margin-bottom: 100px;
    }

    .margin-xl {
        margin-bottom: 150px;
    }

    .margin-sm {
        margin-bottom: 30px;
    }

    .uk-margin-large-top {
        margin-top: 70px;
    }
}

.margin-auto {
    margin-left: auto;
    margin-right: auto
}

/* padding */
.padding {
    padding: 30px
}

@media (min-width: 1200px) {
    .padding {
        padding:40px
    }
}

.padding-small {
    padding: 15px
}

.padding-large {
    padding: 30px
}

@media (min-width: 1200px) {
    .padding-large {
        padding:70px
    }
}

.padding-remove {
    padding: 0!important
}

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

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

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

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

.padding-remove-vertical {
    padding-top: 0!important;
    padding-bottom: 0!important
}

.padding-remove-horizontal {
    padding-left: 0!important;
    padding-right: 0!important
}


/* uk-width */
[class*=uk-width] {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%
}

.uk-width-1-2 {
    width: 50%
}

.uk-width-1-3 {
    width: calc(100% * 1 / 3.001)
}

.uk-width-2-3 {
    width: calc(100% * 2 / 3.001)
}

.uk-width-1-4 {
    width: 25%
}

.uk-width-3-4 {
    width: 75%
}

.uk-width-1-5 {
    width: 20%
}

.uk-width-2-5 {
    width: 40%
}

.uk-width-3-5 {
    width: 60%
}

.uk-width-4-5 {
    width: 80%
}

.uk-width-1-6 {
    width: calc(100% * 1 / 6.001)
}

.uk-width-5-6 {
    width: calc(100% * 5 / 6.001)
}

.uk-width-small {
    width: 150px
}

.uk-width-medium {
    width: 300px
}

.uk-width-large {
    width: 450px
}

.uk-width-xlarge {
    width: 600px
}

.uk-width-2xlarge {
    width: 750px
}

.uk-width-auto {
    width: auto
}

.uk-width-expand {
    flex: 1;
    min-width: 1px
}

@media (min-width: 640px) {
    .uk-width-1-1\@s {
        width:100%
    }

    .uk-width-1-2\@s {
        width: 50%
    }

    .uk-width-1-3\@s {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@s {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@s {
        width: 25%
    }

    .uk-width-3-4\@s {
        width: 75%
    }

    .uk-width-1-5\@s {
        width: 20%
    }

    .uk-width-2-5\@s {
        width: 40%
    }

    .uk-width-3-5\@s {
        width: 60%
    }

    .uk-width-4-5\@s {
        width: 80%
    }

    .uk-width-1-6\@s {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@s {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@s {
        width: 150px
    }

    .uk-width-medium\@s {
        width: 300px
    }

    .uk-width-large\@s {
        width: 450px
    }

    .uk-width-xlarge\@s {
        width: 600px
    }

    .uk-width-2xlarge\@s {
        width: 750px
    }

    .uk-width-auto\@s {
        width: auto
    }

    .uk-width-expand\@s {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width: 960px) {
    .uk-width-1-1\@m {
        width:100%
    }

    .uk-width-1-2\@m {
        width: 50%
    }

    .uk-width-1-3\@m {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@m {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@m {
        width: 25%
    }

    .uk-width-3-4\@m {
        width: 75%
    }

    .uk-width-1-5\@m {
        width: 20%
    }

    .uk-width-2-5\@m {
        width: 40%
    }

    .uk-width-3-5\@m {
        width: 60%
    }

    .uk-width-4-5\@m {
        width: 80%
    }

    .uk-width-1-6\@m {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@m {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@m {
        width: 150px
    }

    .uk-width-medium\@m {
        width: 300px
    }

    .uk-width-large\@m {
        width: 450px
    }

    .uk-width-xlarge\@m {
        width: 600px
    }

    .uk-width-2xlarge\@m {
        width: 750px
    }

    .uk-width-auto\@m {
        width: auto
    }

    .uk-width-expand\@m {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width: 1200px) {
    .uk-width-1-1\@l {
        width:100%
    }

    .uk-width-1-2\@l {
        width: 50%
    }

    .uk-width-1-3\@l {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@l {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@l {
        width: 25%
    }

    .uk-width-3-4\@l {
        width: 75%
    }

    .uk-width-1-5\@l {
        width: 20%
    }

    .uk-width-2-5\@l {
        width: 40%
    }

    .uk-width-3-5\@l {
        width: 60%
    }

    .uk-width-4-5\@l {
        width: 80%
    }

    .uk-width-1-6\@l {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@l {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@l {
        width: 150px
    }

    .uk-width-medium\@l {
        width: 300px
    }

    .uk-width-large\@l {
        width: 450px
    }

    .uk-width-xlarge\@l {
        width: 600px
    }

    .uk-width-2xlarge\@l {
        width: 750px
    }

    .uk-width-auto\@l {
        width: auto
    }

    .uk-width-expand\@l {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width: 1600px) {
    .uk-width-1-1\@xl {
        width:100%
    }

    .uk-width-1-2\@xl {
        width: 50%
    }

    .uk-width-1-3\@xl {
        width: calc(100% * 1 / 3.001)
    }

    .uk-width-2-3\@xl {
        width: calc(100% * 2 / 3.001)
    }

    .uk-width-1-4\@xl {
        width: 25%
    }

    .uk-width-3-4\@xl {
        width: 75%
    }

    .uk-width-1-5\@xl {
        width: 20%
    }

    .uk-width-2-5\@xl {
        width: 40%
    }

    .uk-width-3-5\@xl {
        width: 60%
    }

    .uk-width-4-5\@xl {
        width: 80%
    }

    .uk-width-1-6\@xl {
        width: calc(100% * 1 / 6.001)
    }

    .uk-width-5-6\@xl {
        width: calc(100% * 5 / 6.001)
    }

    .uk-width-small\@xl {
        width: 150px
    }

    .uk-width-medium\@xl {
        width: 300px
    }

    .uk-width-large\@xl {
        width: 450px
    }

    .uk-width-xlarge\@xl {
        width: 600px
    }

    .uk-width-2xlarge\@xl {
        width: 750px
    }

    .uk-width-auto\@xl {
        width: auto
    }

    .uk-width-expand\@xl {
        flex: 1;
        min-width: 1px
    }
}

.alert {
    padding: 15px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    border-radius: 0;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #5cb85c;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


/* * Main styles */
.root {
    position: relative;
    width: 100%;
    background-color: rgb(255,255,255);
    overflow: hidden;
}

.site-header {
    width: 100%;
    height: 80px;
    background: rgba(31,32,35,1);
    position: relative;
    transition: height 0.25s;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 99;
}

.mob-navbar-left {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 50px;
  display: flex;
  align-items: center;
}

.mob-navbar-left .mob-navbar-toggle {
  color: rgb(46,168,54);
  font-size: 26px;
}

@media (min-width: 900px) {
    .site-header {
        height: 90px;
    }

    .pattern_geometry_yellow {
        height: 100px;
    }

    .site-header.sticky {
      height: 60px;
    }
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.site-header__inner .view-ctalog-btn {
  background: rgb(46,168,54);
  white-space: nowrap;
  text-align: left;
  font-family: Raleway;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 10px;
  border: 2px solid  rgb(46,168,54);
  cursor: pointer;

  position: absolute;
  right: 0;
  bottom: -38px;
  z-index: 1;

  transition: all 0.3s;
}

.site-header__inner .view-ctalog-btn:hover {
  border-color: rgb(46,168,54);
  background: rgba(31,32,35,1);
  color: rgb(46,168,54);
}

.header-block {
    position: relative;
    display: flex;
    z-index: 2;
}

.site-logo-top {
    justify-content: center;
}

.site-logo-top img {
    width: 170px;
    transition: all 0.3s;
}

.site-header.sticky .site-logo-top img {
  width: 120px;
}

.site-header .site-logo-top {
    width: max-content;
}

.navigation-top {
    justify-content: flex-end;
    align-items: center;
    margin: 0 -25px;
}

.navigation-top a {
    text-decoration: none;
    font-size: 14px;
    margin: 0 20px;
    position: relative;
}

.navigation-top a,
.navigation-top a:hover {
    color: #fff;
    text-decoration: none;
}

.navigation-top__link.active {
    font-weight: bold;
}

.navigation-top .navigation-top__link::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.18s ease-out;
}

.navigation-top .navigation-top__link:hover::after {
    width: 100%;
}

.main-page-slider {
    position: relative;
}

@media (min-width: 440px) {
    .main-page-slider .slick-slide {
        height: auto;
        /*min-height: calc(100vh - 250px);
        max-height: calc(100vh - 130px);*/
    }

    .main-page-slider .slick-slide img {
        object-fit: cover;
        max-width: none;
        min-width: 100%;
    }
}

@media (max-width: 1166px) and (min-height: 900px) {
    .main-page-slider .slick-slide {
        min-height: 400px;
    }
}

.site-header .social-links {
  outline: none;
}

.site-header .social-links__item {
    margin: 0;
}

.site-header .social-links__item a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
    transition: background-color 0.3s, font-size 0.2s;
}

.site-header.sticky .social-links__item a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}

.site-header .social-links__item .icon {
    fill: none;
    stroke-width: 2px;
}

.site-header .social-links__item a:hover {
    color: rgba(31,32,35,1);
    background-color: #fff;
}

.main-page-slider .slide-description {
    position: absolute;
    left: 110px;
    bottom: 90px;
    max-width: 500px;
    box-sizing: border-box;
}

@media (max-width: 800px) {
  .main-page-slider .slick-slide {
      max-height: calc(100vh - 80px);
  }

  .main-page-slider .slide-description {
      width: 100%;
      left: 0;
      bottom: 0;
      padding: 0 10px;
  }
}

.main-page-slider .slide-description-text {
    line-height: 29px;
    text-align: left;
    font-family: Raleway;
    font-style: normal;
    font-weight: lighter;
    font-size: 15px;
    color: #fff;
    margin-top: 15px;
    background: #000;
    padding: 16px 15px 30px;
    position: relative;
    opacity: 0;
    transform: skew(-20deg, 0) translateX(-100%);
    transition: transform 0.3s, opacity 0.2s;
    transition-delay: 0.5s;
    z-index: -1;
}

.main-page-slider .slide-description-text h2 {
    color: rgb(58 170 53);
    margin-top: 0;
    margin-bottom: 15px;
}

.main-page-slider .slick-current .slide-description-title,
.main-page-slider .slick-current .slide-description-text {
    transform: none;
    opacity: 1;
    z-index: 1;
}

.main-page-slider .slick-slide {
    position: relative;
}

.banner-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: bold;
    font-size: 50px;
    line-height: 40px;
}

[data-slider] .slick-prev.v1,
[data-slider] .slick-next.v1 {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.6;
    background: none;
    cursor: pointer;
}

[data-slider] .slick-next.v1 {
    left: auto;
    right: 50px;
}

[data-slider] .slick-arrow.v1 {
    color: #fff;
    font-size: 70px;
    transition: all 0.25s;
    border: none;
    box-shadow: none;
}

[data-slider] .slick-prev.v2,
[data-slider] .slick-next.v2 {
    top: -150px;
    right: 120px;
    position: absolute;
    width: 70px;
    height: 70px;
    font-size: 70px;
    color: rgb(27,43,58);
    background: none;
    padding: 0;
    outline: none;
    transition: all .3s ease;
}

[data-slider] .slick-prev.v2 {
    right: 210px;
}

[data-slider] .slick-arrow.v2 .icon {
    fill: none;
    stroke-width: 1;
}

[data-slider] .slick-arrow.v2[aria-disabled="true"],
[data-slider] .slick-arrow.v2[aria-disabled="true"]:hover {
    opacity: 0.5;
    color: rgb(27,43,58);
}

[data-slider] .slick-arrow:hover {
    opacity: 0.9;
    color: rgb(58 170 53);
}

[data-slider] .slick-slide:focus,
[data-slider] .slick-arrow:focus {
    outline: none;
}

@media (max-width: 800px) {
    [data-slider] .slick-prev.v2,
    
  [data-slider] .slick-next.v2 {
        width: 54px;
        height: 54px;
        top: -80px;
    }

    [data-slider] .slick-prev.v2 {
        right: 130px;
    }

    [data-slider] .slick-next.v2 {
        right: 50px;
    }
}

.block-heading {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.block-heading h2 {
    font-size: 24px;
    font-weight: bold;
}

@media (min-width: 900px) {
    .block-heading {
        margin-bottom: 50px;
    }
}

.btn-register-1 {
    display: flex;
    align-items: center;
    width: max-content;
    border-radius: 15px;
    border: 2px solid #000;
    font-size: 18px;
    font-weight: bold;
    background: none;
    padding: 10px 25px;
    text-align-last: left;
    cursor: pointer;
    transition: all 0.6s;
}

@media (min-width: 2500px) {
    .btn-register-1 {
        padding: 30px;
    }
}

.btn-register-1 span {
    text-align: left;
}

.btn-register-1 .icon {
    /* margin-left: auto; */
    font-size: 30px;
    min-width: 1em;
    margin-right: 15px;
}

.btn-register-1 .icon-play {
    fill: none;
    stroke-width: 2px;
}

.btn-register-1:hover {
    color: rgb(46,168,54);
    background: #000;
}

.btn-register-1.btn-inline {
    width: max-content;
}

.land-block-1 {
    background: rgb(46,168,54);
    position: relative;
    margin-top: -30px;
}

.land-block-1 .block-text h2 {
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 38px;
}

.img-offcanvas-vert {
    position: relative;
}

@media (min-width: 960px) {
    .land-block-1__wrap {
        display: flex;
    }

    .img-offcanvas-vert {
        margin-top: -30px;
        margin-bottom: -30px;
    }
}

@media (max-width: 959px) {
    .land-block-1__wrap {
        position: relative;
        padding-top: 200px;
    }

    .img-offcanvas-vert {
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        max-height: max-content;
        width: 500px;
    }

    .img-offcanvas-vert::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.63) 47.1311%, rgba(0, 0, 0, 0) 100%);
    }

    .img-offcanvas-vert img {
        width: 100%;
    }

    .land-block-1 .block-text {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 500px) {
  .img-offcanvas-vert {
    width: 100%;
  }
}

.img-offcanvas-vert img {
    object-fit: contain;
}

.block-text {
  font-size: 16px;
  line-height: 25px;  
  padding: 30px 25px;
}

@media (min-width: 750px) {
  .block-text {
    padding: 30px 50px;
  }
}

.block-text p {
  margin-top: 0;
  margin-bottom: 10px;
}

.land-block-1 .block-text {
    color: #fff;
}

.land-block-1 .block-text .btn-register-1 {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 749px) {
  .land-block-1 .block-text .btn-register-1 {
    font-size: 14px;
  }
  .land-block-1 .btn-register-1 .icon-play {
    font-size: 25px;
  }
}

.block-img {
    display: block;
    margin-bottom: 50px;
}

.block-img__image {
    width: 100%;
}

.block-img__image > a,
.block-img__description h2 > a {
  color: inherit;
  text-decoration: none;
}

.block-img__description h2 > a:hover {
  text-decoration: underline;
}

.block-img__image > a {
  display: block;
  background: #333;
  position: relative;
  overflow: hidden;
}

.block-img__image > a img {
  transition: transform 0.5s;
}

.block-img__image > a:hover img {
  transform: scale3d(1.11, 1.11, 1) rotate(4deg);
}

.block-img__image > a::before {
  position: absolute;
  display: block;
  content: '';
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 1;
  transition: background 0.4s;
}

.block-img__image > a:hover::before {
  background: rgba(0,0,0,0.5);
}

.block-img__description {
    width: 100%;
    margin-top: 20px;
    padding: 15px 20px 35px;
    color: #fff;
    background: rgb(46,168,54);
}

.block-img__description h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 15px;
}

.block-img__image img {
    width: 100%;
    height: auto;
}

@media (max-width: 749px) {
  .block-img__description {
    box-sizing: border-box;
  }
}

@media (min-width: 750px) {
    .block-img {
        display: flex;
        align-items: flex-end;
        margin-bottom: 100px;
    }

    .block-img__image {
        width: 55%;
    }

    .block-img__description {
        width: 45%;
        margin-top: 0;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .block-img-left .block-img__description {
        margin-left: -5%;
    }

    .block-img-right .block-img__image {
        order: 2;
    }

    .block-img-right .block-img__description {
        margin-right: -5%;
        order: 1;
    }
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.product-list .product-item {
    width: calc(1 / 2 * 100%);
    box-sizing: border-box;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 35px;
}

.product-item__img {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.product-item__img img {
    max-width: 100%;
    max-height: 160px;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.5s;
}

.product-item__img:hover img {
  transform: scale3d(1.1, 1.1, 1);
}

.product-item__title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.product-item__title a {
    color: inherit;
    text-decoration: none;
}

.product-item__title a:hover {
  text-decoration: underline;
}


@media (min-width: 750px) {
    .product-list .product-item {
        width: calc(1 / 5 * 100%);
    }

    .product-item__title {
      font-size: 18px;
    }
}


.land-block-4 {
  position: relative;
  background: url("../images/10-facts-bg.jpg");
  background-size: cover;
}

.block-heading-offset {
  position: absolute;
  top: -60px;
  left: 76px;
  width: 280px;
  color: #fff;
  padding: 18px 18px 20px;
  background: rgb(46,168,54);
  box-sizing: border-box;
}

.block-heading-offset h2 {
  font-size: 22px;
  line-height: 20px;
  font-weight: normal;
  margin: 0;
}

.block-heading-offset .subheader {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
}

@media (min-width: 750px) {
  .block-heading-offset {
    top: -80px;
    padding: 20px 20px 40px;
  }
  .block-heading-offset .subheader {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .block-heading-offset h2 {
    font-size: 33px;
    line-height: 40px;
  }
}

.facts-container {
    width: 100%;
    height: 100%;
    padding: 50px 15px 0;
    box-sizing: border-box;
}
  
.facts-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
}
.facts-grid__col {
    display: -webkit-flex;
  display: flex;
  justify-content: center;
  width: 25%;
  align-items: flex-end;
  margin-bottom: 70px;
}

.facts-item {
  font-family: 'Raleway', sans-serif; 
  /*width: 400px;*/
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  margin-right: 50px;
}

.facts-item img {
  display: inline-block;
  vertical-align: middle;
}
.facts-item__title {
  font-weight: 600;
  font-size: 54px;
  line-height: 54px;
  color: #3aaa35;
  text-transform: uppercase;
}
.facts-item__text {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.4;
}
.facts-item__divider {
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin: 20px 0;
}
.facts-item--bordered {
    width: 400px;
  border: 4px solid rgba(255,255,255,0.75);
}

.facts-item .title-v1 {
  font-size: 22px; 
  font-weight: 700;
}
.facts-item .subtitle-v1 {
  font-size: 14px;
  font-weight: 700;
}
.facts-item .title-v2 {
  font-size: 34px;
  font-weight: 700;
}
.facts-item .subtitle-v2 {
  font-size: 20px;
  font-weight: 700
}
.facts-item .subtitle-v3 {
  font-size: 20px;
}
@media (max-width:749px) {
    .facts-grid__col {
      width: 50%;
      margin-bottom: 50px;
    }

    .facts-item__title {
      font-size: 40px;
      line-height: 1;
    }

    .facts-grid__col .facts-item {
      width: 100% !important;
      padding: 2px;
      margin-right: 25px;
    }
    .facts-item__img img {
      max-width: 100%;
    }

    .facts-item--bordered {
      border-width: 2px;
      padding: 4px;
    }

    .facts-item .title-v1 {
      font-size: 20px;
    }
    .facts-item .title-v2 {
      font-size: 28px;
    }
    .facts-item .subtitle-v2,
    .facts-item .subtitle-v3 {
      font-size: 18px;
    }
}
@media (min-width: 750px) {
  .facts-container {
    padding: 80px 60px 0;
  }
}
@media (min-width: 1900px) {
  .facts-container {
    padding: 80px 60px 0;
  }
}


/* land-block-5 */

.block-text-heading {
  margin-bottom: 30px;
}
@media (min-width: 750px) {
  .block-text-heading {
    margin-bottom: 50px;
  }
}

.block-text-heading .subheader {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.block-text-heading h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 33px;
  color: rgb(46,168,54);
  text-transform: uppercase;
  line-height: 40px;
}

.land-block-5 .block-text {
  padding: 20px 15px;
}

.land-block-5 .block-text img {
  max-width: 100%;
}

.land-block-5 .block-text p i {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: rgb(46,168,54);
}

.land-block-5 .container img {
  max-width: 100%;
}

/* land-block-6 */

.land-block-6 {
  overflow: hidden;
  position: relative;
}

.land-block-6 img {
  width: 100%;
}

.land-block-6 .slide-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: max-content;
  display: flex;
  align-items: center;
}

.slide-caption .slide-caption__text {
  font-size: 38px;
  line-height: 1.8;
  text-transform: uppercase;
  color: #fff;
  margin-left: 100%;
}

@media (max-width: 900px) {
  .slide-caption .slide-caption__text{
    font-size: 28px;
    margin-left: 30%;
  }
}

@media (max-width: 500px) {
  .slide-caption .slide-caption__text{
    font-size: 22px;
    line-height: 1.4;
    margin-left: 10%;
  }
}


/* Contacts */
.block-contacts * {
  box-sizing: border-box;
}

.contact-form .input-container {
  position: relative;
  padding: 0;
}

.contact-form .input-wrapper {
  padding: 30px;
}

.contact-form .input-container .form-input {
  outline: none;
  position: relative;
  background: none;
  width: 100%;
  height: 60px;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 20px;
  padding: 35px 15px;
  text-transform: none;
}

.contact-form .input-container .form-input:focus {
  background: rgb(46,168,54);
  border-color: rgb(46,168,54);
}

.contact-form .input-container .form-textarea {
  height: 100%;
  white-space: nowrap;
}

.flex-stretch .input-container {
  height: 100%;
}

.contact-form .form-checkbox {
  width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 15px;
}

.contact-form .input-container label {
  position: absolute;
  top: 6px;
  left: 10px;
  color: #000;
  font-size: 20px;
  transform: translate(20px, 24px) scale(1);
  transform-origin: 0 0;
  transition: 0.2s ease;
}

.contact-form .input-container .form-input.form-textarea + label {
  transform: translate(20px, 150px) scale(1);
}

@media (max-width: 600px) {
  .contact-form .input-wrapper {
    padding: 15px 0;
  }
  .contact-form .input-container label {
    font-size: 14px;
  }
  .contact-form .submit-wrapper {
    padding: 0 40px;
  }
  .contact-form .input-container .form-input {
    padding: 15px;
  }
  .contact-form .input-container label {
    transform: translate(15px, 15px) scale(1);
  }
  .contact-form .input-container .form-input.form-textarea + label {
    transform: translate(15px, 50px) scale(1);
  }

  .contact-form .label-agreement {
    font-size: 12px;
    line-height: 1;
  }
}

@media (min-width: 640px) and (max-width: 840px) {
  .contact-form .input-container label {
    font-size: 16px;
  }
  .contact-form .input-container .form-input.form-textarea + label {
    transform: translate(15px, 150px) scale(1);
  }
}

.contact-form .input-container .form-input:focus + label,
.contact-form .input-container .form-input:valid + label {
  color: #fff;
  transform: translate(0, 0) scale(0.6);
}

.contact-form .btn-register-1 {
  width: 100%;
  background: rgb(46,168,54);
  border-color: rgb(46,168,54);
  text-align: center;
  justify-content: center;
  font-family: Montserrat;
  text-transform: uppercase;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  padding: 25px;
}

.contact-form .btn-register-1:hover {
  background: #000;
  border-color: #000;
}


.site-footer {
  background: rgb(31,32,35);
  color: #fff;
}

.footer-logo img  {
  width: 170px;
}

.footer-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 600px) {
  .footer-blocks .f-block {
    text-align: center;
  }
}

.footer-blocks .f-block {
  padding: 15px;
}

.footer-blocks .f-block p {
  margin: 0 0 15px;
}

.footer-blocks .f-block a {
  color: #fff;
  text-decoration: none;
}

.footer-blocks .f-block a:hover {
  text-decoration: underline;
}

@media (min-width: 750px) {
  .footer-blocks .f-block {
    padding: 30px;
  }
}

.footer-blocks .f-block:first-child {
  padding-left: 0;
}
.footer-blocks .f-block:last-child {
  padding-right: 0;
}

.footer-contacts strong {
  color: rgb(46,168,54);
}

/* Offcanvas */
.offcanvas {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.offcanvas-overlay {
    width: 100vw;
    touch-action: none;
}

.offcanvas-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -300px;
    box-sizing: border-box;
    width: 300px;
    padding: 20px 25px;
    background: #222;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: left .3s ease-out;
}

.icon-close {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
    transition: .1s ease-in-out;
    transition-property: color,opacity;
}

.offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 20px;
    right: 20px;
    padding: 5px;
    color: #fff;
}

.is-open > .offcanvas-bar {
    left: 0;
}

.mob-nav {
    padding: 0;
    list-style: none;
}

.offcanvas-bar .mob-nav > li > a {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  padding: 8px 0;
  text-decoration: none;
}

.offcanvas-bar .view-ctalog-btn {
    background: rgb(46,168,54);
    white-space: nowrap;
    text-align: left;
    font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.offcanvas-bar .social-links__item {
  margin: 0 20px;
}

.offcanvas-bar .social-links__item a {
  color: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  text-align: center;
  font-size: 18px;
  line-height: 36px;
}

.offcanvas-bar .social-links__item .icon {
  fill: none;
  stroke-width: 2px;
}