/* ----------------------------------------------------
------------------------MODULES------------------------
---------------------------------------------------- */


/* Call To Action Banner */

.cta-kontakt-banner {
    background-color:black;
    min-height:300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow:hidden;
}

.cta-kontakt-banner h3 {
    z-index:50;
    color:white;
}

.cta-kontakt-banner img {
    position:absolute;
    min-width:100%;
    min-height: 100%;
    opacity: 0.5;
}

#contactCard {
    position: fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:white;
    max-width:100%;
    width:500px;
    height:300px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    border-top:10px solid #36a9e1;
    border-bottom:10px solid #36a9e1;
    z-index: 100;
    transition-duration: 0.6s;
}
#contactCard .contact-card-name {
    font-weight: 800;
    margin-bottom:10px;
    font-size:1.2rem;
}
#contactCard a {
    padding:5px;
}

