.list-sequence {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style-type: none;
    margin-bottom: calc(80px + 74px);
}

.list-sequence__li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    padding: 16px 20px;
    border-radius: 6px;
    background: #F2D8FC;
    counter-increment: list;
    margin-bottom: 0;
    text-align: center;
    margin: 0 !important;
    font-size: 16px;
    line-height: 22px;
}

.list-sequence__li::before {
    content: counter(list);
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #fff;
    color: var(--c-black);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin: 0 auto;
}

.list-sequence__li:nth-child(2n) {
    transform: translateY(74px);
}

.list-sequence__content p {
    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
}


@media (max-width: 992px) {
    .list-sequence {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: calc(60px + 30px);
    }

    .list-sequence__li:nth-child(2n) {
        transform: translateY(30px);
    }
}

@media (max-width: 576px) {
    .list-sequence {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }

    .list-sequence__li:nth-child(2n) {
        transform: unset;
    }
}

/* 420 page */


.grid-about-420 {
    margin-top: 100px;
    margin-bottom: 200px;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
}

.about-420-announce {
    grid-column: 1/2;

    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.about-420-announce__heading {
    color: var(--c-black);
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}

.about-420-acccent {
    color: var(--c-black);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 24px;
    max-width: 40ch;
}

.about-420-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-color: #D7F8E3;
    border-radius: 6px;

    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.about-420-card p {
    margin-bottom: .5em;
}

.about-420-card p:last-child {
    margin-bottom: 0;
}

.about-420-card a {
    color: #007FFF !important;
    text-decoration-line: underline;
}

.about-420-card svg {
    width: 100%;
    margin-bottom: 20px;
}

.about-420-card__heading {
    color: var(--c-black);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
}

.about-420-card:nth-child(2) {
    background-color: #D8F8E4;
}

.about-420-card:nth-child(2) svg {
    height: 120px;
}

.about-420-card:nth-child(3) {
    background: linear-gradient(0deg, #DFF7F1 0%, #DFF7F1 100%), #DBF2E7;
}

.about-420-card:nth-child(3) svg {
    height: 68px;
    margin: 2px 6px 32px;
}

.about-420-card:is(:nth-child(6), :nth-child(4), :nth-child(5)) svg {
    height: 79px;
    margin: 2px 11px 21px;
}

.about-420-card:nth-child(4) {
    background-color: #DCF7EC;
}

.about-420-card:nth-child(5) {
    background: #DAF8E9;
}

.about-420-card:nth-child(6) {
    background: #D8F8E4;
}


.about-420-card_tiny {
    gap: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.about-420-card_tiny svg {
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .grid-about-420 {
        display: flex;
        flex-direction: column;
        margin-top: 60px;
        margin-bottom: 100px;
        gap: 24px;
    }

    .about-420-announce,
    .about-420-card {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .about-420-card {
        padding: 20px;
    }

    .about-420-announce__heading {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .about-420-announce .about-420-acccent {
        margin-bottom: 18px;
    }

    .about-420-announce p {
        margin-bottom: 16px;
    }

    .about-420-card_tiny {
        align-items: flex-start;
        gap: 13px;
    }

}

/* LOCATIONS LANDING */

.locations__announce {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.locations__announce-text {
    grid-column: 1/4;
}

.locations__announce-text :last-child {
    margin-bottom: 0;
}

.locations__announce-img {
    grid-column: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location__legalities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 80px 0;
}

.location__legalities :is(h2, h3, h4) {
    color: var(--c-black);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.location__legalblock_state {
    max-height: 173px;
}

.location__legalblock {
    position: relative;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    text-align: center;

    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.location__legalblock :is(a, strong) {
    font-weight: 700;
    color: var(--c-black);
    display: inline-block;
    line-height: 17px;
}

.location__legalblock-check {
    width: 20px;
    height: 20px;
    object-fit: contain;
    position: absolute;
    top: 12px;
    left: 12px;
}

.location__legalblock_approved {
    background: #EDFFED;
}

.location__legalblock_approved  :is(a, strong) {
    border-bottom: 2px solid #467E2F;
}

.location__legalblock_denied {
    background: #FBECEC;
}

.location__legalblock_denied  :is(a, strong) {
    border-bottom: 2px solid #D73A3B;
}

.location__legalblock_unknown {
    background: #F1F1F1;
}

.location__legalblock_unknown  :is(a, strong) {
    border-bottom: 2px solid #A2A2A2;
}

.location__legalblock-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.locations__slider {
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .locations__announce {
        display: flex;
        flex-direction: column-reverse;
        gap: 18px;
        margin-bottom: 60px;
    }

    .locations__announce-text :last-child {
        margin-bottom: 0;
    }

    .locations__announce-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 150px;
    }

    .locations__slider {
        margin-bottom: 60px;
    }

    .location__legalities {
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }

    .location__legalities :is(h2, h3, h4) {
        margin-bottom: 0;
    }

    .location__legalblock_state {
        display: none !important;
    }
}

/* ABOUT SECTION */

.about-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 23% 36% 36%;
    margin-bottom: 100px;
    margin-top: 100px;
}

.about-grid__announce {
    grid-column: 1/3;

    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.about-grid__announce :is(h2,h3,h4) {
    color: var(--c-black);
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}

.about-grid__item {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-color: #D7F8E3;
    border-radius: 6px;

    color: var(--c-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;

    grid-row: var(--grid-row);
}

.about-grid__item p:last-child {
    margin-bottom: 0;
}

.about-grid__item img {
    width: 100%;
    height: 174px;
    margin-bottom: 20px;
}

.about-grid__item :is(h2,h3,h4,h5) {
    color: var(--c-black);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
}

.about-grid__item_tiny {
    gap: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.about-grid__item_tiny img {
    height: auto;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    margin-bottom: 0;
}

.about-grid__item_list  {
    display: flex;
    flex-direction: column;
    background-color: #F6F6F6 !important;
    grid-row: 2/4;
    padding: 30px 20px !important;
}

.about-grid__item_list ul {
    list-style-type: none;
    margin: 8px 0 0 0;
    padding: 0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-grid__item_list li {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}

.about-grid__item_list li a {
    color: var(--c-black) !important;
}

.about-grid__item_list li.last {
    justify-self: flex-end;
}

.homepage-about-card.about-grid__item_list  a {
    color: var(--c-black) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: none !important;
}

@media (max-width: 992px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .about-grid__announce :is(h2,h3,h4) {
        font-size: 30px;
        line-height: 32px;
    }

    .about-grid__item {
        padding: 20px;
        gap: 12px;
    }

    .about-grid__item_tiny {
        align-items: flex-start;
    }
    
}


