.contact-row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    padding: 65px;
    border-radius: 20px;
    border: 2px dashed #51636F;
    max-width: 1800px;
    color: #51636F;
    gap: 20px;
}

.contact-row-left,
.contact-row-middle,
.contact-row-right {
    min-width: 0;
    box-sizing: border-box;
}

.contact-row-subtitle {
    font-size: 1rem;
}

.contact-row-left {
    display: flex;
    flex-direction: column;
    width: 25%;
    justify-content: center;
}

.contact-row-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}


.contact-row-right {
    width: 50%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
}



.contact-row-img-wrapper {
    flex: 0 0 300px;
    height: 100%;
    max-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
}


.contact-row-img-wrapper.skeleton {
    background: #e0e0e0;
    animation: pulse 1.5s infinite ease-in-out;
}

.contact-row-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}


.contact-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}


.contact-row-phone,
.contact-row-email {
    width: 250px;
    border-bottom: #53595da1 1px solid;
    color: #51636F;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 2px;
    letter-spacing: 1px;
}


.contact-row-phone a,
.contact-row-email a {
    text-decoration: none;
    color: unset;
}




@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

@media (max-width:2000px) {
    .contact-row-wrapper {
        flex-direction: column;
        padding: 60px;
    }

    .contact-row-middle {
        display: none;
    }

    .contact-row-left,
    .contact-row-right {
        width: 100%;
    }


}

@media (max-width: 1000px) {

    .contact-row-wrapper {
        padding: 40px;
    }


    .contact-row-img-wrapper {
        flex: 0 0 250px;
        height: 250px;
        max-height: 250px;
    }

    .contact-row-info {
        gap: 20px;
    }

    .contact-row-headline {
        font-size: 1.25rem;
    }

    .contact-row-subtitle {
        font-size: 0.9rem;
    }

    .contact-row-right {
        flex-direction: column;
    }

    .contact-row-img-wrapper {
        flex: unset;
        height: auto;
        max-height: unset;
    }

}




@media (max-width: 600px) {

    .contact-row-info {
        gap: 12px;
    }

    .contact-row-headline {
        font-size: 1rem;
    }


    .contact-row-subtitle {
        font-size: 1.1rem;
    }

    .contact-row-phone a,
    .contact-row-email a {
        font-size: 1.1rem !important;
    }


    .content-card .description {
        font-size: 1.1rem;
    }
}