@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
}

section {
    height: 100%;
    border-bottom: 1px solid rgb(201, 201, 201);
    width: 80%;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer {
    min-height: 4vw;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

img {
    width: 40vw;
    height: auto;
    padding-bottom: 2%;
}

h1 {
    font-size: 4vw;
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    hyphens: auto;
}

p {
    margin: 0;
    padding: 0;
    font-size: 3vw;
    font-style:normal;
    font-weight: 500;
}

.navtop {
    width: 100%;
    padding-top: 2%;
    background-color: transparent;
    text-align: center;
    overflow: hidden;
}

.navtop a {
    float: left;
    font-size: 40px;
    text-decoration: none;
    color:black;
}
.navtop a:hover {
    color: rgb(73, 73, 73);
}

.navtop a.active {
    color:rgb(54, 57, 240);
}

.navtop-right {
    float: right;
    padding-right: 10%;
}

#abm {
    font-size: 2vw;
    font-weight: 300;
}

.navtop-left {
    padding-left: 10%;
}

#navimg {
    width: 2vw;
    height: 2vw;
}

#lmp {
    font-size: 2vw;
}

.pagewrapper {
    width: 100%;
    align-items: center;
    justify-items: center;
}

#herowrapper {
    width: 80%;
    margin: auto;
    display: flex;
    justify-items: center;
    align-items: center;  
    padding-top: 2%;
    padding-bottom: 2%;
}

#heroimage {
    width: 40vw;
    height: auto;
}

.heroimage {
    
    width: 25%
}

.herotext {
    text-align: left;
    width: 50%;
}

.smallflex {
    width: 35%;
    height: 100%;
    min-height: 8vw;
    text-align: left;
    padding-bottom: 3%;
   
}

.smallflexone {
    width: 45%;
    height: 100%;
    min-height: 8vw;
    text-align: left;
    padding-bottom: 5%;
}



.bigflex {
    width: 100%;
  
}

.flexwrap {
    padding-top: 5%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}

.logowrap {
    padding-top: 5%;
}

.logozeile {
    display: flex;
    justify-content: center;
    object-fit: contain;
}

.logo {
    padding: 5%;
    height: 7vw;
    width: auto;
    transition: transform .5s;
    
}

.logo:hover {
    transform: scale(1.2);
}

.projektdesc {
    padding-top: 0%;
    font-size: 1.5vw;
    font-weight: 400;
}

.projektdescone {
   
    font-size: 1.3vw;
    font-weight: 300;
}

.projekttitel {
    margin: 0;
    padding: 0;
    font-size: 2.5vw;
}

.titeldesc {
    font-size: 1.5vw;
    font-weight: 300;
    
}

.projektlink {
    text-decoration: none;
    font-weight: 600 ;
    font-size: 1.5vw;
    line-height: 250%;
    color: black;
}

.heroinfo {
    line-height: 100%;
    margin: 0;
}

.footerlink {
    text-decoration: none;
    color: #13505B;
    font-size: 1.5vw;
    margin-left: 3%;
}

.printmockup {
    width: 95%; 
    border-radius: 25px;
    padding: 0;
    transition: transform .6s;
}

#logotext {
    font-size: 2.5vw;
    font-weight: 400;
    
}
  
.printmockup:hover {
    transform: scale(1.03);
}
.accordion {
    margin-top: 0.5rem;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 1rem 1rem;
    font: inherit;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 0.25rem;
    font-size: 1.5vw;
    color:#13505B;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-trigger[aria-expanded="true"] {
    font-weight: 600;
}

.accordion-trigger {
    position: relative;
    padding-left: 2rem; 
}

.accordion-trigger::before {
    content: "›"; 
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 2rem; 
    transition: transform 0.25s ease;
    opacity: 0.8;
}

.accordion-trigger[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(90deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem; 
    opacity: 0;
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 5px;
    margin-bottom: 0.75rem;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding-top 0.25s ease,
        padding-bottom 0.25s ease;
}

.accordion-panel.is-open {
    max-height: 1000px; 
    opacity: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
}

@media only screen and (max-width: 688px) { 
    section {
        width: 100%;
        padding: 0 6vw;
        box-sizing: border-box;
    }

    .smallflex {
        width: 75%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        
    }

    .smallflexone {
        width: 75%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .smallflex:nth-child(2) {
        margin-left: 20%;
    }

    .flexwrap {
        display: flex;
        padding-bottom: 5%;
    }

    .titeldesc {
       font-size: 4vw;
    }

    .projekttitel {
       font-size: 7vw;
    }

    .projektdesc {
    font-size: 4vw;
    padding-bottom: 5%;
    font-weight: 400;
    }

    .projektdescone {
        font-size: 4vw;
        padding-bottom: 5%;
        font-weight: 300;
        padding-top: 0;
        padding-left: 3%;
    }

    .projektlink {
        font-size: 3vw;
    }

    .heroimage {
        width: 100%;
    }

    .herotext {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #herowrapper {
        width: 100%;
        display: block;
        padding-top: 10%;
        padding-bottom: 8%;
    }

    h1 {
        font-size: 9vw;
    }

    .heroinfo {
        font-size: 6.5vw;
    }

    #tgmu {
        width: 80vw;
        height: auto;
    }

    #abm {
        font-size: 5vw;
        font-weight: 300;
    }

    #lmp {
        font-size: 5vw;
    }

    .logowrap {
        padding-top: 5%;
    }
    
    .logozeile {
        display: inline-block;
        justify-content: center;
        object-fit: contain;
    }
    
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 20vw;
        width: auto;
    }
    
    .logo:hover {
        transform: scale(1.5);
    }

    #logotext {
        font-size: 7vw;
        font-weight: 400;
        padding-bottom: 5%;
    }

    footer {
        padding-top: 2%;
        height: 10vw;
        width: 100%;
    }

    .footerlink {
        font-size: 4vw;
        padding-right: 2%;
    }

    .accordion-trigger {
        font-size: 4vw;
    }  
}


