
/* --------------------------- */
/* BASIC SETUP */
/* --------------------------- */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    color: #1c1c1c;
    -webkit-tap-highlight-color:rgba(0,0,0,0); /* prevent tap highlight color / shadow */
}

.fancybox-navigation { position: static; }

:focus {outline: 0;}

html,
body {
    font-family: 'Encode Sans Expanded', sans-serif;
    overflow-x: hidden;
}

/*body { -webkit-overflow-scrolling: touch; }*/

h1,
h2 {
    font-weight: 300;
    font-size: 120px;
    letter-spacing: 3px;
}

h3 {
    font-weight: 400;
    font-size: 43px;
}

h4,
h5 {
    font-size: 40px;
    font-weight: 200;
    color: #000;
}

h5 { text-transform: uppercase; }

p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}

.subp {

}

html.noscroll,
body.noscroll { overflow-y: hidden; }

section {
    width: 100%;
    height: auto;
}

section.subp {
    padding: 30px 40px 80px 40px;
}


/* ----- LINKS ----- */

a:link,
a:visited {
    text-decoration: none;
    color: #000;
}

a:hover,
a:active {
    text-decoration: none;
    color: #000;
}

.btn {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    cursor: pointer;
}

.btn.green {
    height: 40px;
    padding: 0 15px;
    background-color: #009e4d;
    border-radius: 25px;
    color: #fff;
    transition: all .3s;
    overflow: hidden;
    z-index: 1;
}

.btn.green:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #009e4d;
  border-radius: 25px;
  z-index: -2;
}
.btn.green:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #017e3e;
  transition: all .3s;
  border-radius: 0;
  z-index: -1;
}

.btn.green:hover {
  color: #fff;
}
.btn.green:hover:before {
  width: 100%;
}

.btn > img {
    width: 32px;
    margin-left: 13px;
}

img { 
    max-width: 100%;
    width: 100%;
}

/* ----- SUBMIT BUTTON ----- */

.btn-submit {
	position: relative;
	width: 100%;
	height: 40px;
	line-height: 35px;
	border-radius: 30px;
	border: 3px solid #fff;
	background-color: #fff;
	text-align: center;
	font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	cursor: pointer;
    margin: 45px auto 0 auto;
}

.btn-submit span { color: #009e4d; }

.btn-submit:hover{
	background-color: #e3e3e3;
    border: 3px solid #e3e3e3;
}

.btn-submit.loading{
	width: 40px!important;
	border-radius: 100%;
	border-color: #999;
	background-color: transparent!important;
}

.btn-submit.loading span{
	opacity: 0;
	visibility: hidden;
}

.btn-submit::after {
	content: '';
	position: absolute;
	top: -5px;
	right: -5px;
	height: 22px;
    width: 44px;
	background-color: #28e082;
	border-top-left-radius: 44px;
    border-top-right-radius: 44px;
	-webkit-animation: 1s linear infinite rotate;
    animation: 1s linear infinite rotate;
	animation-delay: .5s;
    -webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	z-index: 9;
	opacity: 0;
}

.btn-submit::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	background-color: #fff;
	border-radius: 100%;
}

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

