.your-lms-is-not{
    background-color: #EEEEEE;
    padding: 160px 0 0;
}

.your-lms-is-not__inner{
    max-width: 1398px;
    margin: 0 auto;
    padding: 0 20px;
}

.your-lms-is-not__title{
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
    margin-bottom: 63px;
    color: #1C1C1C;
}

.your-lms-is-not__items {
    display: flex;
    gap: 30px;
    margin-bottom: 100px;
}

.your-lms-is-not__item {
    padding: 30px 30px 41px;
    flex: 1;
    min-height: 400px;
    display: flex !important;
    flex-direction: column;
    position: relative;
    background-color: #EEEEEE;
    border-radius: 8px;
    border: 1px solid #1C1C1C;
    transition: all 0.3s;
}

.your-lms-is-not__item:last-child {
    border: none;
    clip-path: polygon(
            0 0,
            calc(100% - 80px) 0,
            100% 80px,
            100% 100%,
            0 100%
    );
    border-radius: 8px;
}

.your-lms-is-not__item:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1C1C1C;
    z-index: 0;

    clip-path: polygon(
            0 0,
            calc(100% - 80px) 0,
            100% 80px,
            100% 100%,
            0 100%
    );
    border-radius: 8px;
}

.your-lms-is-not__item:last-child::after{
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #EEEEEE;
    z-index: 1;
    clip-path: polygon(
            0 0,
            calc(100% - 80px) 0,
            100% 80px,
            100% 100%,
            0 100%
    );
    border-radius: 8px;
}

.your-lms-is-not__item.accent {
    background-color: #FFF;
    box-shadow: 0 12px 16px -4px #10182814;
    border: 1px solid transparent;
}

.your-lms-is-not__item.accent:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #FFF;
    z-index: 0;

    clip-path: polygon(
            0 0,
            calc(100% - 80px) 0,
            100% 80px,
            100% 100%,
            0 100%
    );
    border-radius: 8px;
}

.your-lms-is-not__item.accent:last-child::after{
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #FFF;
    z-index: 1;
    clip-path: polygon(
            0 0,
            calc(100% - 80px) 0,
            100% 80px,
            100% 100%,
            0 100%
    );
    border-radius: 8px;
}

.your-lms-is-not__item:last-child > *{
    position: relative;
    z-index: 2;
}

.your-lms-is-not__item-icon {
    background-color: #FFFFFF;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.your-lms-is-not__item.accent .your-lms-is-not__item-icon {
    background-color: #EEEEEE;
}

.your-lms-is-not__item-title{
    font-family: 'Geist', sans-serif;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 32px;
    margin-top: auto;
}

.your-lms-is-not__item-text{
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #575757;
}

@media (max-width:768px){
    .your-lms-is-not{
        padding: 150px 0 0;
    }

    .your-lms-is-not__title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 37px;
        text-align: left;
    }

    .your-lms-is-not__items{
        margin-bottom: 0;
    }

    .your-lms-is-not__items .swiper-wrapper{
        padding-bottom: 23px;
    }

    .your-lms-is-not__item{
        flex: auto;
    }

    .your-lms-is-not__pagination{
        margin-bottom: 23px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .your-lms-is-not__pagination .swiper-pagination-bullet{
        margin: 0 !important;
        width: 6px;
        height: 6px;
        background: #D9D9D9;
        opacity: 1;
        border-radius: 12px;
        transition: all 0.5s;
        opacity: 0.4;
    }

    .your-lms-is-not__pagination .swiper-pagination-bullet-active{
        width: 18px;
        background: #575757;
        opacity: 1;
    }

}