/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;
    --font-18: 18px;

    /** SPECIFIC **/
    /*--color-accent: blue;*/
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
}
.slider-line-top,
.slider-line-bottom{
    z-index: 20;
}
.slick-slider .slick-track, .slick-slider .slick-list{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    z-index: 1;
}
/**
 * BASIC
 */

em {
    padding-right: 2px;
}

h1 {
    font-weight: bold;
    font-size: var(--font-30);
    text-align: center;
    color: #3e3d40;
    position: relative;
    overflow: visible;
    margin-bottom: 72px;
}


h1:before {
    content: '';
    background: url(../images/title_bg.png) no-repeat top center;
    width: 64px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -42px;
}

h1:after {
    content: '';
    width: 69px;
    height: 1px;
    background: #dcd8d3;
    display: block;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

h2 {
    font-weight: bold;
    font-size: var(--font-30);
    text-align: center;
    color: #3e3d40;
    position: relative;
    overflow: visible;
    margin-bottom: 46px;
}


h2:before {
    content: '';
    background: url(../images/title_bg.png) no-repeat top center;
    width: 64px;
    height: 30px;
    display: block;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -42px;
}

h2:after {
    content: '';
    width: 69px;
    height: 1px;
    background: #dcd8d3;
    display: block;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #80af1b;
    text-decoration: none;
}


.text a:hover{ text-decoration:underline; color: #80af1b;}

a, button {
    outline: none
}

a:hover, a:focus {
    color: #6dff33;
    text-decoration: none;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.vcenter {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}


/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1670px;
    width: 100%;
}


/**
 * TEXT
 */

.text {
    overflow: visible;

}

.txt, .article-text {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #707173;
    margin-bottom: 30px;
}

.article-text {
    margin-bottom: 65px;
}


/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li {
    left: 34px;
    position: relative;
    padding-right: 34px;
}

.text ul > li::before {
    content: " ";
    display: inline-block;
    left: -15px;
    margin-left: -6px;
    font-family: sans-serif;
    position: relative;
    width: 6px;
    height: 6px;
    background: #87b428;
    top: -3px;
    border-radius: 50%
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

div#container-page {
    /* background: url(../images/page.jpg) no-repeat center 57px; */
}

/**
 * HEADER
 */
header {
    /*position: fixed;*/
    /*z-index: 1000;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    position: relative;
    z-index: 2;
}

.top {
    padding-top: 6px;
    padding-left: 118px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 2px;
}

.top-right {
    float: right;
}


.logo {
    display: inline-block;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    float: left;
}

#main-menu ul {
    font-size: 0;
    text-align: center;
}

#main-menu li {
    display: inline-block;
    font-size: 1rem;
}


nav#main-menu {
    clear: both;
}

#main-menu li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    display: block;
    padding: 15px 31px;
    letter-spacing: 0.05em;
}

#main-menu li a:hover {
    color: #81af1b
}

#main-menu li > ul li a {
    text-transform: none;
    color: #fff!important;
    padding: 15px 41px;
}

#main-menu li:hover  a {
    color: #81af1b
}

#main-menu li > ul li a {
    color: #fff;
}

#main-menu li > ul li.active a {
    color: #000!important;
}

#main-menu li > ul li a:hover {
    color: #000!important;
    text-decoration: none
}

#main-menu li li {
    background: url(../images/sep.png) no-repeat right center;
}

#main-menu li li:last-child {
    background: transparent;
}


#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #7faf1d;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

.slider, .main-slider, .slider-photo {
    position: relative;
}

.slider-line-top {
    background-color: rgba(128, 175, 27, 0.878);
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    left: auto;
    right: 50%;
    margin-right: -795px;
}


.slider-line-bottom {
    background-color: rgba(128, 175, 27, 0.878);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10px;
    right: auto;
    left: 50%;
    margin-left: -795px;
}

.slider-photo img {
    display: none;
}

.slider-photo {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
.slider-text {
    position: absolute;
    bottom: 92px;
    width: 100%;
}

.title1 {
    font-weight: bold;
    font-size: 60px;
    color: #80af1b;
}

.slider-text-content {
    display: table;
}

.slider-text-content > * {
    vertical-align: middle;
    display: table-cell;
}

.text.description {
    margin: 0;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    letter-spacing: 0.05em;
    padding-left: 4%;
    padding-right: 9%;
}

@media screen and (min-width: 1140px) {
    .btn.btn-more.btn-more-slider:hover {
        background: #fff;
        color: #80af1b
    }
}

.mask.slider-mask {
    background: url(../images/slider_mask.png) repeat-x bottom center / auto 100%;
}

.main-video-slider {
    position: relative;
    min-height: 460px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    max-height: 772px;
}

video#bgvid {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

video[poster] {
    object-fit: cover;
}

.about-box-container {
    text-align: center;
    padding-top: 93px;
    padding-bottom: 101px;
    background: url(../images/about_left.png) no-repeat left bottom, url(../images/about_right.png) no-repeat right bottom #f5f1eb;
}

.about-box-container .text.txt h4 {
    font-size: var(--font-18);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #707173;
    margin-bottom: 32px;
}

.about-box-container .text.txt {
    text-align: center;
    margin-bottom: 39px;
}

.about-box-container .container {
    max-width: 1030px;
}

.btn.btn-more {
    background: #80af1b;
    box-shadow: 0 0 0 transparent;
    height: 46px;
    display: inline-block;
    line-height: 46px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    border: 1px solid #80af1b;
    border-radius: 5px;
    padding: 0 42px;
}

@media screen and (min-width: 1140px) {
    .btn.btn-more:hover {
        background: #fff;
        color: #80af1b;
    }
}

.product-list-container {
    padding-top: 92px;
    padding-bottom: 91px;
}

.product-photo {
    display: block;
    width: 100%;
    margin-bottom: 29px;
}

.product-photo img {
    display: block;
    max-width: 100%;
}

.product-item {
    width: 25%;
    padding: 9px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.product-list {
    margin: -9px;
    font-size: 0;
    padding-bottom: 48px;
}

.product-item a {
    display: block;
    width: 100%;
    padding-bottom: 44px;
    background: #fff;
    box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    font-size: 1rem;
}

@media screen and (min-width: 1140px) {
    .product-item a:hover {
        background: #f5f1eb
    }

}

.product-name {
    font-size: var(--font-24);
    font-weight: bold;
    color: #80af1b;
    display: block;
    padding: 0 35px;
    margin-bottom: 16px;
}

.product-desc {
    padding: 0 35px;
    display: block;
    margin-bottom: 20px;
}

@media screen and (min-width: 1140px) {

    .product-item a:hover .product-item-hover {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        border: 5px solid #3e3d40;
        height: 100%;
    }


    .product-item a:hover .btn.btn-more.product-more {
        border: 1px solid #3e3d40;
        background: #3e3d40;
    }
}

.box-more {
    text-align: center
}

.product-list-container .box-more a.btn.btn-more {
    color: #000000;
    border-color: #e5e5e5;
    background: transparent;
}

@media screen and (min-width: 1140px) {
    .product-list-container .box-more a.btn.btn-more:hover {
        border: 1px solid #3e3d40;
        background: #3e3d40;
        color: #fff
    }
}

.history-box {
    float: left;
    width: 33.33%;
    position: relative;
    padding: 0 5px;
}

.quality-box {
    width: 66.66%;
    float: right;
    padding: 0 5px;
    position: relative;
}

.about-boxes {
    margin: 0 -5px;
}

.history-box h3 {
    font-weight: 100;
    font-size: 68px;
    color: #fff;
    margin-bottom: 10px;
}

.history-box h4 {
    font-weight: bold;
    font-size: 186px;
    color: #fff;
    margin-bottom: 11px;
}

.text.text-history {
    font-size: var(--font-24);
    line-height: 150%;
    color: #fff;
    font-weight: 300;
}

.history-box-content {
    width: 100%;
    padding: 87px 95px 82px;
    background: url(../images/history_bg.jpg) no-repeat top left / cover;
}

.history-box-content:after {
    content: '';
    width: 94%;
    height: 10px;
    background: #cccccc;
    display: block;
    position: absolute;
    left: 0;
    top: -10px
}

.quality-box-content {
    padding: 27px 10px 26px 65px;
    background: url(../images/quality_bg.jpg) no-repeat top left / cover;
}

.quality-left h3 {
    font-weight: bold;
    font-size: 120px;
    color: #80af1b;
    margin-bottom: 0;
}

.text.quanity-text {
    font-size: var(--font-24);
    color: #3e3d40;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 165px;
}

.text.quanity-text {
    width: 46%;
}

.quanity-logotypes {
    display: inline-block;
    width: 52%;
}

.quanity-bottom {
    font-size: 0;
}

.quanity-bottom-left {
    width: 48%;
    display: inline-block;
    vertical-align: middle;
    margin-top: 43px;
}

.quanity-logotypes li {
    width: 33.33%;
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
}

.quanity-logotypes li a {
    text-align: center;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}


.quanity-logotypes li a img {
    display: block;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    right: 0;
}

.quality-box:after {
    content: '';
    width: 94%;
    height: 10px;
    background: #80af1b;
    display: block;
    position: absolute;
    right: 0;
}

.about-boxes-container {
    padding-bottom: 10px;
}

.news-box-container {
    padding-bottom: 98px;
    padding-top: 77px;
}

.news-photo {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    position: relative;
    width: 50%;
    padding-bottom: 50%;
}

.news-photo img {
    display: block;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 100%;
}

.news-photo img:nth-child(2) {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.news {
    width: 50%;
    float: none;
    padding: 5px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.news a {
    display: block;
    position: relative;
    box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    font-size: 0;
}

.news a:hover {
    background: #f6f6f6;
}

.news-box {
    padding-top: 15px;
    margin: -5px -5px 44px;
    text-align: center;
    font-size: 0;
}

.news-title {
    display: block;
    margin-bottom: 23px;
    font-weight: bold;
    font-size: var(--font-24);
    line-height: 125%;
    padding-bottom: 50px;
    color: #2e2d30;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.news-content {
    vertical-align: top;
    display: inline-block;
    overflow: hidden;
    padding: 48px 50px;
    height: 100%;
    width: 50%;
}

.btn.btn-more.btn-circle {
    padding: 0;
    width: 46px;
    float: right;
}

.news-date {
    overflow: hidden;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 300;
    color: #111212;
    transition: all 300ms ease-out;
    background-position: -4px -2px;
}

@media screen and (min-width: 1140px) {
    a:hover .news-date {
        background: url(../images/icons/zegar.svg) no-repeat -4px -2px;
        background-size: 20px 20px !important;
        padding-left: 20px;
    }
}

.news-content .text.txt {
    display: block;
}

.news .btn.btn-more {
    float: right;
    color: #000000;
    border-color: #e5e5e5;
    background: transparent;
}

@media screen and (min-width: 1140px) {

    .news a:hover .btn.btn-more {
        border-color: #80af1b;
        background: #80af1b;
        color: #fff
    }

    .news a:hover .news-hover {
        opacity: 0;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 5px solid #80af1b;
        transition: all 300ms ease-out;
    }

    .news a:hover .news-hover {
        opacity: 1;
    }
}

.news-title:after {
    content: '';
    width: 62px;
    height: 3px;
    background: #80af1b;
    display: block;
    position: absolute;
    bottom: -2px;
}

.news:nth-child(4n) a,
.news:nth-child(4n+3) a {
    direction: rtl;
}

.news:nth-child(4n) a .news-content,
.news:nth-child(4n+3) a .news-content {
    direction: ltr;
    unicode-bidi: embed;
}

.news:nth-child(4n) a .news-bottom,
.news:nth-child(4n+3) a .news-bottom {
    left: 0;
    right: auto;
}

@media screen and (min-width: 1140px) {
    .news a:hover .news-title {
        color: #80af1b
    }

    .news a:hover .news-title:after {
        background: #000
    }
}

.group-box-container {
    border-top: 1px solid #e5e5e5;
    padding-top: 50px;
    padding-bottom: 50px;
}

.group-box {
    display: table;
}

.group-box h3 {
    font-size: var(--font-36);
    color: #2e2d30;
    font-weight: bold;
    white-space: nowrap;
    padding-right: 2.5%;
}

.group-img {
    padding-left: 2.5%;
}

.group-img img{ display:block; max-width:100%}

.group-box > * {
    display: table-cell;
    vertical-align: middle;
}

.text.group-text {
    font-size: var(--font-24);
    color: #707173;
    font-weight: 300;
    line-height: 180%;
    margin-bottom: 165px;
    padding: 0 5%;
}

.standout-box-container {
    padding-top: 91px;
    padding-bottom: 96px;
    background: url(../images/standout_bg.jpg) no-repeat bottom center / cover;
}

.standout-box {
    font-size: 0;
    margin: 0 -37px;
    padding-top: 12px;
}

.standout-item-circle {
    border-style: solid;
    border-width: 5px;
    border-color: rgb(128, 175, 27);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.602);
    width: 100%;
    height: auto;
    padding-top: 14px;
    padding-bottom: 93%;
    text-align: center;
    position: relative;
}

.standout-icon {
    width: 50%;
    display: block;
    margin: 0 auto -34px;
}

.standout-nb {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #2e2d30;
    margin-bottom: 11px;
}

.standout-name {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 300;
    padding: 0 72px;
}

.standout-icon img {
    display: block;
    max-width: 100%;
}

.standout-item {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
    padding: 0 37px;
}

.standout-item-circle-content {
    position: absolute;
}

/**
 * FOOTER
 */
footer {
    background: #2e2d30;
}

.footer-boxes {
    padding-top: 59px;
    position: relative;
    padding-bottom: 52px;
    border-bottom: 1px solid #434245;
}

.footer-box {
    float: left;
    width: 20%;
    padding-right: 30px;
    position: relative;
}

.footer-box .txt {
    margin-top: 1px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    color: #a6a6a7;
    text-align: justify;
}

.footer-box h4 {
    margin-bottom: 14px;
    font-weight: bold;
    font-size: 23px;
    color: #80af1b;
}

.footer-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-box ul li {
    margin-bottom: 2px;
}

.footer-box ul li a {
    display: inline-block;
    line-height: normal;
    font-size: 14px;
    color: #a6a6a7;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.05em;
}

.footer-box .txt a {
    color: #a6a6a7;
    font-weight: normal;
}

.footer-box .txt a[href^="tel:"] {
    padding-left: 32px;
    position: relative
}

.footer-box .txt a[href^="mailto:"] {
    padding-left: 32px;
    position: relative
}

.footer-box a[href^="tel:"]:before {
    position: absolute;
    top: -6px;
    left: -4px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/icons/telefon.svg) no-repeat center center;
    background-size: 30px 30px;
    content: '';
    vertical-align: middle;
}

.footer-box a[href^="mailto:"]:before {
    position: absolute;
    top: -5px;
    left: -2px;
    display: block;
    background: url(../images/icons/koperta.svg) no-repeat center center;
    background-size: 30px 30px;
    content: '';
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.footer-lang .langs-menu {
    float: left;
    margin: 7px 0 0 0;
}

.footer-lang .langs-menu a.lang.lang-item {
    text-align: center;
    color: #fff;
    border: 1px solid #434245;
}

.footer-box:last-child {
    float: right;
    padding-right: 0;
    width: 17%;
    margin-top: -23px;
}

.footer-box:last-child img {
    max-width: 100%;
    margin-bottom: 24px;
}

img.logo-min {
    display: block;
    max-width: 100%;
    margin-bottom: 35px;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        color: #80af1b;
    }

    .footer-box .txt a:hover {
        color: #80af1b;
    }
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-size: 14px;
    color: #a6a6a7;
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

.footer-bar-links {
    font-size: 0;
    text-transform: uppercase;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

.footer-bar-links a {
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline;
    }
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}


/**
 * FORM
 */

.form-box .text.txt.text-intro {
    margin-bottom: 11px;
}

form.form {
    padding-top: 30px;
}

.form-box h1 {
    text-align: left;
}


/* labele */
.form .form-element-name {
    font-weight: bold;
    font-size: 16px;
    color: #2e2d30;
    font-family: 'roboto', sans-serif;
    margin-bottom: 8px;
}

.form .form-required-mark {
    color: #fff;
}

/* INPUTY */
.form .form-control {
    font-family: 'roboto', sans-serif;
    box-shadow: 0 0 0 transparent;
    color: #2e2d30;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 300;
    border-radius: 0;
    border-color: #fff;
}

.form-control-feedback {
    display: none !important;
}

.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: -5px;
    margin-bottom: 0;
    padding: 10px 17px 4px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #E2001A !important;
    color: #fff !important;
    font-weight: normal !important;
    font-size: 13px;
}

.form .form-element-radio .alert-block .error,
.form .form-element-checkbox .alert-block .error {
    display: block;
    clear: both;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent !important;
    color: #E2001A !important;
    font-weight: bold !important;
    font-size: 13px;
}

.has-error .form-control {
    border-color: #E2001A;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-group-lg .form-element-radio,
.form-group-lg .form-element-checkbox {
    letter-spacing: 0.05em;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
    background: #4a44a9
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    height: 134px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label > *,
.form .consent-all {
    font-size: 12px;
    line-height: 24px;
    color: #2e2d30;
    letter-spacing: 0.05em;
    font-family: roboto;
}

.form .consent-all {
    margin-bottom: 20px;
    display: block;
}

/* ZAOKRAGLENIA INPUTOW*/
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
    height: 46px;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    border-left: 1px solid #e7edf0;
    color: #8ab52d;
}

.form i.fa.fa-refresh {
    font-size: 19px;
    color: #8ab52d;
}

@media screen and (min-width: 1140px) {
    button.captcha-refresh.btn.btn-default:hover i.fa.fa-refresh {
        color: #3e3d40;
    }
}

/**************** checkbox *******************/

.form .checkboxradio-container {
    margin-top: 0;
    /*margin-bottom: 10px;*/
    text-align: left;
}

.form .form-element-radio-container .row > *:not(:only-child),
.form .form-element-checkbox-container .row > *:not(:only-child) {
    margin-bottom: 10px;
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/icheck.png);
    -webkit-background-size: 200px 20px;
    background-size: 200px 20px;
}

.form .form-group-lg.form-group-lg .icheckbox_minimal-custom,
.form .form-group-lg.form-group-lg .iradio_minimal-custom {
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
}

.form-group-lg .icheckbox_minimal-custom,
.form-group-lg .iradio_minimal-custom {
    zoom: 1.55;
}

.form-group-lg .form-element-switcher .icheckbox_minimal-custom,
.form-group-lg .form-element-switcher .iradio_minimal-custom {
    zoom: normal;
}

.form .form-group-lg .checkboxradio-container label {
    padding-top: 3px;
    padding-left: 50px;
    padding-bottom: 6px;
    line-height: 1.2;
}

.form .form-group-lg .form-element-radio .alert-block .error,
.form .form-group-lg .form-element-checkbox .alert-block .error {
    padding-left: 50px;
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/checkbox.png);
}

.form-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.form-box .col-lg-1, .form-box .col-lg-10, .form-box .col-lg-11, .form-box .col-lg-12, .form-box .col-lg-2, .form-box .col-lg-3, .form-box .col-lg-4, .form-box .col-lg-5, .form-box .col-lg-6, .form-box .col-lg-7, .form-box .col-lg-7, .form-box .col-lg-9, .form-box .col-md-1, .form-box .col-md-10, .form-box .col-md-11, .form-box .col-md-12, .form-box .col-md-2, .form-box .col-md-3, .form-box .col-md-4, .form-box .col-md-5, .form-box .col-md-6, .form-box .col-md-7, .form-box .col-md-7, .form-box .col-md-9, .form-box .col-sm-1, .form-box .col-sm-10, .form-box .col-sm-11, .form-box .col-sm-12, .form-box .col-sm-2, .form-box .col-sm-3, .form-box .col-sm-4, .form-box .col-sm-5, .form-box .col-sm-6, .form-box .col-sm-7, .form-box .col-sm-7, .form-box .col-sm-9, .form-box .col-xs-1, .form-box .col-xs-10, .form-box .col-xs-11, .form-box .col-xs-12, .form-box .col-xs-2, .form-box .col-xs-3, .form-box .col-xs-4, .form-box .col-xs-5, .form-box .col-xs-6, .form-box .col-xs-7, .form-box .col-xs-7, .form-box .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
}

