/* textType */
#textType {
    background-color: #F6F8FD;
    box-sizing: border-box;
}

.text__inner {
    padding: 120px 0;
    display: flex;
    box-sizing: border-box;
}

.text__text {
    width: 400px;
}

.text__text .logo {
    width: 200px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: #FF0039;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 20px;
}

.text__text .title {
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: 700;
}

.text__text .desc {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.text__card {
    display: flex;
    flex-wrap: wrap;
    width: 800px;
}

.text__card .text {
    padding: 0 20px 20px 20px;
    width: 40%;
    margin-bottom: 50px;
}

.text__card .text:nth-child(3) {
    margin-bottom: 0px;
}

.text__card .text:nth-child(4) {
    margin-bottom: 0px;
}

.text__card .text .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: url(../img/textType/textType_icon02.svg) no-repeat;
    background-position: -9px -10px;
}

.text__card .text:nth-child(1) .icon {
    background-color: #48ec9d51;
}

.text__card .text:nth-child(2) .icon {
    background-color: #8bff3353;
    background-position: -109px -10px;
}

.text__card .text:nth-child(3) .icon {
    background-color: #f76d6d4e;
    background-position: -209px -10px;
}

.text__card .text:nth-child(4) .icon {
    background-color: #4856ec57;
    background-position: -309px -10px;
}

.text__card .text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.text__card .text p {
    font-size: 18px;
    line-height: 1.4;
    color: #666;
}

@media(max-width : 1220px) {
    .text__inner {
        width: 96%;
    }
}

@media(max-width : 775px) {
    .text__text .title {
        font-size: 40px;
    }

    .text__text .desc {
        font-size: 14px;
    }

    .text__card .text h3 {
        font-size: 20px;
    }

    .text__card .text p {
        font-size: 16px;
    }
}

@media(max-width : 700px) {
    .text__inner {
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .text__text {
        width: auto;
        margin-left: 20px;
    }

    .text__card {
        width: 100%;
        justify-content: flex-end;
        margin-top: 30px;
    }

    .text__card .text {
        margin-bottom: 50px;
    }

    .text__card .text:nth-child(3) {
        margin-bottom: 50px;
    }

    .text__card .text:nth-child(4) {
        margin-bottom: 0px;
    }

    .text__card .text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

@media(max-width : 468px) {
    .text__card .text {
        width: 96%;
        text-align: center;
    }

    .text__card .text .icon {
        margin: 0 auto 30px auto;
    }
}