.showcase_container{
    display:flex;
    flex-wrap: wrap;
    flex-direction:row;
    justify-content: center;
    /* align-content: space-evenly; */
    gap: 100px;
}


.overlay{
    transition: 0.4s;
    height: 300px;
    width: 300px;
}   

.img_wrapper{
    overflow: hidden;
    transform: scale(1);
    background-color: rgb(186, 186, 186);
    border-radius: 3px; 
    flex-grow: 1;
}

.img_wrapper p{
    position: absolute;
    color: white;
    margin-top: 125px;
    font-weight: 100;
    font-size: 15px;
    line-height: 15px;
}
.showcase_wrapper{
    transform: scale(1);
}
.img{
    transition: 0.4s ease-out;
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index:-1;
}

.showcase_text{
    transition: 0.3s ease-out;
    font-size: 1rem;
}

.showcase_title, .showcase_description{
    opacity: 0;
}
.showcase_info{
    position: absolute;
    color: white;
    margin: 15px;
}
.showcase_title{
    position: absolute;
    color: white;
    margin-top: 100px;
    font-size: 18px;
    line-height: 20px;
}
.fach{
    left: 0px;
    background-color:#003260;
    margin: 0px;
    padding: 15px;
    width: 100%;
    opacity: 1 !important;
}

.jahr{
padding: 15px;
margin: 0px;
   right: 0px;
   opacity: 1 !important;
}


.two_lines{
    top: 20px;
}
.three_lines{
    top: 35px;
}

.content button{
    margin-block: 2px;
    font-size: 11px;
}

.kreis{
    width: 15em;
    height: 15em;
    border-radius: 50%;
    background-color: #0155A3;
    margin: 15px;
    margin-top: 45px;
    margin-left: 35px;
}

.marquee{
    height: 145vh;
    width: 100%;
position: absolute;
margin: 0px;
left: 0px;
right: 0px;
z-index: 0;
}

.dvd-img{
    width: 100px;   
}

.DVD_btn{
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


.fach_container{
    display: flex;
    background-color:#003260 ;
    height: 300px;
}

.fach_container img{
    height: 100%;
    aspect-ratio: 1/1;
    cursor: pointer;
}
.fach_container>.text{
    padding: 40px 40px 60px 60px;
}

.fach_container p{
    font-weight: 100;
}

section .showcase{
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.showcase_back_btn{
    position: relative;
    width: 200px;
    background-color: #003260;
    color: white;
    float: right;
}

@media (hover: hover){
    .img_wrapper:hover .showcase_title, .img_wrapper:hover .showcase_description  {
        opacity: 1;
    }
    .img_wrapper:hover .overlay{
       /* background-color: rgba(0, 49, 96, 0.8);*/
       background-color:#003260ab;
    }
    .img_wrapper:hover img{
        transform: scale(1.2);
    }   
}

.visible3{
    background-color:#003260ab !important;
    z-index: 999;
}

.visible1{
    opacity: 1;
}

.visible2{
    transform: scale(1.2);
}

.mobile_hover_active{
    transform: rotate(180deg) !important;
}
@media (hover: none){
    
    .mobile_hover{
        position: absolute;
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
        background-image: url(images/mobile_hover.svg);
        background-repeat: no-repeat;
        z-index: 999;
        transition: transform 0.3s;
        transform: translateY(50%)
    }
}

a:has(.fach_container){
    border-bottom: none;
    outline: none;
}




@media screen and (max-width: 980px) {
    .fach_container>.text{
        padding: 15px 20px 20px 15px;
    }
}

@media screen and (max-width: 736px) {
    .fach_container{
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .fach_container img{
        width: 100%;
        height: auto !important; 
        aspect-ratio: 4/3 !important;
        object-fit: cover;
    }
    
    .showcase_container{
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .fach_container img{
        aspect-ratio: 1/1 !important;
    }
}


