.header3 {
    display: flex;
    align-items: center;
}

.header3 .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fbfbfb;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.header3 .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 15px;
}

.header3 .card,
.header3 a {
    border-left: 1px solid #e1e1e1;
}

.header3 .card i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 5px;
}

.header3 .card .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5px;
}

.header3 .card:first-child {
    border-left: 0;
}

.header3 .card h3 {
    color: #313131;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}

.header3 .card p {
    display: block;
    color: #777;
    font-size: 12px;
    line-height: 1;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-align: left;
}

.header3 a,
.header3 a .text h3 {
    color: #128c7e;
    background: transparent;
}

.header3 .telephone {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.header3 a .telephone {
    transition: 0.5s;
}

.header3 a .telephone:hover {
    text-decoration: none;
    color: #fff;
    background: #128c7e;
    filter: none;
}

.header3 a .telephone:hover i {
    color: #fff;
}

.header3 a .telephone:hover h3 {
    color: #fff;
}

.header3 a .telephone:hover p {
    color: #25d366;
}

.header3 a:hover {
    text-decoration: none;
    filter: none;
}

@media (max-width: 1200px) {
    .header3 .card {
        flex-direction: column;
    }
}

@media (max-width: 990px) {
    .header3 .container {
        flex-direction: column;
    }

    .header3 .card {
        flex-direction: row;
    }

    .header3 .card,
    .header3 a {
        border-left: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .header3 .card {
        flex-direction: column;
    }

    .header3 .card .text {
        align-items: center;
    }

    .header3 .card h3 {
        text-align: center;
    }

    .header3 .card p {
        text-align: center;
    }
}