/* ////////// FOLDER STACK //////////////////*/

#folders {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
}


.folder-system {
    position: absolute;
    width: 100%;
    bottom: 80%;
}


.folder-stack {
    display: flex;
    flex-direction: column;
}


.folder-container {
    position: absolute;
    width: 100%;
    filter: drop-shadow(20px 26px 20px rgba(51, 51, 51, 0.5));
    transition: ease 0.3s;
}

.folder-container:hover {
   transform: translateY(-8px);
}



.folder-tab {
    position: absolute;
    border-bottom: none;
    border-radius: 13px 13px 0 0;
    padding: 1px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: -2%;
    z-index: 2;
    height: 8%;
    width: 25%;
    background-color: var(--blue);
}


.folder-number {
    margin-right: 10px;
    font-size: 2.5vh;
    font-family: "Mono Book";
}

.folder-label {
    font-size: 1.5vh;
    word-spacing: -3px;
}


.folder-content {
    position: relative;
    border-radius: 15px;
    padding: 15px;
    height: 40vw;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--blue);
}


.folder-content-beschriftung {
    display: flex;
    flex-direction: row;
    width: 98%;
    margin-top: 1.5%;
    margin-left: 2%;
    text-decoration: underline 2px dotted;
    text-underline-offset: 2px;
}


.folder-content-text {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 3%;
    margin-left: 54%;
}


.folder-content-text h3 {
   font-size: 1.4vw;
   line-height: 1;
}



.folder-content-text p {
    font-size: 1.2vw;
   line-height: 1.2;
   line-break: strict;
   margin-top: 1vw;
   width: 40%;
}




/* POSITION FOLDER  */
.folder-container:nth-child(1) {
    top: 36vh;
    z-index: 11;
}

.folder-container:nth-child(2) {
    top: 32vh;
    z-index: 10;
}

.folder-container:nth-child(3) {
    top: 28vh;
    z-index: 9;
}

.folder-container:nth-child(4) {
    top: 24vh;
    z-index: 8;
}

.folder-container:nth-child(5) {
    top: 20vh;
    z-index: 7;
}

.folder-container:nth-child(6) {
    top: 16vh;
    z-index: 6;
}

.folder-container:nth-child(7) {
    top: 12vh;
    z-index: 5;
}

.folder-container:nth-child(8) {
    top: 8vh;
    z-index: 4;
}

.folder-container:nth-child(9) {
    top: 4vh;
    z-index: 3;
}

.folder-container:nth-child(10) {
    top: 0vh;
    z-index: 2;
}


/* TABS FOLDER AND COLORS*/
.folder-container:nth-child(1) .folder-tab {
    left: 65%;
    /* background: coral;
    border-color: var(--blue); */
}

/* .folder-container:nth-child(1) .folder-content {
    background: coral;
    border-color: var(--blue);
} */


.folder-container:nth-child(2) .folder-tab {
    left: 50%;
}

/* .folder-container:nth-child(2) .folder-content {
    background: blue;
    border-color: var(--white);

} */

.folder-container:nth-child(3) .folder-tab {
    left: 35%;
}
/* 
.folder-container:nth-child(3) .folder-content {
    background: pink;
    border-color: var(--blue);
} */

.folder-container:nth-child(4) .folder-tab {
    left: 20%;
}

/* .folder-container:nth-child(4) .folder-content {
    background: green;
    border-color: var(--white);
} */

.folder-container:nth-child(5) .folder-tab {
    left: 5%;
}

/* .folder-container:nth-child(5) .folder-content {
    background: var(--blue);
    border-color: var(--blue);
} */

.folder-container:nth-child(6) .folder-tab {
    left: 65%;
}
/* 
.folder-container:nth-child(6) .folder-content {
    background: yellow;
    border-color: var(--blue);
} */


.folder-container:nth-child(7) .folder-tab {
    left: 50%;

}

/* .folder-container:nth-child(7) .folder-content {
    background: lightcoral;
    border-color: var(--blue);
} */


.folder-container:nth-child(8) .folder-tab {
    left: 35%;

}

/* .folder-container:nth-child(8) .folder-content {
    background: yellow;
    border-color: var(--blue);
} */


.folder-container:nth-child(9) .folder-tab {
    left: 20%;

}

/* .folder-container:nth-child(9) .folder-content {
    background: palevioletred;
    border-color: var(--blue);
} */


.folder-container:nth-child(10) .folder-tab {
    left: 5%;
}

/* .folder-container:nth-child(10) .folder-content {
    background: greenyellow;
    border-color: var(--blue);
} */




/* ////////// CALL TO ACTION:EXPLOPRE //////////////////*/
.button-explore {
    opacity: 0;
    margin-top: 0.5%;
    font-size: 1.2vw !important;
    transition: all ease 0.3s;
}



.explore-navigation:hover .button-explore {
  opacity: 1;
  padding-left: 2vw;
  text-decoration: underline dotted 2px;
  text-underline-offset: 2px;
}