main .box {
    text-align: center;
    margin-bottom: 32px;
}

main p {
    font-size: 18px;
    color: var(--light-color);
    max-width: 650px;
    margin: 0 auto;
    padding: 1rem 0;
    margin-bottom: 1rem;
}
main h1 + p {
    font-size: 24px;
    padding: 1rem;
    margin-bottom: 32px;
}

h3 {
    font-size: 48px;
    margin-bottom: 32px;
}
h3 span {
    font-weight: normal;
    font-size: 16px;
    display: inline-block;
    margin-left: -8px;
}

main .box > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
} 

main .box > ul > li {
    position: relative;
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 32px;
    border-radius: var(--border-radius);

    box-shadow: 0 0 #0000,  0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
main .box > ul > li.active {
    border: 2px solid var(--color);
}
main .box > ul > .unavailable {
    opacity: .5;
}
main .box > ul > .unavailable:before {
    /*
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-left: 1px solid var(--border-color);
    border-left: 10px solid red;
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
    z-index: 10;
    */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: url(/mavoc/images/bootstrap/x-lg.svg) no-repeat;
    background-size: contain;
    opacity: .25;
}

main .box > ul ul {
    text-align: left;
    margin-bottom: 2rem;
}

main .box > ul ul li {
    position: relative;
    list-style-type: none;
    margin-bottom: 1rem;
}
main .box > ul ul li:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -32px;
    width: 24px;
    height: 24px;
    mask: url(/mavoc/images/bootstrap/check.svg) no-repeat;
    mask-size: contain;
    background: var(--color);
}

main .button {
    width: 100%;
}

@media (max-width: 1199px) {
    main .box > ul {
        grid-template-columns: 1fr;
    }
}