.form .checkboxradio-container .error {
    margin-top: 0;
    font-size: 13px;
}

.form .checkboxradio-container label {
    line-height: 24px;
    font-size: 14px;
    color: #2e2d30;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 27px;
    font-family: roboto;
    letter-spacing: 0.05em;
}

.form .checkboxradio-container [class^="icheckbox"], .form .radio [class^="icheckbox"] {
    position: absolute;
    margin-left: -26px;
    margin-top: 3px;
}

.form-group {
    margin-bottom: 12px;
}

button.btn.btn-primary .fa {
    float: right;
    line-height: 46px;
}

button.btn.btn-primary {
    text-align: center;
    position: relative;
    width: 200px;
    float: none !important;
    font-family: roboto;
    font-weight: 300;
    background: #80af1b;
    box-shadow: 0 0 0 transparent;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    border: 1px solid #80af1b;
    border-radius: 5px;
    padding: 0;
    margin: 0 auto;
    display: block;
}

@media screen and (min-width: 1140px) {
    button.btn.btn-primary:hover {
        background-color: #fff;
        color: #80af1b;
        border-color: #80af1b;
    }
}

.form .before-consent-row {
    padding-top: 23px;
    margin-bottom: 7px;
}

.checkbox {
    margin-bottom: 5px;
}