.loading::after,
.loading::before {
	opacity: 1;
	transition: opacity .3s ease;
	-webkit-transition: opacity .3s ease;
	transition-delay: .4s;
	-webkit-transition-delay: .4s;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.checked {
	background-color: #009e4d!important;
	position: relative;
}

.checked::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
	background-size: 25px;
	animation: none;
  opacity: 1;
  background-color: transparent;
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEyOHB4IiBoZWlnaHQ9IjEyOHB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNTA0LjUwMiw3NS40OTZjLTkuOTk3LTkuOTk4LTI2LjIwNS05Ljk5OC0zNi4yMDQsMEwxNjEuNTk0LDM4Mi4yMDNMNDMuNzAyLDI2NC4zMTFjLTkuOTk3LTkuOTk4LTI2LjIwNS05Ljk5Ny0zNi4yMDQsMCAgICBjLTkuOTk4LDkuOTk3LTkuOTk4LDI2LjIwNSwwLDM2LjIwM2wxMzUuOTk0LDEzNS45OTJjOS45OTQsOS45OTcsMjYuMjE0LDkuOTksMzYuMjA0LDBMNTA0LjUwMiwxMTEuNyAgICBDNTE0LjUsMTAxLjcwMyw1MTQuNDk5LDg1LjQ5NCw1MDQuNTAyLDc1LjQ5NnoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

.checked span{
	opacity: 0;
	visibility: hidden;
}

/* --------------------------- */
/* HEADER */
/* --------------------------- */

header {
    width: 100%;
    height: 41.67vw;
}

header .abs_bar {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 40px 0 0 40px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

header .abs_bar .logo {
    display: flex;
    width: 160px;
    height: 160px;
    justify-content: center;
    align-items: center;
    padding: 13px;
    background-color: #fff;
}

header .abs_bar .logo > img {
    width: 80%;
    display: block;
}

header .abs_bar .logo > img:nth-child(2) { display: none; }

header .abs_bar .nav_bar {
    height: 70px;
    display: flex;
    margin-top: -40px;
}

header .abs_bar .nav_bar ul {
    font-size: 14px;
    font-weight: 400;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    padding: 0 40px;
    background-color: #fff;
    z-index: 0;
}

header .abs_bar .nav_bar ul li:not(:first-child) {
    margin-left: 30px;
}

header .abs_bar .nav_bar ul li a { 
    text-transform: uppercase; 
    letter-spacing: 3px;
    padding: 5px 3px;
}

header .abs_bar .nav_bar ul li a::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #009e4d;
    transform: scale3d(1,0,1);
    transform-origin: 50% 100%;
    transition: transform 0.3s;
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

header .abs_bar .nav_bar ul li a:hover::before,
header .abs_bar .nav_bar ul li.clicked a::before {
    transform: scale3d(1,1,1);
    transform-origin: 50% 0%;
}

header .abs_bar .nav_bar .lang_box {
    height: 70px;
    width: 70px;
    background-color: #009e4d;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all .25s linear;
    cursor: pointer;
}

header .abs_bar .nav_bar .lang_box.open { 
    height: 140px; 
    cursor: auto;
}
header .abs_bar .nav_bar .lang_box.open > a { pointer-events: auto;  }
header .abs_bar .nav_bar .lang_box > a.clicked { order: 2; }

header .abs_bar .nav_bar .lang_box > a {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    width: -moz-fit-content;
    margin-top: 26.5px;
    margin-bottom: 26.5px;
    pointer-events: none;
}

#header_slider {
    width: 100%;
    height: 100%;
}

#header_slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#header_slider .swiper-slide:nth-child(1) { background-image: url(slider_1.jpg); }
#header_slider .swiper-slide:nth-child(2) { background-image: url(slider_2.jpg); }
#header_slider .swiper-slide:nth-child(3) { background-image: url(slider_3.jpg); }
#header_slider .swiper-slide:nth-child(4) { background-image: url(slider_4.jpg); }

#header_slider.swiper-container-vertical .swiper-pagination-bullets {
    right: 31px;
}

#header_slider .swiper-pagination-bullet { 
    background: #fff; 
    opacity: 0.9;
}
#header_slider .swiper-pagination-bullet-active { background: #009e4d; }

