@charset "UTF-8";
/* CSS Document */


/* ===================================================================================================================== */
/* ===================================================================================================================== */

.modul-contact .contactGrid {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    flex-flow: wrap;
    gap: 3vw;

}


.modul-contact .contactGrid .item {
    position: relative;
    width: 30%;
    height: 25vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.modul-contact .contactGrid .item .infoData {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    align-self: flex-start;
    align-content: flex-start;
}

.modul-contact .contactGrid .item .infoData h3 {
	margin-bottom: 0.85em;
}

.modul-contact .contactGrid .item .connectData {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100%;
}

.connectData ul {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.connectData ul li {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    padding: 2px;
    position: relative;
    left: -2px
}

/* -------------------- Btn Elements -------------------------------------- */

.connectData ul li a {
    display: inline-block;
    padding: 2px;
}

.connectData ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    /*transform: scaleX(0);*/
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    opacity: 0.7;
}

.connectData ul li a:hover:after {
    opacity: 1;
    /*transform: scaleX(1);
    transform-origin: bottom left;*/
}

.connectData ul li a:hover {
    background: #ffffff;
    color: #000000!important;
}

/* ===================================================================================================================== */
/* ================================================= **** MOBILE **** ================================================== */
/* ===================================================================================================================== */

@media screen and (max-width: 956px) {


    /* ===================================================================================================================== */
    /* ================================================= **** MOBILE **** ================================================== */
    /* ===================================================================================================================== */
}

@media screen and (max-width: 720px) {
    .modul-contact .contactGrid {
        gap: 5vw;
        justify-content: space-between;
    }


    .modul-contact .contactGrid .item {
        position: relative;
        width: 24vw;
        height: 12vw;
    }

    /* ===================================================================================================================== */
    /* ================================================= **** buttongrid **** ================================================== */
    /* ===================================================================================================================== */
    /* ------------------------------------------------------------------------ */

}