/*---basic---*/

body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}

*, *::after, *::before{
    font-family: 'ptSansRegular', sans-serif;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

img, svg, iframe{
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'ptSansBold';
    margin-top: 0;
    margin-bottom: 0.75rem;
}

p{
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1rem;
    color: rgb(50,50,50);
}

a, a:hover{
    cursor: pointer;
    text-decoration: none;
}

ul{
    margin-top: 0;
    margin-bottom: 0;
}

/*---basic_end---*/

/*---framework---*/

.d-large{
    display: block;
}

.d-small{
    display: none;
}

.section{
    margin-left: 20%;
    margin-right: 20%;
}

.section-large{
    margin-left: 10%;
    margin-right: 10%;
}

.top-space{
    margin-top: 50px;
    margin-bottom: 50px;
}

.top-space-large{
    margin-top: 75px;
    margin-bottom: 75px;
}

.center{
    display: flex;
    justify-content: center;
}

.center-middle{
    display: flex;
    justify-content: center;
    align-items: center;
}

.pos-right{
    display: flex;
    justify-content: flex-end;
}

.pos-hor-flex-end{
    display: flex;
    align-items: flex-end;
}

.wide-full{
    width: 100%;
    height: auto;
}

.height-full{
    width: auto;
    height: 100%;
}

#btt-button {
    display: none;
    position: fixed;
    z-index: 10000;
    bottom: 3%;
    right: 3%;
    cursor: pointer;
    width: 30px;
}

