.square-kontak {
    height: 420px;
    width: 250px;
    margin: 3rem;
    /* wajib */
    position: relative;
    overflow: hidden;
    /* wajib */
    border-radius: 25px;
    background-color: rgb(185, 185, 185);
}

.square-kontak>img {

    /* wajib */
    width: 100%;
    height:5px;
    object-fit: cover;
    object-position: center;
    /* wajib */
}

.contentKontak {
    background-color: var(--theme-dark);
    border-radius: 0px 0px 25px 25px;
    justify-content: center;
    position: absolute;
    height: 80px;
    width: 100%;
    bottom: 0px;
}
@media (min-width:1200px){
    .contentKontak {
        background-color: var(--theme-dark);
        border-radius: 0px 0px 25px 25px;
        justify-content: center;
        position: absolute;
        height: 100px;
        width: 100%;
        bottom: 0px;
    }
    

    .square-kontak > img{
        height:100%;
    }
}

.square-kontak > .card-hover {
     /* wajib */
    position: absolute;
    inset: 0;
     /* wajib */
    font-size: 2rem;
    padding: 1rem;
    background: var(--theme-darkest);
    display: flex;
    justify-content: center;
    align-items: center;
}

.square-kontak > img,
.square-kontak > .content
.square-kontak > .card-hover {
    transition: 200ms ease-in-out;
}

.square-kontak:hover > img.blur {
    filter: blur(5px);
    transition: 0.5s;
}

.square-kontak > .content.slide-down {
    opacity: 1;
    transition: 0.5s;
}
.square-kontak:hover > .content.slide-down {
    opacity: 0;
    transition: 0.5s;
}

.square-kontak > .card-hover.slide-up {
    transform: translateY(100%);
    transition: 0.5s;
}

.square-kontak:hover > .card-hover.slide-up {
    transform: translateY(0);
    transition: 0.5s;
}

.text-content li {
    color: white;
    font-size: 16px;
}

.square-kontak:hover > img.blur {
    filter: blur(5px);
    transition: 0.5s;
    height:100%;
}
