  .custom_type3 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-primary);
    background-repeat: no-repeat;
}

.custom_type3 .item .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

    .custom_type3 .item .title::after {
        content: "";
        width: 55px;
        display: block;
        height: 4px;
        background-color: var(--color-secondary);
        top: 15px;
        position: relative;
        /* margin-top: 10px; */
        margin-bottom: 22px;
    }

    .custom_type3 .item .article {
        color: #fff;
        margin-bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        box-sizing: border-box;
    }

@media (max-width: 767.98px) {
    .custom_type3 {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    .custom_type3 .item .title {
        margin-bottom: 10px;
        line-height:1.2 !important;
    }
    
    .custom_type3 .item .title::after {
        display: none;
    }
        .custom_type3 .container .item {
            padding:0;
            padding-bottom:30px;
        }
}