.columns{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.card{
    display:flex;
    flex-direction:column;
    width:50%;
}


.card > img{
    width: 100%;
    height: 282px;
    object-fit: cover;
}

.standort-link{
    margin-top:20px;
    width: 100%;
    text-align:right;
}

.standort-link a{
    text-decoration: none;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color:#003559;
}


.standort-link a:hover{
   color: #F4973D;
}

.wave-text:hover span {
    display: inline-block;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.1s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.3s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(6) {
    animation-delay: 0.5s;
}
.wave-text span:nth-child(7) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(8) {
    animation-delay: 0.7s;
}
.wave-text span:nth-child(9) {
    animation-delay: 0.8s;
}
.wave-text span:nth-child(10) {
    animation-delay: 0.9s;
}
.wave-text span:nth-child(11) {
    animation-delay: 1s;
}
.wave-text span:nth-child(12) {
    animation-delay: 1.1s;
}
.wave-text span:nth-child(13) {
    animation-delay: 1.2s;
}


@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


@media (max-width:425px){
    .card{
        width: 100%;
    }
    
    .columns {
        display: flex;
        justify-content: space-between;
        /* gap: 20px; */
        flex-wrap: wrap;
    }
    
}