
.open-pop-up {
    cursor: pointer;
}
.vc-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    flex-basis: 100%;
    @media (width <= 768px) {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.button-main {
    color: #fff;
    background: url("../img/arr_01.png") no-repeat #333333;
    border: solid 2px #333333;
    box-sizing: border-box;
    border-radius: 100px; -webkit-border-radius: 100px; -moz-border-radius: 100px;
    font-size: 16rem;
    padding: 1em 0;
    background-size: 20rem;
    background-position: center right 18rem;
    text-align: center;
    cursor: pointer;
    &:hover {
        background-color: #fff;
        color: #333333;
        background-image: url("../img/arr_01_on.png");
    }
}
.pop-up-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background: rgba(0 0 0/0.2);
    backdrop-filter: blur(3px);
    .pop-up-window {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
        font-size: 15px;
        background: white;
        box-shadow: 0 0 30px rgba(0 0 0/0.5);
        border: solid 2px #333333;
        border-radius: 16px;
        #entry & {
            width: 40svw;
            @media (width <= 768px) {
                width: calc(100svw - 100px);
            }
        }
        .close-pop-up {
            position: absolute;
            right: 0;
            top: -50px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            &:hover {
                opacity: 0.6;
            }
        }
    }
}