.home-page__bottom_btns {
    column-gap: 40px;
    align-items: center;
}

.home-page-btn__info {
    padding: 12px 42px;
    position: relative;
    display: block;
    width: auto;
    /* background-image: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .25) 0, rgba(255, 255, 255, 0) 75%); */
    background-image: linear-gradient(340deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .25) 0, rgba(255, 255, 255, 0) 75%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 200% 100%;
    transition: background-position .5s ease-out, opacity .2s 0s, visibility .2s 0s;
    background-position: 453% 100%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}

.home-page-btn__info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: 5px;
    border: 1.5px solid transparent;
    background: -o-linear-gradient(315deg,  #DAD0C1 0, #998B75 33%, rgba(248, 236, 219, 0.1) 67%, rgba(190, 169, 137, 0) 100%) border-box;
    background: linear-gradient(135deg, #DAD0C1 0, #998B75 33%, rgba(248, 236, 219, 0.1) 67%, rgba(190, 169, 137, 0) 100%) border-box;

    background-size: 200% 100%;
    background-position: 0 100%;
    animation: shine 3s cubic-bezier(.4, .4, .4, 1) infinite;
}

.home-page-btn__info:hover {
    background-position: 253.5% 100%;
}


@keyframes shine {
    to {
        background-position: 200% center
    }
}


.home-page-btn__info p {
    position: relative;
    width: auto;
    line-height: 1.2;
    color: #EDE1CF;
}


.home-page-btn__info p::after {
    display: none;
}


@media (max-width: 1005px) {
    .form__input input {
        width: 100%;
    }
}

/* @media (max-width: 767.98px) {
    .home-page-btn__info {
        display: none;
    }
} */

@media (min-width: 480px) and (max-width: 767.98px) {
    .form__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .form__input {
        padding-bottom: 30px;
    }

    .form__input input {
        font-size: 16px;
    }

    .form__wrapper button {
        width: 100%;
        justify-content: center;
    }
}