.hotline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-main);
    color: var(--color-white) !important;
    text-decoration: none;
    padding: 12px 10px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1;
    transition: .25s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.hotline-btn i {
    font-size: 15px !important;
}

.hotline-btn:hover {
    background: #c92222;
    color: var(--color-white);
    transform: translateY(-2px);
}