.para{
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*---framework_animation---*/

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/*---framework_animation_end---*/

/*---framework_end---*/

/*---header---*/

header{
    padding-top: 5px;
    padding-bottom: 15px;
}

.header_contact{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header_contact p,
.header_contact span,
.header_contact a{
    font-family: 'ptSansBold';
    text-align: right;
    color: rgb(0,133,62);
}

.header_contact p{
    margin: 0;
}

.header_contact span{
    margin: 0 10px;
}

.header_contact a:hover{
    color: rgb(50,50,50);
}

.header_content{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header_logo{
    width: 20%;
}

.header_logo img{
    width: 100%;
}

/*---nav---*/

nav{
    width: 70%;
}

nav ul{
    display: flex;
    justify-content: space-between;
    padding: 0;
}

nav li{
    list-style: none;
}

nav a{
    font-family: 'ptSansBold';
    position: relative;
    color: rgb(50,50,50); 
}

nav a::after{
    content: 
        url(../link/graphic_quarter_circle-green.svg);
    position: absolute;
    top: -7.5px;
    left: -10px;
    width: 12.5px;
    height: 12.5px;
    opacity: 0;
}

nav a:hover::after{
    opacity: 1;
}

/*---nav_end---*/

.banner_index{
    background-image:
        url(../link/img/banner/banner_index.jpg);
    display: flex;
    align-items: center;
    width: 100%;
    height: 80vh;
    margin: 35px 0;
}

.banner_index_txt{
    margin-left: 10%;
}

.banner_index_txt p{
    font-family: 'ptSansBold';
    font-size: 6vh;
    line-height: 1;
    position: relative;
    margin: 0;
    padding-bottom: 15px;
    color: rgb(255,255,255);
}

.banner_index_txt p::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255,255,255);
}

.banner_index_txt span{
    font-family: 'ptSansBold';
    font-size: 11vh;
}

.banner_main{
    margin: 35px 0;
}

.banner_main img{
    width: 100%;
    height: auto;
}

/*---header_end---*/

/*---content---*/

.sec01{
    display: flex;
    margin-bottom: 100px;
}

.sec01_hl{
    position: relative;
    margin-top: -150px;
    margin-right: 50px;
}

.sec01_hl::after{
    content: 
        url(../link/graphic_quarter_circle-green.svg);
    position: absolute;
    top: -35px;
    left: -35px;
    width: 125px;
}

.sec01_hl h1{
    padding: 125px 25px 25px 25px;
    color: rgb(255,255,255);
    background-color: rgb(64,156,98);
}

.sec01_txt{
    width: 60%;
    margin-top: 50px;
}

.sec01_txt span{
    font-family: 'ptSansBold';
    font-size: 1.75em;
    line-height: 1;
}

.sec01_txt a{
    font-family: 'ptSansBold';
    color: rgb(0,133,62);
}

.sec01_txt a:hover{
    color: rgb(50,50,50);
}

.index_sec01{
    padding-left: 40px;
}

.index_sec01 h1{
    font-size: 4em;
    position: relative;
}

.index_sec01 h1::after{
    content: 
        url(../link/graphic_quarter_circle-green.svg);
    position: absolute;
    top: -40px;
    left: -40px;
    width: 40px;
}

.index_sec01 p{
    width: 50%;
}

.index_sec02{
    display: flex;
    align-items: center;
    margin: 150px 0;
}

.index_sec02_txt{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding: 35px 0;
    background-color: rgba(0,133,62,0.9);
    mix-blend-mode: multiply;
}

.index_sec02_txt_content{
    width: 40%;
}

.index_sec02_txt h2{
    font-size: 4em;
    line-height: 1;
    margin-bottom: 15px;
    color: rgb(255,255,255);
}

.index_sec02_txt p{
    margin-bottom: 15px;
    color: rgb(255,255,255);
}

.index_sec02_txt a{
    font-family: 'ptSansBold';
    color: rgb(255,255,255)
}

.index_sec02_txt a:hover{
    color: rgb(50,50,50)
}

.index_sec02_pic{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.index_sec02_pic img{
    width: 45%;
    height: auto;
}

.index_sec03_hl h3{
    font-size: 4em;
    text-align: center;
    margin-bottom: 15px;
}

.index_sec03_hl a{
    font-family: 'ptSansBold';
    display: flex;
    justify-content: center;
    color: rgb(0,133,62);
}

.index_sec03_hl a:hover{
    color: rgb(50,50,50);
}

.index_sec03_seperate-line{
    width: 100%;
    height: 2px;
    margin: 25px 0;
    background-color: rgb(50,50,50);
}

.index_sec03_content{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
}

.index_sec03_item{
    position: relative;
}

.index_sec03_item::after{
    content: 
        url(../link/graphic_quarter_circle-green.svg);
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -25px;
    width: 25px;
}

.index_sec03_item p{
    font-family: 'ptSansBold';
    font-size: 1.5em;
    line-height: 1;
    margin: 0;
}

.profil_sec02_txt-pos{
    display: flex;
    justify-content: flex-end;
}

.profil_sec02_txt{
    position: relative;
    z-index: 2;
    margin-bottom: -450px;
    padding: 25px 25px 500px 25px;
    background-color: rgba(0,133,62,0.9);
    mix-blend-mode: multiply;
}

.profil_sec02_txt p{
    font-family: 'ptSansBold';
    font-size: 3em;
    line-height: 1;
    margin-bottom: 15px;
    color: rgb(255,255,255);
}

.profil_sec02_txt a{
    font-family: 'ptSansBold';
    display: flex;
    justify-content: flex-end;
    color: rgb(50,50,50);
}

.profil_sec02_txt a:hover{
    color: rgb(255,255,255);
}

.profil_sec02_pic{
    display: flex;
    justify-content: center;
    width: auto;
    height: 750px;
    overflow: hidden;
}

.profil_sec02_pic img{
    width: auto;
    height: 100%;
}

.produktion_sec02_pic{
    position: relative;
    margin-bottom: 75px;
}

.produktion_sec02_pic::after{
    content: 
        url(../link/graphic_quarter_circle-green.svg);
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    transform: rotate(180deg);
}

.produktion_sec02_pic img{
    width: 100%;
    height: auto;
}

.produktion_sec02_txt h2{
    font-size: 3em;
    line-height: 1;
    margin-bottom: 25px;
    color: rgb(50,50,50);
}

.produktion_sec02_txt_content{
    display: flex;
    justify-content: space-between;
}

.produktion_sec02_txt_content p{
    width: 49.5%;
}

.produktion_sec02_bg_graphic{
    position: relative;
    z-index: -1;
    width: 90%;
    height: 750px;
    margin-top: -700px;
    background-color: rgb(245,245,245);
}

.verarbeitung_sec02_pic-01{
    width: 35%;
}

.verarbeitung_sec02_txt{
    margin-top: -250px;
}

.verarbeitung_sec02_txt h2{
    font-size: 3em;
    line-height: 1;
    margin-bottom: 25px;
    margin-left: 40%;
    color: rgb(50,50,50);
}

.verarbeitung_sec02_txt p{
    padding: 50px 35% 150px 40%;
    color: rgb(255,255,255);
    background-color: rgb(0,133,62);
    mix-blend-mode: multiply;
}

.verarbeitung_sec02_pic-02{
    width: 65%;
    margin-top: -125px;
}

.verarbeitung_sec02_bg_graphic{
    width: 90%;
    height: 1000px;
    margin-top: -900px;
    background-color: rgb(245,245,245);
}

.kontakt_sec02_map iframe{
    width: 100%;
    height: 350px;
    border: 10px solid rgb(255,255,255);
}

.kontakt_sec02_bg_graphic{
    background-image:
        url(../link/img/kontakt_sec02_graphic.svg);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: left center;
    width: 100%;
    height: 400px;
    margin-top: -200px;
    background-color: rgb(245,245,245);
}

/*---content_end---*/

/*---footer---*/

footer{
    margin-top: 50px;
    margin-bottom: 20px;
}

.footer_graphic{
    background-image:
        url(../link/footer_graphic_pic.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin-bottom: 20px;
}

.footer_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo img{
    width: 100px;
}

.footer_address p,
.footer_link p,
.footer_contact p{
    margin: 0;
}

.footer_contact a,
.footer_contact p{
    font-family: 'ptSansBold';
    color: rgb(0,133,62);
}

.footer_link a{
    color: rgb(50,50,50);
}

/*---footer_end---*/

@media screen and (min-width: 1367px){}

@media screen and (min-width: 768px) and (max-width: 1366px){

    /*---framework---*/

    .section{
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .section-large{
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .para{
        background-attachment: scroll;
    }

    /*---framework_end---*/

    /*---header---*/

    .banner_index_txt p{
        font-size: 4vh;
    }

    .banner_index_txt span{
        font-size: 8vh;
    }

    .banner_main{
        display: flex;
        justify-content: center;
        width: auto;
        height: 550px;
        overflow: hidden;
    }
    
    .banner_main img{
        width: auto;
        height: 100%;
    }

    /*---header_end---*/

    /*---content---*/

    .sec01_hl h1{
        font-size: 1.75em;
    }

    .index_sec01 p{
        width: 75%;
    }

    .index_sec02_txt_content{
        width: 55%;
    }

    .index_sec02_txt h2{
        font-size: 2em;
    }

    .index_sec03_item p{
        font-size: 1.25em;
    }
    
    .produktion_sec02_pic::after{
        right: -25px;
        bottom: -25px;
        width: 125px;
    }
    
    .produktion_sec02_txt_content p{
        width: 48%;
    }
    
    .produktion_sec02_bg_graphic{
        width: 95%;
    }

    .verarbeitung_sec02{
        margin-top: 200px;
    }

    .verarbeitung_sec02_txt{
        margin-top: -100px;
    }
    
    .verarbeitung_sec02_txt h2{
        font-size: 1.75em;
    }
    
    .verarbeitung_sec02_txt p{
        padding-right: 12.5%;
    }
    
    .verarbeitung_sec02_pic-02{
        margin-top: -75px;
    }
    
    .verarbeitung_sec02_bg_graphic{
        height: 950px;
        margin-top: -850px;
    }

    /*---content_end---*/

    /*---footer---*/

    .footer_logo img{
        width: 50px;
    }

    .footer_address p,
    .footer_link p,
    .footer_contact p{
        font-size: 0.85em;
        margin: 0;
    }

    /*---footer_end---*/

}

@media screen and (max-width: 767px){

    /*---framework---*/
    
    .d-large{
        display: none;
    }
    
    .d-small{
        display: block;
    }

    .section,
    .section-large{
        margin-left: 5%;
        margin-right: 5%;
    }

    .para{
        background-attachment: scroll;
    }

    /*---framework_end---*/

    /*---header---*/

    .header_contact{
        margin-bottom: 15px;
    }

    .header_contact p,
    .header_contact a{
        width: 100%;
    }
    
    .header_contact span{
        display: none;
    }
    .header_logo{
        width: 40%;
    }

    /*---nav---*/

    nav{
        display: flex;
        justify-content: flex-end;
        width: auto;
    }

    .nav_mobile{
        cursor: pointer;
        width: 25px;
    }

    #navOn,
    #navOff{
        animation: fadein 1s;
    }

    #navOff{
        position: relative;
        z-index: 10001;
        display: none;
    }

    #navContent{
        position: absolute;
        z-index: 10000;
        top: -100%;
        left: 0;
        display: flex;
        align-items: center;
        width: 100%;
        height: 85%;
        padding-left: 5%;
        background-color: rgba(0,133,62,0.9);
        border-bottom-right-radius: 150px;
        transition-duration: 0.75s;
    }

    nav ul{
        display: block;
    }

    nav li{
        margin: 3vh 0; 
    }

    nav a{
        font-size: 6vh;
        color: rgb(255,255,255); 
    }

    nav a::after{
        content: 
            url(../link/graphic_quarter_circle-white.svg);
        top: -30px;
        left: -10px;
    }

    /*---nav_end---*/

    .banner_index{
        height: 100vh;
        margin: 15px 0;
    }

    .banner_index_txt{
        margin-left: 5%;
    }

    .banner_index_txt p{
        font-size: 4vh;
    }

    .banner_index_txt span{
        font-size: 8vh;
    }

    .banner_main{
        display: flex;
        justify-content: center;
        width: auto;
        height: 450px;
        overflow: hidden;
    }
    
    .banner_main img{
        width: auto;
        height: 100%;
    }

    /*---header_end---*/

    /*---content---*/

    .sec01{
        display: block;
    }
    
    .sec01_hl{
        display: flex;
        margin: -100px 0 35px 35px;
    }
    
    .sec01_hl h1{
        font-size: 1.5em;
        padding: 125px 15px 15px 15px;
    }
    
    .sec01_txt{
        width: 100%;
        padding-left: 50px;
    }

    .index_sec01 h1{
        font-size: 3em;
    }

    .index_sec01 h1::after{
        top: -20px;
        left: -30px;
        width: 40px;
    }

    .index_sec01 p{
        width: 80%;
    }

    .index_sec02{
        display: block;
    }

    .index_sec02_txt{
        position: relative;
        width: 90%;
        padding: 35px 35px 125px 35px;
    }

    .index_sec02_txt_content,
    .index_sec02_pic img{
        width: 100%;
    }

    .index_sec02_txt h2{
        font-size: 2em;
    }

    .index_sec02_pic{
        margin-top: -100px;
    }

    .index_sec03_hl h3{
        font-size: 3em;
    }
    
    .index_sec03_content{
        display: block;
    }
    
    .index_sec03_item{
        margin-left: 10%;
        margin-bottom: 50px;
    }
    
    .index_sec03_item p{
        font-size: 1.75em;
    }

    .profil_sec02_txt{
        margin-bottom: -200px;
        padding-bottom: 250px;
    }
    
    .profil_sec02_txt p{
        font-size: 1.5em;
    }
    
    .profil_sec02_pic{
        height: 450px;
    }

    .produktion_sec02_pic{
        width: auto;
        height: 250px;
        overflow: hidden;
    }

    .produktion_sec02_pic::after{
        right: 0;
        bottom: 0;
        width: 100px;
    }
    
    .produktion_sec02_pic img{
        width: auto;
        height: 100%;
        margin-top: -25px;
    }
    
    .produktion_sec02_txt h2{
        font-size: 2em;
    }
    
    .produktion_sec02_txt_content{
        display: block;
    }
    
    .produktion_sec02_txt_content p{
        width: 100%;
        margin-bottom: 35px;
    }
    
    .produktion_sec02_bg_graphic{
        height: 900px;
        margin-top: -800px;
    }

    .verarbeitung_sec02_pic-01{
        width: 75%;
    }
    
    .verarbeitung_sec02_txt{
        margin-top: 50px;
    }
    
    .verarbeitung_sec02_txt h2{
        font-size: 2em;
        margin-left: 10%;
    }
    
    .verarbeitung_sec02_txt p{
        padding: 50px 10% 150px 10%;
    }
    
    .verarbeitung_sec02_pic-02{
        width: 95%;
        margin-top: -50px;
    }
    
    .verarbeitung_sec02_bg_graphic{
        width: 90%;
        height: 1000px;
        margin-top: -900px;
        background-color: rgb(245,245,245);
    }

    .kontakt_sec02_bg_graphic{
        background-size: cover;
    }

    /*---content_end---*/

    /*---footer---*/

    .footer_content{
        display: block;
    }

    .footer_logo{
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer_address p,
    .footer_link p,
    .footer_contact p{
        text-align: center;
        margin-bottom: 25px;
    }

    /*---footer_end---*/

}

/*----storage

---*/