.help__content{
    background: #F2F2F6;
    padding: 50px;
    border-radius: 5px;
}

.help__items{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}


.help__item{
    width: calc(33.3333% - 60px * 2 / 3);
    position: relative;
}

.help__item::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
    background-image: repeating-linear-gradient(90deg, #dadae0, #dadae0 12px, transparent 12px, transparent 16px), repeating-linear-gradient(180deg, #dadae0, #dadae0 12px, transparent 12px, transparent 16px), repeating-linear-gradient(90deg, #dadae0, #dadae0 12px, transparent 12px, transparent 16px), repeating-linear-gradient(180deg, #dadae0, #dadae0 12px, transparent 12px, transparent 16px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}

.help__item:nth-last-of-type(1)::before{
    display: none;
}

.help__head{
    display: flex;
    align-items: center;
    gap: 20px;
}

.help__title{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #040315;
}

.help__description{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.04em;
    color: #030049;
}

.help__body{
    margin-top: 30px;
}

.help__text{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.05em;
    color: #040315;
}

@media (max-width: 1024px) {
    .help__content{
        padding: 30px 20px;
    }
    
    .help__items{
        gap: 30px;
        margin-top: 30px;
    }

    .help__item{
        width: calc(33.3333% - 30px * 2 / 3);
    }

    .help__item::before{
        right: -15px;
    }

    .help__title{
        font-size: 18px;
    }

    .help__body{
        margin-top: 30px;
    }
    
    .help__text{
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .help__items{
        flex-direction: column;
    }
    .help__item{
        width: 100%;
        padding-right: 30px;
    }
    .help__item::before{
        right: 0;
    }
    .help__item:nth-last-of-type(1)::before{
        display: block;
    }
}

.help-bottom{
    margin-top: 10px;
}

.help-bottom__content{
    background: #F2F2F6;
    padding: 36.5px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.help-bottom__left{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.05em;
    color: #040315;
}

.help__right{
    flex-shrink: 0;
}

@media (max-width: 768px) {    
    .help-bottom__content{
        padding: 30px 20px;
        flex-direction: column;
        gap: 50px;
    }
    
    .help-bottom__left{

        font-size: 15px;
    }
    
    .help__right{
        flex-shrink: 0;
    }
     
}