header .abs_line_cont {
    position: absolute;
    width: 70px;
    height: 100%;
    top: 0;
    right: 0;
    padding: 85px 0 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

header .abs_line_cont .line {
    width: 1px;
    height: 13.2vw;
    background-color: #fff;
    margin: 0 auto;
}
header .abs_line_cont .line:nth-child(2) { height: 16.95vw; }

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  40% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  80% {
    -webkit-transform: translate(0, 8px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  40% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  80% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

header .scroll_d {
    padding-top: 35px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 44px);
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    z-index: 5;
}

header .scroll_d span {
  position: absolute;
  top: 0;
  left: calc(50% - 8px);
  width: 16px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 25px;
}

header .scroll_d span:before {
  position: absolute;
  top: 3px;
  left: calc(50% - 1.5px);
  content: '';
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 1.5s infinite;
  animation: sdb10 1.5s infinite;
  box-sizing: border-box;
}

/* --------------------------- */
/* HEADER SMALL */
/* --------------------------- */

header.small {
    height: 70px;
}

header.small #header_slider,
header.small .scroll_d { display: none; }

header.small .abs_bar {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 0 0 40px;
    background-color: #f5f5f5;
}

header.small .abs_bar .logo {
    width: 140px;
    height: auto;
    padding: 0;
    background-color: transparent;
}

header .abs_bar .logo > img { width: 100%; }

header.small .abs_bar .logo > img:first-child { display: none; }
header.small .abs_bar .logo > img:nth-child(2) { display: block; }

header.small .abs_bar .nav_bar {
    background-color: transparent;
    margin-top: 0;
}

header.small .abs_bar .nav_bar ul { background-color: transparent; }

/* --------------------------- */
/* MOBILMENU */
/* --------------------------- */

#menu { 
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    color: #000;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transform: translate(100%, 0%);
    transition: all .5s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    z-index: 1000;
    padding: 60px 35px;
}

#menu.open { transform: translate(0%, 0%); }

#menu .lang_cont_mob {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 20px;
    color: #000;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: .8s;
}

#menu .lang_cont_mob.two { transition-delay: 1.7s; }

#menu .lang_cont_mob.two .row a:nth-child(1) { 
    width: 10px; 
    height: 20px;
}

#menu .lang_cont_mob.two .row a:nth-child(2) { 
    width: 20px; 
    height: 20px;
}

#menu.open .lang_cont_mob { opacity: 1; }

#menu .lang_cont_mob .row {
    display: flex;
    width: 60%;
    justify-content: space-between;
    margin: 10px auto 0 auto;
}


#menu .lang_cont_mob .row a {
    color: #000;
}

#menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    height: 53%;
    text-align: right;
}

#menu ul li {
    opacity: 0;
    transform: translate(50%, 0%);
    transition: all .3s ease;
}

#menu.open ul li {
    opacity: 1;
    transform: translate(0%, 0%);
    transition-delay: 1s;
}

#menu.open ul li:nth-child(2) { transition-delay: 1.1s; }
#menu.open ul li:nth-child(3) { transition-delay: 1.2s; }
#menu.open ul li:nth-child(4) { transition-delay: 1.3s; }
#menu.open ul li:nth-child(5) { transition-delay: 1.4s; }
#menu.open ul li:nth-child(6) { transition-delay: 1.5s; }


#menu ul li a {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}

.mobilemenu {
    display: none;
	position: absolute;
	top: 15px;
	right: 15px;
    z-index: 21;
    width: 30px;
    height: 24px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 1001;
}
.mobilemenu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.mobilemenu span:nth-child(1) {
    top: 0px;
}

.mobilemenu span:nth-child(2) {
    top: 9px;
}

.mobilemenu span:nth-child(3) {
    top: 18px;
}

