@charset "utf-8";

/* 내용관리 */



.sec h3 {
    margin-bottom: 80px;
    text-align: center;
}

.sec ul {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.sec ul li {
    width: 50%;
    display: flex;
    flex-flow: row;
    margin-bottom: 60px;
}

.sec ul li .thumb {
    width: 140px;
    max-width: unset;
    margin-right: 30px;
    border-radius: 50%;
 
    box-shadow: 0 2px 2px rgba(0,0,0,.1);
}

.sec ul li h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.sec ul li p {
    margin-bottom: 30px;
    padding-right: 60px;
}

.linkBtn {
    border: 2px solid #8a9ba8;
    color: #8a9ba8;
    width: 160px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 5px 10px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.linkBtn:hover {
    border: 2px solid #333;
    color: #333;
}

.txt_wr ul {
    display: flex;
    flex-flow: column;
    margin-bottom: 30px;
    background: #f7f7f7;
    padding: 30px;
}

.txt_wr ul li {
    margin-bottom: 20px;
}

.txt_wr ul li:last-child {
    margin: 0;
}



@media (max-width: 1024px){



    .sec h3 {
        margin-bottom: 30px;
    }
    
    .sec .tit {
        padding: 0;
        margin-bottom: 40px;
    }

    .sec ul {
        flex-flow: column;
        max-width: 600px;
        margin: auto;
    }
 
    .sec ul li p {
        padding-right: 0;
        max-width: 300px;
        text-align: center;
    }

    .sec ul li h4 {
        text-align: center;
    }

    .sec ul li{
        width: 100%;
        margin-bottom: 60px;
        /* align-items: center; */
    }

    .sec ul li .thumb {
        margin-right: 0;
        margin-bottom: 20px;
    }
 
    .sec ul li {
        align-items: center;
        justify-content: center;
        flex-flow: column;
    }
        
    .linkBtn {
        margin: auto;
    }
}