*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: Brushup;
    src: url(../assets/Brush\ Up\ Too.woff);
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;700;900&display=swap');
body{
    position: relative;
    width: 100%;
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
.container{
    max-width: 1440px;
    width: 100%;
    margin: auto;
}
header{
    position: relative;
    z-index: 2;

}
header:after{
    z-index: -1;
    background: url(../assets/hatter.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -2;
}
nav{
    position: absolute;
    top: 20px;
    left: 50%;
    margin-right: -50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
}
nav .container{
    display: flex;
    width: 100%;
    align-items:center;

}
nav .container .logo {
    max-width: 220px;
}
nav .container .logo img{
    margin-bottom: 0;
}
.menu{
    display: flex;
    border-bottom: 2px solid #8FC045;
    width: 100%;
}
.menu li a{
    text-decoration: none;
    color: #81ad3e;
    font-size: 24px;
    text-transform: uppercase;
    margin: 10px 25px;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
    color: unset;
}
main{
    position: relative;
    z-index: 2;


}
main:after{
    background: url(../assets/hatter.webp);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;

}
.about{
    transform: translateY(-100px);
    z-index: 3;
    position: relative;
}
.pattern-graph{
    position: absolute;
    max-width: 35%;
    top: 40%;
    transform: translateY(-50%);
    left: -8%;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 28000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: spin;
    -moz-animation-duration: 28000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: spin;
    -ms-animation-duration: 28000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 28000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin { 
    from { 
        -ms-transform: translateY(-50%) rotate(0deg); 
    } to { 
        -ms-transform: translateY(-50%) rotate(360deg); 
    }
}
@-moz-keyframes spin { 
    from { 
        -moz-transform: translateY(-50%) rotate(0deg); 
    } to { 
        -moz-transform: translateY(-50%) rotate(360deg); 
    }
}
@-webkit-keyframes spin { 
    from { 
        -webkit-transform: translateY(-50%) rotate(0deg); 
    } to { 
        -webkit-transform: translateY(-50%) rotate(360deg); 
    }
}
@keyframes spin { 
    from { 
        transform: translateY(-50%) rotate(0deg); 
    } to { 
        transform: translateY(-50%) rotate(360deg); 
    }
}
.product-name{
    font-weight: bold;
    font-size: 26px;
}
.pattern-2{
    position: absolute;
    bottom: 18%;
    right: 0;
    z-index: -1;
}
.product{
    background: url(../assets/product-bg.webp);
    min-height: 80vh;
    position: relative;
    z-index: 2;
    margin-top: -6px;
    overflow: hidden;
}
.center{
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}
.center h2{
    margin-bottom: 10px;
}
h2{
    font-family: 'Brushup';
    font-size: 50px;
    color: #8fc045;
    letter-spacing: 8px;
}
h3{
    color: #8fc045;
}
p{
    font-size: 17px;
    line-height: 1.4em;
}
.underline{
    max-width: 600px;
    height: 12px;
    background: #8fc045;
    margin: auto;
    border-radius: 50%;
}
.row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
}
.md-2, .md-3, .md-4, .md-5, .md-6, .md-8, .md-9, .md-12{
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}
.md-2{
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.md-3{
    flex: 0 0 25%;
    max-width: 25%;
}
.md-4{
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.md-5{
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}
.md-6{
    flex: 0 0 50%;
    max-width: 50%;
}
.md-8{
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.md-9{
    flex: 0 0 75%;
    max-width: 75%;
}
.md-10{
    flex: 0 0 83.333335%;
    max-width: 83.333335%;
}
.md-12{
    flex: 0 0 100%;
    max-width: 100%;
}
.box{
    padding: 10px;
    margin: auto;
}
.owl-carousel{
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}
.owl-stage{
    padding: 60px 0;
}
.active{
    transition: .4s;
}
.item{
    transition: .4s;
    display: block;
}
.item-image{
    border-radius: 50%;
    width: 100%;
    background: #8fc045;
    margin-bottom: -30px;
    position: relative;
    border: 15px solid white;
}
.item-image img{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform:translate(-50%, -50%);
    min-width: 110%;
    zoom: .1;
}
.item-image:after{
    display: block;
    content: '';
    padding-bottom: 100%;
}
.item-name{
    background: #8fc045;
    padding: 30px 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
}
.top-path{
    margin-bottom: -15px;
    width: calc(100% + 3px);
    transform: translateX(-2px);
    transition: .4s;

}
.top-path svg{
    width: 100%;
}

.owl-carousel .center .item-image, .owl-carousel .center .item-name{
    color: black;
    background: white!important;
    transition: .4s;

}
.owl-carousel .center .item-image{
    border: 15px solid #8FC045;
    transition: .8s!important;

}
.owl-carousel .center{
    transform: scale(1.2)!important;
    margin-top: 0;
    transition: .4s;
    overflow: hidden;

}
.st0{fill:#3A2622;}
	.st1{fill:#056939;}
	.st2{fill:#8FC045;}
	.st3{fill:#FFFFFF;}
	.st4{fill:none;}
	.st5{clip-path:url(#SVGID_00000063632746221306120520000001457637237275938977_);}
	.st6{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#927E78;}
	.st7{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#B36C62;}
	.st8{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#CFD062;}
	.st9{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#F5A680;}
	.st10{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EE7468;}
	.st11{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#7B725A;}
	.st12{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#78725B;}
	.st13{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#C2CD64;}
	.st14{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#8FC045;}
	.st15{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#969952;}
	.st16{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EE7663;}
	.st17{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#838A41;}
	.st18{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#879643;}
	.st19{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#956263;}
	.st20{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EF7B6B;}
	.st21{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#666B3B;}
	.st22{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EF7D58;}
	.st23{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EA5240;}
	.st24{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#EE7236;}
	.st25{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#7F8B30;}
	.st26{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#DF523A;}
	.st27{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#E94A2F;}
	.st28{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:#B4504D;}
	.st29{clip-path:url(#SVGID_00000057123354471304270200000010512127169322844066_);fill:none;}
	.st30{fill:url(#);}
	.st31{fill:#BE1622;}
	.st32{fill:#A21C26;}
	.st33{fill:#382B27;}
	.st34{fill:#9EBF50;}
	.st35{fill:#3C683E;}
	.st36{opacity:0.3;fill:url(#);}
	.st37{fill:none;stroke:#362A25;stroke-width:6;stroke-miterlimit:10;}
	.st38{fill:none;stroke:#9EBF50;stroke-width:5;stroke-miterlimit:10;}
	.st39{fill:#352924;}
	.st40{fill:#BB8676;}
	.st41{fill:#36241F;}
	.st42{fill:#CD8776;}
	.st43{opacity:0.59;}
	.st44{fill:none;stroke:#36241F;stroke-width:3;stroke-miterlimit:10;}
	.st45{opacity:0.1;fill:url(#);}
	.st46{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#927E78;}
	.st47{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#B36C62;}
	.st48{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#CFD062;}
	.st49{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#F5A680;}
	.st50{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EE7468;}
	.st51{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#7B725A;}
	.st52{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#78725B;}
	.st53{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#C2CD64;}
	.st54{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#8FC045;}
	.st55{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#969952;}
	.st56{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EE7663;}
	.st57{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#838A41;}
	.st58{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#879643;}
	.st59{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#956263;}
	.st60{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EF7B6B;}
	.st61{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#666B3B;}
	.st62{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EF7D58;}
	.st63{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EA5240;}
	.st64{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#EE7236;}
	.st65{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#7F8B30;}
	.st66{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#DF523A;}
	.st67{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#E94A2F;}
	.st68{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:#B4504D;}
	.st69{clip-path:url(#SVGID_00000068678332393382516850000009468278858597137812_);fill:none;}
	.st70{opacity:0.8;clip-path:url(#SVGID_00000065757157705948035240000017568282993491808681_);}
	.st71{opacity:0.8;}
	.st72{clip-path:url(#SVGID_00000156557220949667884430000001036870309013033385_);}
	.st73{clip-path:url(#SVGID_00000032635595608640295320000016622093691987187080_);}
	.st74{clip-path:url(#SVGID_00000000945260354668466300000009180983142914460349_);fill:#3A2622;}
	.st75{clip-path:url(#SVGID_00000000945260354668466300000009180983142914460349_);fill:none;}
	.st76{clip-path:url(#SVGID_00000000945260354668466300000009180983142914460349_);fill:url(#);}
	.st77{opacity:0.59;clip-path:url(#SVGID_00000000945260354668466300000009180983142914460349_);}
	.st78{clip-path:url(#SVGID_00000000945260354668466300000009180983142914460349_);}
	.st79{clip-path:url(#SVGID_00000036241456749359524920000003577894088216096410_);}
	.st80{clip-path:url(#SVGID_00000027578636052127612660000002018419890307194264_);}
	.st81{clip-path:url(#SVGID_00000021841770597602109510000001288826254138133410_);}

.owl-carousel .center .st2{
        fill: white!important;
        transition: .4s;

}
.owl-carousel .center{
    transition: .4s!important;

}
.owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.owl-prev{
    position: absolute;
    left: -75px;
    width: 70px!important;
    height: 70px!important;
    background-image: url(../assets/balranyil.svg)!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
}
.owl-next:hover{
    background-color: none!important;
}
.owl-prev span, .owl-next span{
    display: none!important;
}
.owl-next{
    position: absolute;
    right: -75px;
    width: 70px!important;
    height: 70px!important;
    background-image: url(../assets/jobbranyil.svg)!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
}
li{
    list-style: none;
    margin: 10px 0;
}
.contact{
    position: relative;
    padding: 30px 0;
    background: url(../assets/contact-bg.webp);
    color: black!important;
}
.contact b{
    font-size: 26px;
}
.contact li{
    font-size: 20px;
}
.logo img{
    max-width: 340px;
    margin-bottom: 20px;
}
form{
    border: 6px solid rgba(0,0,0,.3);
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 39px -15px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 39px -15px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 39px -15px rgba(0,0,0,0.4);
}
form:after{
    background: rgba(255,255,255,.5);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(10px);
}
form label{
    display: block;
    margin: 12px auto;
}
form input, form textarea{
    background: transparent;
    padding: 20px 12px;
    width: 100%;
    border: 3px solid #8fc045;
    border-radius: 25px;
    outline: 0;
}
form textarea{
    border-bottom-right-radius: 0;
}
.btn-send{
    background: #8fc045;
    padding: 20px 40px;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    font-weight: bolder;
    letter-spacing: 2px;
    border-radius: 35px;
    border-top-right-radius: 0;
}
.btn-box{
    text-align: right;
}
.footer-logo{
    display: inline-block;
    max-width: 200px;
}
.green-color{
    color: #8fc045;
}
.flexed{
    display: flex;
    align-items: center;
}
.red-color{
    color: #cd8776;
    font-size: 18px;
    font-weight: bolder;
}
.br-right{
    border-right: 2px solid #cd8776;
    padding-left: 20px;
}
footer{
    padding: 30px 0;
}
.tulajdonsagok{
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    left: 30%;
    font-family: 'Brushup';
    font-size: 40px;
}
.tulajdonsagok li{
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 76px;
    padding: 30px;
}
.tulajdonsagok li:nth-child(1){
    background: url(../assets/zoldcsik1.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.tulajdonsagok li:nth-child(2){
    background: url(../assets/zoldcsik2.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.tulajdonsagok li:nth-child(3){
    background: url(../assets/zoldcsik3.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.mobile-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    display: none;
}
.mobile-btn span{
    width: 32px;
    height: 3px;
    background: #8FC045;
    margin: 4px auto;
    display: block;
    border-radius: 2px;

}
.close{
    display: none;
}
.bg-green{
    background: #8FC045;
    padding: 30px 10px;
    border-top-right-radius: 30px;
    position: relative;
    z-index: 0;
}
.bg-green:before{
    height: 100%;
    width: 100%;
    left: -100%;
    content: '';
    background: #8FC045;
    position: absolute;
    top: 0;

}
.product-page{
    background: url(../assets/contact-bg.webp);
    min-height: 60vh;
    padding-top: 160px;
}
.tr-120{
    margin-top: -230px;
    position: relative;
    z-index: 1;
}
.cr-black{
    color: black;
    text-align: center;
    font-size: 20px;
}
.pt{
    margin-top: 230px;
}
table{
    color: black;
    width: 100%;
}
table, th, td{
    border: 2px solid black;
    border-collapse: collapse;
    padding: 10px;
}
.description-box{
    background: #8FC045;
    padding: 15px;
    border-top-right-radius: 25px;
    position: relative;
    color: black;
    margin-top: -90px;
    z-index: -1;
    padding-top: 30px;
}
.tr-120 .md-6{
    padding: 0;
}
.description-box:after{
    height: 100%;
    width: 100%;
    left: -100%;
    position: absolute;
    background: #8FC045;
    content: '';
    top: 0;
    z-index: -1;
}
.description-box:before{
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-image: url(../assets/header-pattern-2.webp);
    content: '';
    background-position: bottom left;
    opacity: .6;
}
.vendor{
    color: black;
}
.vendor h3{
    font-size: 26px;
    margin-bottom: 20px;
}
.vendor p{
    font-size: 20px;
    font-weight: bold;
}
@media (max-width: 1024px) {
    .product-page{
        padding-top: 30px;
    }
    .bg-green{
        border-radius: 0;
        padding: 10px;
    }
    .tr-120{
        margin-top: 00px;
    }
    .pt{
        padding-top: 10px;
        margin-top: 10px;
    }
    .center{
        transform: scale(1);
    }
    .product-name{
        font-size:16px;
    }
    .description-box{
        margin-top: 10px;
    }
    .row{
        display: block;
    }
    .md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }   
    .br-right{
        border-right: 0;
    }
   
    .tulajdonsagok{
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
    }
    .tulajdonsagok li{
        height: 35px;
        padding: 15px 0;
        margin: 12px auto;
    }
    .mobile-btn{
        display: block;
    }
    .about{
        transform: translateY(0px);
    }
    .close{
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #8FC045;
        display: block;
    }
    .menu{
        position: fixed;
        top: 0;
        right: 0;
        width: 18rem;
        display: block;
        height: 100vh;
        background: #352924;
        z-index: 100;
        transform: translateX(18rem);
        transition: .3s;
        padding-top: 80px;
    }
    .menu li a{
        font-size: 16px;
        margin: 16px 12px;
        padding: 6px;
        display: block;
    }
    .menu-active{
        transform: translateX(0rem);
    }
    nav{
        position: sticky;
        position: -webkit-sticky;
        top: 0px;
        z-index: 100;
        background: #352924;
    }
    nav .container .logo{
        max-width: 150px;
    }
}
@media(max-width:600px){
    .item{
        transition: .4s;
        max-width: 230px!important;
        margin: auto;
    }
    .center{
        transform: scale(1)!important;
    }
    .owl-prev, .owl-next{
        width: 40px!important;
        height: 40px!important;
    }
    .owl-prev{
        left: -10px;
    }
    .owl-next{
        right: -10px;
    }
    .pattern-2{
        bottom: 10%;
    }
}