.mobilemenu.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.mobilemenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobilemenu.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.mobilemenu.open span,
.mobilemenu.small.open span { background: #009447; }

.mobilemenu.small {
    top: 24px;
    right: 20px;
}
.mobilemenu.small > span { background-color: #000; }

/* --------------------------- */
/* FRONT PAGE */
/* --------------------------- */

.front_about_us {
    padding: 10.4vw 0 10.4vw 13vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f6ff;
}

.front_about_us .text_box {
    width: 445px;
}

.front_about_us .text_box:before,
.front_advantages > .left h2:before,
.front_products > h2:before {
    content: '';
    position: absolute;
    top: 3px;
    left: -85px;
    width: 68px;
    height: 44px;
    background-image: url(grass_grey.svg);
}

.front_about_us .text_box > p {
    margin-top: 20px;
}

.front_about_us .text_box a.btn {
    margin-top: 35px;
    margin-left: auto;
}

.front_about_us .text_box a.btn img { transition: all .2s linear; }
.front_about_us .text_box a.btn:hover img { transform: translateX(7px); }

.front_about_us > img {
    max-width: 58.18vw;
    max-height: 23.02vw;
}

.front_advantages {
    height: 41.9vw;
    display: flex;
    background-color: #009e4d;
}

.front_advantages > .left {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(foilbckg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.front_advantages > .left h2 {
    color: #fff;
    width: fit-content;
    width: -moz-fit-content;
    z-index: 6;
}

.front_advantages > .left h2:before {
    background-image: url(grass_white.svg);
    top: 30px;
    left: -70px;
}

.front_advantages > .left h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 165%;
    height: 1px;
    background-color: #fff;
}

#advantages_slider {
    width: calc(50% + 110px);
    margin-left: -110px;
}

#advantages_slider .swiper-slide {
    padding-left: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#advantages_slider .swiper-slide { opacity: 0 !important; }
#advantages_slider .swiper-slide-active { opacity: 1 !important; }

#advantages_slider .swiper-slide > span {
    color: #fff;
    font-weight: 200;
    font-size: 60px;
    line-height: 80px;
    width: 740px;
    letter-spacing: 2.4px;
}

#advantages_slider .swiper-slide .abs_number {
    position: absolute;
    width: auto;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    font-size: 39.6vw;
    font-weight: 700;
    color: #009447;    
}

#advantages_slider .abs_arrows {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 107px;
    height: 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

#advantages_slider .abs_arrows > img { 
    width: 32px; 
    cursor: pointer;
}
#advantages_slider .abs_arrows > img:nth-child(1) { transform: rotate(180deg); }

#advantages_slider .abs_arrows > .line {
    width: 1px;
    height: 100%;
    background-color: #000;
}

#advantages_slider .swiper-button-disabled { opacity: 0.4; }

.front_categories {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.front_categories .row {
    display: flex;
    width: 50%;
    height: 22.4vw;
    background-color: #f5f5f5;
}
.front_categories .row:nth-child(2),
.front_categories .row:nth-child(3) { background-color: #fff; }

.front_categories .row:nth-child(odd) { padding-left: 5.2vw; }
.front_categories .row:nth-child(even) { padding-right: 5.2vw; }

.front_categories .row .column {
    height: 100%;
    width: 50%;
}

.front_categories .row:nth-child(2) .column {
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
}

.front_categories .row div.column {     
    display: flex;
    align-items: flex-end;
    padding: 2.08vw;
    background-color: #f5f5f5;
}
.front_categories .row div.column.white { background-color: #fff; }
.front_categories .row div.column:first-child {
    justify-content: flex-end;
}

.front_categories .row a.column:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.14);
    z-index: 5;
    transition: all .2s linear;
}

.front_categories .row a.column:hover:before { background-color: transparent; }

.front_categories .row .column > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front_categories .row .column h4 {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 2.08vw;
    line-height: 2.8vw;
    z-index: 3;
}
.front_categories .row .column h4:before {
    position: absolute;
    content: '';
    width: 125%;
    height: 1px;
    background-color: #000;
    bottom: -0.52vw;
    left: -25%;
}
.front_categories .row .column:first-child h4:before { left: 0; }
.front_categories .row .column h4.short:before { width: 150%; }

.front_categories .row h2 {
    font-size: 6.25vw;
    letter-spacing: 0.1563vw;
    color: #bfbfbf;
}
.front_categories .row h2:before {
    content: '';
    position: absolute;
    top: 1.5625vw;
    left: -3.6458vw;
    width: 3.5417vw;
    height: 2.2917vw;
    background-image: url(grass_grey.svg);
}

.front_products > h2 { 
    color: #bfbfbf; 
    width: fit-content;
    width: -moz-fit-content;
    text-transform: capitalize;
    margin-left: 40px;
    margin-top: 10px;
}
.front_products > h2:before {
    left: auto;
    right: -80px;
    top: 40px;
}

.products_slider_cont {
    width: 100%;
}

.products_slider_cont .swiper-button-prev { left: 40px }
.products_slider_cont .swiper-button-next { right: 40px }

.products_slider_cont .swiper-button-prev,
.products_slider_cont .swiper-container-rtl,
.products_slider_cont .swiper-button-next {
    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23009e4d'%2F%3E%3C%2Fsvg%3E");
}
.products_slider_cont .swiper-button-next {
    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23009e4d'%2F%3E%3C%2Fsvg%3E");
}

#products_slider {
    width: 1400px;
    margin: 90px auto;
}

