.options31{
    margin-bottom: 100px;
}
.o31Inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}
.o31iBlock{
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #27201F 0%, rgba(36, 36, 36, 0) 100%);
    border-radius: 11px;
    padding: 50px 32px;
}
.o31iBlock:first-child{
    margin-left: auto;
}
.o31iBlock:last-child{
    margin-right: auto;
}
.o31ibText{
    color: #827579;
    line-height: 24px;
}
.o31ibNum{
    width: 80px;
    height: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: -40px;
    margin-bottom: 40px;
    color: var(--white);
    background: linear-gradient(154.72deg, #EE252A 16.04%, rgba(48, 8, 9, 0.89) 158.45%);
    border: 6px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.o31ibName{
    margin-top: 10px;
    margin-bottom: 12px;
    color: var(--white);
}
.o31ibPoints{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.o31ibpPoint{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.o31ibppIcon{
    margin-right: 12px;
}
.o31ibppText{
    color: #827579;
    display: block;
}
.o31ibpptSmall{
    font-size: 11px;
    color: #827579;
}

@media screen and (max-width: 900px){
    .options31{
        margin-bottom: 50px;
    }
    .o31Inner{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0px;
    }
    .o31iBlock{
        max-width: unset;
        width: 100%;
    }
    .o31ibName{
        margin-top: 5px;
    }
}