/* ========================
 * PHONE NUMBER WIDGET
 * ========================
 * 
 */

.phone-number-button {
    text-align: center;
    white-space: nowrap;
    display: flex;
}

.phone-number-image {
    width: 100px;
    height: 130px;
}

.phone-number,
.phone-number:hover {
    color: #9AD699;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    margin: auto;
}


.phone-number:hover {
    color: #9AD699;

}

.visible-lg {
    display: none;
}

@media (min-width : 1200px) {
    .visible-lg {
        display: block;
    }
}