.c-container {
    display: flex;
    flex-wrap: wrap;
}

.c-item {
    width: 32%;
    display: flex;
    flex-direction: column;
    margin: 0px 0.66%;
}

.c-item .text {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin: 3px 0px;
    line-height: 80px;
    justify-content: space-around;
}

.c-item .text::before {
    position: absolute;
    top: 0px;
    height: 4px;
    width: 100%;
    background-color: var(--main-color);
    left: 0px;
    content: ' ';
}

.c-item .text::after {
    position: absolute;
    bottom: 0px;
    height: 4px;
    width: 100%;
    background-color: var(--main-color);
    left: 0px;
    content: ' ';
}

.c-item .text span {
    color: var(--main-color);
    font-weight: 550;
    font-size: 17px;
}

.c-item .img {
    width: 100%;
    margin: 3px 0px;
}

.c-item .img img {
    width: 100%;
}

@media screen and (max-width:576px) {
    .c-item {
        width: 100%;
        margin: 0px 0px;
    }

    .text.app{
        display: flex;
    }
    .text.descktop{
        display: none;
    }
}

@media screen and (min-width:576px) {
    .c-item {
        width: 100%;
        margin: 0px 0px;
    }
    .text.app{
        display: flex;
    }
    .text.descktop{
        display: none;
    }
}

@media screen and (min-width:786px) {
    .c-item {
        width: 32%;
        margin: 0px 0.66%;
    }
    .text.app{
        display: none;
    }
    .text.descktop{
        display: flex;
    }
}
