body {
    background-color: #292929;
}
.page_main_title {
   height: 100px;
   margin-bottom: 40px;
}
.page_main_description {
    width: 630px;
    font-size: 40px;
    font-weight: 400;
    line-height: 48.41px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 100px;

}

.grid {
    width: 100%;
    background-color: #404040;
}

.grid-page {
    padding-top: 45px;
    width: 1360px;
    height: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-template-rows: 660px 630px;
    grid-row-gap: 50px;
}


.grid-card p {
    margin-top: 40px;
    font-size: 32px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: 0.2em;
    color: #fff;
}

.button-pay {
    width: 1360px;
    display: grid;
    place-items: center;
    margin: 0 auto 120px;
}

.pay{
    display: inline;
    width: 326px;
    height: 137px;
    font-size: 32px;
    font-weight: 400;
    line-height: 38.73px;
    text-align: center;
    border-radius: 43px;
}


.pay:hover {
    background: #B7B7B7;
    color: #ffffff;
} 

.pay[disabled] {
    background: #e0e0e0; /* Цвет для неактивной кнопки */
    color: #a0a0a0; /* Тусклый цвет текста для неактивной кнопки */
    cursor: not-allowed; /* Указывает, что кнопка неактивна */
}