.buttonCalendly {
    font-family: var(--ff-common);
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    text-align: center;

    /* border: solid 1px #fff; */
    border: solid 1px var(--green-strong);
    font-size: 0.7rem;
    pointer-events: all;

    /* color: white; */
    color: var(--green-strong);
    font-weight: 400;
    padding: 16px 24px;
    border-radius: 2px;
    white-space: nowrap;
    transition: opacity 0.4s ease;
}

.buttonCalendly:hover {
    opacity: 0.6;
}

/* opacity on the background of modal */
body .calendly-overlay .calendly-close-overlay {
    background: #00000090;
}