.contact-section {
    background: #4d4d4d;
    min-height: 415px;
    flex-direction: row;
}

.contact-block {
    text-align: center;
    font-size: 30px;
    font-family: 'Open Sans Hebrew', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 60px;
}

.contact-header {
    font-weight: bold;
}

.contact-image-wrapper {
    background: #333;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid #666;
    border-radius: 16px;
    margin: 20px 0;
}

.contact-image {
    max-width: 80px;
    height: 80px;
    transition: all .1s ease;
}

.contact-image-wrapper:hover .contact-image {
    transform: scale(1.1);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media all and (max-width: 1690px) { }

@media all and (max-width: 1280px) {
    .contact-block {
        font-size: 24px;
    }

    .contact-image-wrapper {
        width: 80px;
        height: 80px;
        margin: 10px 0;
        border-width: 4px;
        border-radius: 12px;
    }

    .contact-image {
        max-width: 60px;
        height: 60px;
        transition: all .1s ease;
    }
}

@media all and (max-width: 980px) { }

@media all and (max-width: 736px) {
    .contact-section {
        min-height: 250px;
        flex-direction: column;
        padding-bottom: 74px;
    }

    .contact-block {
        font-size: 20px;
    }

    .contact-block.wa {
        margin-bottom: 60px !important;
    }
    
    .contact-image-wrapper {
        width: 60px;
        height: 60px;
        margin: 10px 0;
        border-width: 4px;
    }

    .contact-image {
        max-width: 40px;
        height: 40px;
        transition: all .1s ease;
    }
}

@media all and (max-width: 480px) {
    .contact-block {
        font-size: 16px;
    }
}