.kontakt-kasse{
    display: flex;
    flex-direction: column;
    position: relative;

    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

.kontakt-wrapper{
  display: flex;
  gap: 40px;
  padding: 30px 40px 60px;
  flex-wrap: wrap;
  align-items: center;
}

.kontakt-wrapper h4{
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.kontakt-kort{
    background: #e9e3dc;
    width: 260px;
    height: 130px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background: #EFE8E0;
    box-shadow: -5.84px -5.84px 5.84px 0 rgba(112, 94, 94, 0.30) 
        inset, 9.68px 9.68px 25.55px 0 rgba(159, 144, 144, 0.40) 
        inset, 5.82px 5.82px 2.82px 0 #FFF 
        inset, 0 17.04px 22.71px 0 rgba(42, 42, 42, 0.36);
        
    transition: transform .25s ease, box-shadow .25s ease;
}


.kontakt-billede img{
  width: 35%;
  height: auto;
  display: block;
  transform: translateY(70px);
    margin: 0 auto;
}


.kontakt-kort:hover{
    transform: scale(1.05); 
    background: #EFE8E0;
    box-shadow: -5.84px -5.84px 5.84px 0 rgba(112, 94, 94, 0.30) 
        inset, 9.68px 9.68px 25.55px 0 rgba(159, 144, 144, 0.40) 
        inset, 5.82px 5.82px 2.82px 0 #FFF 
        inset, 0 17.04px 22.71px 0 rgba(42, 42, 42, 0.36);
}