/**
 * MAP POINTS
 */
.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 58px 0;
    background: #fff;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 110px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.logotype-slider .slick-track{
    margin: auto;
}
.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 0;
    border: 1px solid #f0f;
}

.social-icon > * {
    vertical-align: middle;
}

.social-icon .fa {
    font-size: 20px;
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 25px 0 25px 20px;
    border-radius: 6px 6px 0 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    opacity: 0;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    border-radius: 0 0 6px 6px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    display: block;
    transition: background-color 0.4s;
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    padding: 5px 15px;
    font-size: 0;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    position: relative;
    cursor: pointer;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: all 0.4s;
    font-size: 20px;
    line-height: 12px;
}

.langs-menu.active .lang-button .arrow {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.langs-menu-icon img {
    max-width: 100%;
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.lang.lang-button {
    display: none;
}

.langs-menu ul {
    opacity: 1;
    position: relative;
    display: block;
    border-radius: 0;
}

.lang.lang-button {
}

.langs-menu ul {
    opacity: 1;
    position: relative;
    display: block;
    border-radius: 0;
}

.langs-menu ul li {
    display: inline-block;
    margin-left: 7px;
}

.langs-menu-short {
    font-size: 14px;
}

.langs-menu-icon {
    margin-right: 0;
}

a.lang.lang-item {
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    width: 50px;
    border-color: rgba(0, 0, 0, 0.1);
    height: 50px;
    line-height: 48px;
    padding: 0;
    color: #000000;
}

.langs-menu {
    border-radius: 0;
    margin: 34px 0 0;
}

.lang span {
}

.lang span.langs-menu-icon {
    display: none;
}

.flag-icon {
    display: none;
}

a.lang.lang-item:hover, a.lang.lang-item.active {
    background: #80af1b;
    border-color: #80af1b;
    color: #fff;
}

 a.lang.lang-item.active { cursor:default}


/**
 * ARTICLE
 */
.article {
    /* overflow: hidden; */
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
.
}

.article-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 38%;
    margin-right: 41px;
    margin-bottom: 20px;
    padding-bottom: 38%;
}

.article-image > img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.article-subtitle {
    padding-bottom: 30px;
    font-size: var(--font-18);
    text-transform: uppercase;
    line-height: 167%;
    font-weight: 300;
    color: #707173;
    letter-spacing: 0.04em;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 40px;
}


/**
* PAGINATION
*/

.pagination-wrapper {
    width: auto;
    clear: both;
    max-width: 50%;
}

.pagination-wrapper ul li.prev {
    margin-right: 10px;
}

.pagination-wrapper ul li.next {
    margin-left: 10px;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    font-size: 14px;
    color: #000;
    line-height: 56px;
    padding: 0 12px;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    box-shadow: 0 0 0 transparent !important;
    border: 1px solid #e5e5e5;
    line-height: 48px;
    background: #fff;
    border-radius: 5px;
    padding: 0;
    color: #87b428;
}


@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover, .pagination-wrapper ul li.prev a:hover {
        background: #87b428;
        color: #fff;
        border-color: #87b428
    }
}