#products_slider .swiper-slide { 
    max-width: 360px; 
    min-height: 372px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#products_slider .swiper-slide > p,
#products_slider .swiper-slide > span,
#products_slider .swiper-slide > div {
    display: block;
}

#products_slider .swiper-slide > p {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 200;
    line-height: 45px;
    color: #000;
}

#products_slider .swiper-slide > span {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

#products_slider .swiper-slide > img {
    width: 100%;
    height: auto;
}

#products_slider .swiper-slide > .row {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/*
#products_slider .swiper-slide > .row .number {
    font-size: 20px;
    color: #000;
}
#products_slider .swiper-slide > .row .number > span {
    font-size: 40px;
    line-height: 40px;
    font-weight: 200;
}
*/

/* --------------------------- */
/* ABOUT US SUBPAGE */
/* --------------------------- */

.about_us_sub {
    display: flex;
}

.about_us_sub .left {
    width: 50%;
    background-image: url(foil.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about_us_sub .right {
    width: 50%;
    padding: 50px 80px;
}

.about_us_sub .right .text_box {
    width: 90%;
}

.about_us_sub .right .text_box > p,
.category_sub .box > div > p {
    line-height: 21px;
    margin-top: 30px;
}

/* --------------------------- */
/* CATEGORY SUBPAGE */
/* --------------------------- */

.category_sub {
    padding: 50px 60px;
    margin-top: -70px;
    display: flex;
    flex-wrap: wrap;
}

.category_sub .box {
    margin-top: 70px;
    width: 50%;
    display: block;
/*
    display: flex;
    flex-direction: row;
*/
}

/*
.category_sub .box:nth-child(4n),
.category_sub .box:nth-child(4n-1) {
    flex-direction: row-reverse;
}
*/

.category_sub .box > img { float: left; }

.category_sub .box:nth-child(4n) > img,
.category_sub .box:nth-child(4n-1) > img {
    margin-left: 2.1vw;
    margin-right: 0;
    float: right;
}

.category_sub .box > img { 
    margin-right: 2.1vw; 
    width: 19.27vw;
    height: 19.27vw;
}

.category_sub .box:nth-child(odd) { 
    padding-right: 22px; 
}

.category_sub .box:nth-child(even) {
    padding-left: 22px;
}

/* --------------------------- */
/* PRODUCTS SUBPAGE */
/* --------------------------- */

.products_sub.subp { 
    padding-top: 50px; 
    min-height: 620px;
}

.products_sub .row {
    width: 100%;
    display: flex;
}

.products_sub .row .filter {
    width: 320px;
    height: 475px;
    padding: 20px 15px;
    background-color: #009e4d;
}

.products_sub .row .filter:before {
    content: attr(text);
    position: absolute;
    left: -2px;
    top: -28px;
    font-size: 28px;
    color: #009e4d;
    font-weight: 800;
}

.products_sub .row .filter > span {
    color: #000;
    font-size: 28px;
    line-height: 22px;
    font-weight: 200;
    display: block;
}
.products_sub .row .filter > span.margined { margin-top: 18px; }

.products_sub .row .filter .categories {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
    width: 100%;
    margin-top: 20px;
}

.products_sub .row .filter .categories > a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: fit-content;
    width: -moz-fit-content;
}
.products_sub .row .filter .categories > a.clicked { font-weight: 800; }


.products_sub .row .filter .line {
    margin-left: -15px;
    width: 95%;
    height: 1px;
    margin-top: 20px;
    background-color: #008540;
}

.products_sub .row .filter .height_cont {
    margin-top: 20px;
    width: 225px;
}

.products_sub .row .filter .height_cont .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.products_sub .row .filter .height_cont .row > a {
    font-size: 16px;
    color: #fff;
    min-width: 73px;
}

.products_sub .row .filter .height_cont .row > a > span {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 4px;
    border: 2px solid #fff;
}

.products_sub .row .filter .height_cont .row > a.clicked > span { background-color: #fff; }

.products_sub .row .filter .height_cont .row:not(:first-child) { margin-top: 18px; }

.products_sub .row .filter > .btn.green {
    position: absolute;
    right: 0;
    bottom: -60px;
    text-transform: uppercase;
    width: auto;
}

.products_sub .row .products_cont {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 360px);
    margin-left: 40px;
    margin-top: 0px;
}

.products_sub .row .products_cont.notshow { display: none; }

.products_sub .row .products_cont .product_box {
    width: 46.33%;
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 60px;
}

.products_sub .row .products_cont .product_box > p.title {
    text-transform: uppercase;
    font-weight: 200;
    font-size: 40px;
    line-height: 38px;
    color: #000;
    max-width: 430px
}

.products_sub .row .products_cont .product_box > img {
    width: 530px;
    height: auto;
}

.products_sub .row .products_cont .product_box > span {
    font-size: 14px;
    max-width: 530px;
}

.products_sub .row .products_cont .abs_head {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #009e4d;
    font-weight: bold;
    font-size: 14px;
    color: #009e4d;
}

.products_sub .mobil_btn {
    display: none;
    margin: 0 auto 40px auto;
    width: 60%;
    height: 50px;
    background-color: #009e4d;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.products_sub .mobil_btn > img {
    width: 12px;
    height: auto;
    margin-left: 15px;
    transition: all .15s linear;
}

.products_sub .mobil_btn.open > img { transform: rotate(180deg); }

.products_sub .row .product_detail {
    display: none;
    width: calc(100% - 360px);
    margin-left: 40px;
}
.products_sub .row .product_detail.show { display: block; }

.products_sub .row .product_detail .head {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #009e4d;
    display: flex;
    justify-content: space-between;
}

.products_sub .row .product_detail .head > div {
    font-weight: bold;
    font-size: 14px;
    color: #009e4d;
}

.products_sub .row .product_detail .head > a {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
}

.products_sub .row .product_detail .head > a > img {
    width: 7px;
    margin-right: 8px;
    display: block;
}

.products_sub .row .product_detail .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.products_sub .row .product_detail .content .for_mob_cont {
    display: flex;
    width: calc(100% - 222px);
}

.products_sub .row .product_detail .content .profil {
    display: flex;
    flex-direction: column;
    width: 34.375vw;
}

.products_sub .row .product_detail .content .profil > p {
    text-transform: uppercase;
    color: #009e4d;
    font-size: 72px;
    line-height: 68px;
    font-weight: 200;
}

.products_sub .row .product_detail .content .profil > a {
    width: 100%;
    height: 350px;
    margin-top: 0px;
}

.products_sub .row .product_detail .content .profil > a > img.main {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products_sub .row .product_detail .content .profil > a > img.more {
    position: absolute;
    width: 30px;
    bottom: 30px;
    right: 40px;
    display: none;
}

.products_sub .row .product_detail .content .profil .row {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.products_sub .row .product_detail .content .profil .row > a {
    width: 46%;
    height: 280px;
}

.products_sub .row .product_detail .content .profil .row > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products_sub .row .product_detail .content .desc {
    width: 365px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.products_sub .row .product_detail .content .desc > strong,
.products_sub .row .product_detail .content .desc .colored > strong {
    font-weight: 200;
    font-size: 40px;
    text-transform: uppercase;
}

.products_sub .row .product_detail .content .desc > span,
.products_sub .row .product_detail .content .desc .colored > span {
    font-weight: 400;
    font-size: 14px;
    display: block;
}

.products_sub .row .product_detail .content .desc > span,
.products_sub .row .product_detail .content .desc .colored > span:not(.center) { margin: 30px 0; }

.products_sub .row .product_detail .content .desc .colored > strong,
.products_sub .row .product_detail .content .desc .colored > span { color: #009e4d; }

.products_sub .row .product_detail .content .desc .colored > a.tel {
    font-size: 43px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #009e4d;
}

.products_sub .row .product_detail .content .desc .colored > a.btn {
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
}

.products_sub .row .product_detail .content .desc .colored > span.center {
    text-align: center;
    color: #58595b;
    margin: 20px 0 25px 0;
}

.products_sub .row .product_detail .content .numbers {
    display: flex;
    flex-direction: column;
    width: 222px;
}

.products_sub .row .product_detail .content .numbers .ruler {
    width: 100%;
    height: auto;
}

.products_sub .row .product_detail .content .numbers .sizes {
    width: 142px;
    margin-top: 15px;
}

.products_sub .row .product_detail .content .numbers .sizes > span {
    color: #58595b;
    font-size: 14px;
    display: block;
}

.products_sub .row .product_detail .content .numbers .sizes > span sub { margin-left: -6px; }

.products_sub .row .product_detail .content .numbers .sizes > strong {
    color: #58595b;
    font-size: 24px;
}

.products_sub .row .product_detail .content .numbers .sizes.abs {
    position: absolute;
    left: 0;
    top: 0px;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #58595b;
}

.products_sub .row .product_detail .content .numbers .sizes.abs.TCG01,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG11 { top: 113px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG02,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG16 { top: 162px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG03 { top: 127px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG04,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG17 { top: 106px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG05,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG07,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG13 { top: 148px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG06,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG12 { top: 183px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG08,
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG14 { top: 78px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG09, 
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG10 { top: 43px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.TCG15 { top: 217px; }
.products_sub .row .product_detail .content .numbers .sizes.abs.Multiplay { top: 190px; }

.products_sub .row .product_detail .content .numbers .line {
    width: 100%;
    height: 1px;
    background-color: #009e4d;
    margin: 20px 0;
}

.products_sub .row .product_detail .content .numbers .kg {
    width: 54px;
    height: auto;
}

.products_sub .row .product_detail .content .numbers .sizes.weight > p {
    color: #58595b;
    font-size: 24px;
    line-height: 24px;
    display: inline-block;
    margin-left: 5px;
}
.products_sub .row .product_detail .content .numbers .sizes.weight > p sup { font-size: 14px; }

.products_sub .thanks_2 {
    position: absolute;
    left: calc(50% - 200px);
    top: calc(50% - 75px);
    width: 400px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 158, 77, 0.95);    
}

.products_sub .thanks_2 > span {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.abs_form_cont {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 158, 77, 0.95);
    transform-origin: center;
    transform: scale(0);
    opacity: 0;
    transition: all .25s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 100%;
    z-index: 1100;
}

.abs_form_cont.visible {
    transform: scale(1);
    opacity: 1;
    border-radius: 0;
}

.abs_form_cont > div { width: 365px; }

.abs_form_cont > div .exit {
    position: absolute;
    right: -30px;
    top: -15px;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.abs_form_cont h4 { 
    color: #fff; 
    font-size: 23px;
}

.abs_form_cont form { width: 100%; }

#order input[type=text], 
#order textarea {
    border-bottom: 1px solid #fff;
    color: #fff;
}

#order ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: rgb(255, 255, 255);
}
#order :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
}
#order ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
}
#order :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(255, 255, 255);
}
#order ::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(255, 255, 255);
}

#order input.error,
#order textarea.error { border-bottom: 2px dashed #e20b0b; }

#order input.error::-webkit-input-placeholder { color: #e20b0b; }
#order input.error:-moz-placeholder { color: #e20b0b; }
#order input.error::-moz-placeholder { color: #e20b0b; }
#order input.error:-ms-input-placeholder { color: #e20b0b; }
#order input.error::-ms-input-placeholder { color: #e20b0b; }

/* --------------------------- */
/* INSTALLATION SUBPAGE */
/* --------------------------- */

.install_sub {
    padding: 50px 40px;
}

.install_sub .row {
    margin-top: 30px;
    display: flex;
    width: 85%;
    height: auto;
    justify-content: space-between;
}

.install_sub .row .left,
.install_sub .row .right { max-width: 670px; }

.install_sub .row .line {
    width: 1px;
    height: auto;
    background-color: #009e4d;
}

.install_sub .row .right > img {
    width: 22.65vw;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
}

/* --------------------------- */
/* CONTACT SUBPAGE */
/* --------------------------- */

.contact_sub .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.contact_sub .row .left .info { font-size: 14px; }

.contact_sub .row .left .info > span { display: block; }

.contact_sub .row .left .form_cont { 
    width: 370px; 
    margin-top: 40px;
}

.contact_sub .row .left .form_cont h4 { color: #009e4d; }

#mailus {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

input[type=text], 
textarea {
    width: 100%;
    background: none;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-bottom: 1px solid #000;
    color: #000;
    height: 30px;
    margin-top: 30px;
}

textarea { 
    resize: none; 
    height: 50px;
}

#mailus input[type=text]:first-child { margin-top: 0px; }

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: rgba(0, 0, 0, 1);
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #000;
    opacity:  1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #000;
    opacity:  1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 1);
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(0, 0, 0, 1);
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

#mailus input.error,
#mailus textarea.error { border-bottom: 2px dashed #e20b0b; }

#mailus input.error::-webkit-input-placeholder { color: #e20b0b; }
#mailus input.error:-moz-placeholder { color: #e20b0b; }
#mailus input.error::-moz-placeholder { color: #e20b0b; }
#mailus input.error:-ms-input-placeholder { color: #e20b0b; }
#mailus input.error::-ms-input-placeholder { color: #e20b0b; }

#mailus .btn {
    width: 100%;
    margin-top: 50px;
    text-transform: uppercase;
    justify-content: center;
}

.contact_sub .row .left .form_cont .thanks {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    background-color: rgba(255, 255, 255, 0.92);
}

.contact_sub .row .left .form_cont .thanks > span { text-align: center; }

.contact_sub .row #loc_map {
    height: 610px;
    width: calc(100% - 470px);
}

/* --------------------------- */
/* FOOTER */
/* --------------------------- */

footer {
    width: 100%;
    height: auto;
}

footer .top {
    display: flex;
}

footer .top .left {
    padding: 90px 18.75vw 90px 40px;
    width: 65%;
    background-color: #009e4d;
    display: flex;
    justify-content: space-between;
}

footer .top .left span { color: #fff !important; }

footer .top .left ul {
    font-size: 14px;
    font-weight: 400;
    list-style: none;
    text-transform: uppercase;
    width: fit-content;
    width: -moz-fit-content;
}

footer .top .left ul li a { color: #fff; }

footer .top .left ul li:not(:first-child),
footer .top .left .address_box > span:not(:first-child) { margin-top: 15px; }

footer .top .left .address_box > span:last-child { margin-top: 0; }

footer .top .left .address_box {
    width: fit-content;
    width: -moz-fit-content;
    font-size: 14px;
}

footer .top .left .address_box > span { display: block; }

footer .top .right {
    width: 35%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(alu-cups.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .top .right > div {
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #009e4d;
    box-shadow: 5px 5px 30px 0 rgba(0,0,0,0.33);
}

footer .top .right > div > div {
    width: 65%;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

footer .top .right > div > div > a {
    display: block;
    height: 100%;
    width: auto;
}

footer .top .right > div > div > a > img {
    height: 100%;
    width: auto;
}

footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 40px;
    background-color: #009447;
}

footer .bottom > a {
    font-size: 14px;
    color: #fff;
}
