@media (max-width: 500px) {
    .arrow-down {
        top: -44px;
    }
}

.lk-features__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lk-features__block {
    display: flex;
    flex-direction: column;
    gap: 30px;

    color: var(--white);
    background-color: var(--dark-grey);
    padding: 50px 30px;
}

.lk-features__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lk-features__img-wrap {
    max-width: 50px;
    width: 100%;
    flex-shrink: 0;
}

.lk-features__block-title {
    font-weight: 700;
    font-size: 24px;
}

.lk-features__desc {
    font-size: 18px;
    line-height: 20px;
}

.lk-features__accent {
    font-weight: 700;
}

.lk-features__note {
    font-weight: 700;
    font-size: 16px;
    color: var(--grey7);
}

.lk-features__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lk-features__item {
    position: relative;
    padding-left: 30px;
}

.lk-features__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    transform: translateY(-50%);
}

.lk-features__item:first-child::before {
    background-color: var(--red);
}

.lk-features__item:nth-child(2)::before {
    background-color: var(--main-yellow);
}

.lk-features__item:last-child::before {
    background-color: var(--green);
}

@media (max-width: 1024px) {
    .lk-features__wrapper {
        gap: 15px;
    }

    .lk-features__block {
        gap: 20px;
        padding: 30px;
    }

    .lk-features__header {
        gap: 20px;
    }

    .lk-features__block-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .lk-features__block {
        padding: 20px;
    }

    .lk-features__header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .lk-features__img-wrap {
        max-width: 40px;
    }

    .lk-features__block-title {
        font-size: 18px;
    }

    .lk-features__desc {
        font-size: 16px;
    }

    .lk-features__note {
        font-size: 14px;
    }
}

@media (max-width: 650px) {
    .lk-features__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .button {
        padding: 15px;
    }
}

/* Apps */

.apps__lk-button {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .apps__lk-button .button {
        width: unset;
    }
}

@media (max-width: 600px) {
    .apps__wrapper {
        height: unset;
    }
}

@media (max-width: 425px) {
    .apps__wrapper::after {
        display: none;
    }

    .apps__lk-button .button {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .apps__lk-button {
        margin-top: 30px;
    }
}
