.work-adress__block {
    border-radius: 10px 10px 11px 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #D6DBFD;
    width: 100%;
    margin-bottom: 20px;
}

.work-adress__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 12px 0;
}

.work-adress__img {
    min-width: 20px;
    margin-bottom: -6px;
}

.work-adress__text {
    font-weight: 700;
    font-size: 26px;
    color: #252E34;
}

.work-adress__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 100%;
    background: #FF7979;
    border: 3px solid #FF7979;
    color: #FFF;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.2s ease 0s;
}

.work-adress__block:hover .work-adress__btn {
    background: #252E34;
    color: #D6DBFD;
    border-color: #D6DBFD;
}

@media(max-width: 600px) {
    .work-adress__top {
        gap: 18px;
        padding: 7px 22px;
    }

    .work-adress__text {
        font-size: 20px;
        line-height: 22px;
        text-align: center;
    }

    .work-adress__btn {
        font-size: 16px;
    }

    .work-adress__img svg {
        width: 24px;
        height: 24px;
    }
}
