/* .about-box{} */

.about-cnt {
    padding: 60px 0 90px;
    display: flex;
    justify-content: space-between;
}


.about-ctle {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .about-ctlul{} */
.about-ctlul>li {
    padding: 30px 0;
    position: relative;
}

.about-ctlul>li::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #ffffff, #102b6e);
}

.about-ctlul>li:last-child {
    padding: 30px 0 0;
}

.about-ctlul>li:last-child::after {
    height: 0px;
}

.about-ctlul>li>h3 {
    font-size: 40px;
    color: #102b6e;
    font-weight: 600;
}

.about-ctlul>li>p {
    font-size: 20px;
    color: #666666;
    margin-top: 5px;
}


.about-ctri {
    width: 71%;
}

.about-ctri>p {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
}

.about-ctri>img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}



@media only screen and (max-width:1440px) {
    .about-cnt {
        padding: 40px 0 70px;
    }

    .about-ctlul>li {
        padding: 20px 0;
    }
    .about-ctlul>li:last-child {
        padding: 20px 0 0;
    }

    .about-ctlul>li>h3 {
        font-size: 32px;
    }

    .about-ctlul>li>p {
        font-size: 16px;
    }

    .about-ctri>p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 10px;
    }







}



@media only screen and (max-width:768px) {
    .about-cnt {
        padding: .4rem .1rem .7rem;
        flex-direction: column;
    }
    .about-ctle {
        width: 100%;
    }

    .about-ctlul>li {
        padding: .2rem 0;
    }
    .about-ctlul>li:last-child {
        padding: .2rem 0;
    }
    .about-ctlul>li:last-child::after{
        height: 2px;
    }

    .about-ctlul>li>h3 {
        font-size: 26px;
    }
    .about-ctlul>li>p {
        font-size: 14px;
        margin-top: 3px;
    }


    .about-ctri {
        width: 100%;
        margin-top: .2rem;
    }
    .about-ctri>p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: .1rem;
    }

}