
/* btn2 */
.btn2 {
    --w: 22.5rem;
    --h: 4.375rem;
    --scale: 0.8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5rem;
    gap: 0.5rem;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    flex-shrink: 0;
    font-style: normal;
    color: rgba(102, 102, 102, 1);
    /*color: rgba(var(--color-dark), 1);*/
    font-family: "AngelusMedieval", "Philosopher", "Times New Roman", Times, serif;
    font-family: var(--font-2);
    font-size: 1.25rem;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s all;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
    outline: 0;
    background: transparent;
    border: 0;
    line-height: 1.2;
    padding: 0.1875rem calc(1rem * var(--scale)) 0;
    width: calc(var(--w) * var(--scale));
    height: calc(var(--h) * var(--scale));
    max-width: 100%;
}

.btn2:hover {
    color: rgb(250, 223, 170);
    text-shadow: 0 0 15px rgba(250, 223, 170, 0.6);
}

.btn2:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.2s all;
    background-image: url(../images/btn/btn2.png);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    perspective: 1000px;
    pointer-events: none;
}

.btn2:hover:before,
.btn2:hover:after {
    /* filter: brightness(80%); */
}
/* btn2 */
