/* textType */
.text__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.text {
    width: 32%;
    margin-bottom: 2%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    transition: background 0.6s;
    background: rgba(71, 47, 193, 0.3);
}
.text:hover {
    background: rgba(95, 71, 214, 0.6);
}

.text__title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    padding-top: 75px;
    color: #b5b5b5;
}
.text__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url("../img/text_icon.svg");
}
.text.t1 .text__title::before {
    background-position: 0 0;
}
.text.t2 .text__title::before {
    background-position: -60px 0;
}
.text.t3 .text__title::before {
    background-position: -120px 0;
}
.text.t4 .text__title::before {
    background-position: -180px 0;
}
.text.t5 .text__title::before {
    background-position: -240px 0;
}
.text.t6 .text__title::before {
    background-position: -300px 0;
}
.text__desc {
    font-size: 18px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #b5b5b5;
    margin-bottom: 20px;
}
.text__btn {
    font-size: 16px;
    line-height: 1;
    text-decoration: underline;
    text-underline-position: under;
    color: #b5b5b5;
}
@media (max-width: 960px) {
    .text {
        width: 49%;
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .text__title {
        font-size: 20px;
    }
    .text__desc {
        font-size: 16px;
    }
    .text__title::before {
        width: 40px;
        height: 40px;
    }
    .text.t1 .text__title::before {
        background-position: -10px -10px;
    }
    .text.t2 .text__title::before {
        background-position: -70px -10px;
    }
    .text.t3 .text__title::before {
        background-position: -130px -10px;
    }
    .text.t4 .text__title::before {
        background-position: -190px -10px;
    }
    .text.t5 .text__title::before {
        background-position: -250px -10px;
    }
    .text.t6 .text__title::before {
        background-position: -310px -10px;
    }
}
@media (max-width: 480px) {
    .text {
        width: 100%;
    }
    .text:last-child {
        margin-bottom: 0;
    }
}