/**
* PAGINATION ACTIVE
*/
.pagination-wrapper ul li.active a {
    color: #87b428;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: #87b428;
    }
}

/**
 * GALLERY
 */
 
 .gallery {
    clear: both;
}

.gallery-list {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(128, 175, 27, 0.902);
    transition: opacity 0.3s;
    text-align: center;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.gallery-btn {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-radius: 5px;
    width: 198px;
    height: 46px;
    line-height: 46px;
    display: inline-block;
    right: 0;
    margin: 0 auto;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.subpage header {
    border-bottom: 10px solid #8fb937;
}

.subpage #content {
    padding-top: 92px;
}

.text-box-container .container {
    max-width: 1350px;
}

.article-text-intro, .text-intro {
    font-size: var(--font-18);
    text-transform: uppercase;
    line-height: 167%;
    font-weight: 300;
    color: #707173;
    letter-spacing: 0.04em;
    margin-bottom: 31px;
}

.text-box-container {
    padding-bottom: 99px;
}

.factory-location-box {
    padding-top: 92px;
    background: url(../images/lokalizacja.jpg) no-repeat top center;
    padding-bottom: 40.7%;
}


@media screen and (min-width: 1140px) {
    .factory-location-box img {
        display: none;
    }
}

.history-box-container {
    padding-top: 90px;
    padding-bottom: 90px;
}

.history-event img {
    display: block;
    max-width: 52%;
    margin: -6px auto 0;
}

.history-event {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    text-align: center;
    position: relative;
}

.history-event-list {
    font-size: 0;
}

.circle-box {
    width: 100%;
    position: relative
}

.circle {
    display: block;
    width: 22px;
    height: 22px;
    background: #80af1b;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.circle-box:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #80af1b;
    display: block;
    left: 0;
    top: 50%;
    right: 0;
    position: absolute;
}

.event-year {
    font-weight: bold;
    font-size: var(--font-30);
    color: #3e3d40;
    margin-bottom: 23px;
}

.event-name {
    font-size: var(--font-18);
    line-height: 166%;
    color: #3e3d40;
}

.history-event:first-child .circle-box:after {
    width: 50%;
    left: auto;
    right: 0;
}

.history-event:last-child .circle-box:after {
    width: 50%;
    left: 0;
    right: auto;
}

.quality-box-container {
    padding-top: 40px;
    padding-bottom: 63px;
    position: relative;
    background: url(../images/quality_bg2.jpg) no-repeat top center / cover;
}

.quality-box-container .text.quanity-text {
    font-size: var(--font-36);
    line-height: 141%;
    margin-bottom: 43px;
}

.quality-box-container .quanity-bottom-left {
    width: 50%;
    vertical-align: bottom;
    margin-top: 0;
    margin-bottom: 10px;
}

.quality-box-container .quanity-logotypes {
    width: 50%;
    vertical-align: bottom;
}

.quality-box-container:after {
    content: '';
    width: 94%;
    height: 10px;
    background: #80af1b;
    display: block;
    position: absolute;
    right: 0;
    bottom: -10px;
}

.quality-box-container .quanity-logotypes ul {
    margin: -12px;
}

.quality-box-container .quanity-logotypes ul li {
    padding: 12px;
}

.subpage .standout-box-container {
    background: url(../images/standout_bg2.jpg) no-repeat bottom center / cover;
}

.subpage .news-box-container {
    padding-top: 0;
    padding-bottom: 42px;
}

.subpage .news-box {
    margin-bottom: 56px;
}

.brand-logo {
    border-style: solid;
    border-width: 1px;
    border-color: #d9dadb;
    background-color: transparent;
    float: left;
    margin-right: 41px;
    width: 24%;
    padding-bottom: 23.7%;
    position: relative;
}

.brand-logo img {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
    left: 0;
    right: 0;
}

.brand-box-container {
}

.brand-box-container .container {
    max-width: 1350px;
}

.brand-box {
    padding-top: 6px;
}

.brand-text .text.txt {
    margin-bottom: 43px;
}

.brand-text {
    overflow: hidden;
    position: relative;
    margin-top: -5px;
}

.brand {
    padding-bottom: 50px;
}

@media screen and (min-width: 1140px) {
    .brand a:hover .brand-bottom .btn.btn-more {
        background: #000;
        color: #fff;
    }
}

.brand-logo-hover {
    transition: all 300ms ease-out;
    -webkit-box-shadow: inset 0 0 0 3px rgba(128, 175, 27, 1);
    -moz-box-shadow: inset 0 0 0 3px rgba(128, 175, 27, 1);
    box-shadow: inset 0 0 0 3px rgba(128, 175, 27, 1);
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.brand a {
    display: block;
    width: 100%;
    padding: 45px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .brand a:hover .brand-logo-hover {
        opacity: 1;
    }

    .brand a:hover {
        box-shadow: 0 0 0 transparent
    }
}

.brand-title {
    font-weight: bold;
    font-size: var(--font-24);
    color: #2e2d30;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 22px;
}

.brand-title:after {
    content: '';
    width: 55px;
    height: 3px;
    background: #80af1b;
    display: block;
    position: absolute;
    bottom: -2px;
}

.brand-text .btn.btn-more {
    float: right;
    color: #000000;
    border-color: #e5e5e5;
    background: transparent;
}

.brand-text .btn.btn-more:hover {
    background:#80af1b ;
    color:#fff ;
    border-color: #80af1b;
}

@media screen and (min-width: 1140px) {
    .brand a:hover.brand-text .btn.btn-more {
        background: #80af1b;
        border-color: #80af1b;
        color: #fff
    }
}


.job-box-container {
    padding-bottom: 42px;
}

.job-box-container .container {
    max-width: 1350px;
}

.accordions-box {
    text-align: left;
    padding-bottom: 100px;
    padding-top: 1px;
}

.accordion {
    margin-bottom: 40px;
    padding: 48px 50px 35px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.accordion.active1 {
    box-shadow: 0 0 0 transparent;
    background: transparent;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    padding: 15px 80px 15px 22px;
    position: relative;
}

.accordion-name {
    display: block;
    line-height: normal;
    padding-left: 0;
    padding-right: 0;
    font-weight: bold;
    font-size: var(--font-24);
    color: #2e2d30;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 22px;
}

.accordion-name:after {
    content: '';
    width: 56px;
    height: 3px;
    background: #80af1b;
    display: block;
    position: absolute;
    bottom: -2px;
}

.accordion-header-text {
    position: relative;
}

.accordion-header .text.txt {
    padding-right: 60px;
    padding-bottom: 0;
    margin: 0;
}

.accordion-arrow {
    display: block;
    text-align: center;
    color: #fff;
    font-size: var(--font-18);
    transition: all 300ms ease-out;
    width: 50px;
    height: 50px;
    background: #87b428;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 5px;
    line-height: 50px;
    margin-top: -25px;
}

.accordion-arrow .fa {
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: -8px auto 0;
}

.accordion-content {
    display: none;
    padding-right: 60px;
}

.accordion-header {
    cursor: pointer;
    transition: all 300ms ease-out;
    position: relative;
}

.accordion-header .accordion-arrow .fa {
    transition: all 300ms ease-out;
}

.accordion-header.active .accordion-arrow .fa {
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.accordion-header.active .accordion-arrow {
    background: #3a393c;
}

.accordion-content .text.txt {
    color: #707173;
    margin-bottom: 6px;
}

.job-box-container .pagination-wrapper {
    max-width: 75%;
}

.products-box-container .text-intro {
    max-width: 1270px;
    margin: 0 auto 31px;
}

.products-box-container .txt {
    max-width: 1270px;
    margin: 0 auto 51px;
}

.products-box-container {
    padding-bottom: 44px;
}


.files-box {
    margin: 0 auto 50px;
}

.files-box ul {
    margin-bottom: 0;
}

.files-box ul li {
    border: 1px solid #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}
.files-box ul li a {
    display: block;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
    padding: 7px 220px 7px 65px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 20px 38px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid #fff;
    border-radius: 5px;
}

.files-box ul li a:hover {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(217, 218, 219);
    border-radius: 5px;
    background-color: rgb(246, 246, 246);
}

.file-name {
    color: #707173;
    font-size: var(--font-18);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    vertical-align: middle;
    padding: 14px 0px;
}

.btn-download {
    font-size: 14px;
    display: block;
    position: absolute;
    right: 10px;
    top: 9px;
    width: 198px;
    line-height: 44px;
    height: 46px;
    text-align: center;
    z-index: 999;
    letter-spacing: 0.05em;
    padding: 0 9px 0 0;
    border: 1px solid #80af1b;
    border-radius: 5px;
    font-weight: 300;
    color: #fff;
    background: #80af1b;
}

.btn-download .caption {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
    text-transform: uppercase;
}

.btn-download .icon-btn {
    display: inline-block;
    width: 46px;
    height: 46px;
    vertical-align: middle;
    padding: 10px;
    margin-left: 0;
    float: right;
}

.btn-download .icon-btn img {
    display: block;
    max-width: 100%
}

span.file-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 10px;
}

span.file-icon img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .files-box ul li a:hover .btn-download {
        background: #3a393c;
        color: #fff;
        border: 1px solid #3a393c
    }
}

.text-box-container + .box-more {
    text-align: center;
    margin-bottom: 100px;
}

span.stamp {
    display: block;
    position: absolute;
    left: -22%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 45%;
}

span.stamp img {
    max-width: 100%;
    display: block;
}


.contact-box-container {
    position: relative;
    padding-bottom: 16px;
    background: url(../images/contact_bg.jpg) no-repeat center 10px;
}

.contact-box-container .container {
    max-width: 1350px;
}

.contact-boxes {
    display: block;
    position: relative;
    padding-top: 6px;
}

.contact {
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 35px;
}

.contact-box {
    font-size: 0;
    margin: 0 15px;
}


.contact-item {
    display: block;
    width: 100%;
    border-radius: 50%;
    border: 5px solid #80af1b;
    text-align: center;
    padding-bottom: 97%;
    position: relative;
    margin-bottom: 54px;
    z-index: 8;
}

.contact-center {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 49px;
}

.contact-item .txt {
    font-size: var(--font-18);
    font-weight: 300;
    color: #2e2d30;
    letter-spacing: 0;
    line-height: 143%;
}

.contact-item .txt a {
    color: #2e2d30;
}

.contact-item h4 {
    font-weight: bold;
    letter-spacing: 0.04em;
    margin-top: -18px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 100px;
    margin: 0 auto 27px;
}

.contact-icon img {
    display: block;
    max-width: 100%;
}

.form-box-container {
    padding-top: 92px;
    padding-bottom: 82px;
    background: url(../images/form_bg.jpg) no-repeat bottom right #f4efe9;
}

.form-box {
    margin: 0 auto;
    max-width: 1280px;
}

.form-box h2 {
    margin-bottom: 8px;
}

.map-box-container {
    width: 100%;
    height: 580px;
    position: relative;
}

.map-box-container iframe {
    width: 100%;
    height: 100%;
}

.phone-name {
    display: block;
}

#main-menu ul.hovered {
    display: block;
}
