
/* card 이펙트 */

.card {
    overflow: hidden;
}


.line2 {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 0;
    left: -100%;
    background-color: rgb(127, 220, 230);
    transition: all 0s ease 0s;
}

.line {
    position: absolute;
    width: 10px;
    height: 100%;
    left: 0;
    top: -100%;
    background-color: rgb(127, 220, 230);
    transition: all 0.2s ease 0.2s;
}

.con-1 > .card::after {
    width: 100%;
    height: 10px;
    right: -100%;
    background-color: rgb(127, 220, 230);
    transition: all 0.2s ease 0.4s;
}
.con-1 > .card::before {
    width: 10px;
    height: 100%;
    right: 0;
    bottom: -100%;
    background-color: rgb(127, 220, 230);
    transition: all 0.2s ease 0.6s;
}

/* hover */
.con-1 > .card:hover::before {
    bottom: 0;
    transition: all 0.2s ease 0s;
}

.con-1 > .card:hover::after {
    right: 0;
    transition: all 0.2s ease 0.2s;
}

.con-1 > .card:hover > .line {
    top: 0;
    right: 0;
    transition: all 0.2s ease 0.4s;
}

.con-1 > .card:hover > .line2 {
    left: 0;
    right: 0;
    transition: all 0.2s ease 0.6s;
}


/* 끝 */


.con1-sec {
    background-color: rgb(29, 29, 29);
}

.con-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 740px;
}

.con-1 > .card {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    width: 32.5%;
    height: 486px;
    background-color: #ffffff;
}

.con-1 > .card > a > .morebox {
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    width: 77px;
    height: 77px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgb(127, 220, 230);
}
.con-1 > .card > a > .morebox > .topbx {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    width: 100%;
    height: 50%;
    background-color: #ffffff;
}
.con-1 > .card > a > .morebox > .topbx > a {
    color: #333333;
}
.con-1 > .card > a > .morebox > .botbx {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.con-1 > .card > .imgbox {
    width: 100%;
    height: 50%;
    background-color: #8a8a8a;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.con-1 > .card:nth-of-type(1) > .imgbox {
    background-image: url('../img/con1-1.jpg');
}
.con-1 > .card:nth-of-type(2) > .imgbox {
    background-image: url('../img/con1-2.jpg');
}
.con-1 > .card:nth-of-type(3) > .imgbox {
    background-image: url('../img/con1-3.jpg');
}

.con-1 > .card > .texbox {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

.con-1 > .card > .texbox > h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(16, 16, 17);
}

.con-1 > .card > .texbox > p {
    text-align: center;
    width: 70%;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(106, 106, 111);
}


@media (max-width: 1199.99px) and (min-width: 992px) {
    
.con-1 {
    height: 680px;
}

.con-1 > .card {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    width: 32.5%;
    height: 440px;
    background-color: #ffffff;
}

.con-1 > .card > .morebox {
    width: 77px;
    height: 77px;
}
.con-1 > .card > .morebox > .topbx {
    padding-top: 10px;
    font-size: 13px;
    width: 100%;
    height: 50%;
}
.con-1 > .card > .morebox > .botbx {
    padding-top: 10px;
}

.con-1 > .card > .texbox > h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}

.con-1 > .card > .texbox > p {
    width: 70%;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 300;
}
}


@media (max-width: 991.99px) and (min-width: 768px) {
    .con-1 {
        height: 630px;
    }
    
    .con-1 > .card {
        position: relative;
        display: flex;
        flex-flow: column nowrap;
        width: 32.5%;
        height: 440px;
        background-color: #ffffff;
    }
    
    .con-1 > .card > .morebox {
        width: 77px;
        height: 77px;
    }
    .con-1 > .card > .morebox > .topbx {
        padding-top: 10px;
        font-size: 13px;
        width: 100%;
        height: 50%;
    }
    .con-1 > .card > .morebox > .botbx {
        padding-top: 10px;
    }
    
    .con-1 > .card > .texbox > h3 {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
    }
    
    .con-1 > .card > .texbox > p {
        width: 70%;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 300;
    }
}


@media (max-width: 767.99px) and (min-width: 576px) {
    .con-1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 50px 30px;
    }
    
    .con-1 > .card {
        position: relative;
        display: flex;
        flex-flow: column nowrap;
        width: 100%;
        height: 440px;
        margin-bottom: 20px;
        background-color: #ffffff;
    }
    .con-1 > .card:nth-of-type(3) {
        margin-bottom: 0;
    }
    
    .con-1 > .card > .morebox {
        width: 77px;
        height: 77px;
    }
    .con-1 > .card > .morebox > .topbx {
        padding-top: 10px;
        font-size: 13px;
        width: 100%;
        height: 50%;
    }
    .con-1 > .card > .morebox > .botbx {
        padding-top: 10px;
    }
    
    .con-1 > .card > .texbox > h3 {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
    }
    
    .con-1 > .card > .texbox > p {
        width: 70%;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 300;
    }
}

@media (max-width: 575.99px) {
    .con-1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 50px 30px;
    }
    
    .con-1 > .card {
        position: relative;
        display: flex;
        flex-flow: column nowrap;
        width: 100%;
        height: 440px;
        margin-bottom: 20px;
        background-color: #ffffff;
    }
    .con-1 > .card:nth-of-type(3) {
        margin-bottom: 0;
    }
    
    .con-1 > .card > .morebox {
        width: 77px;
        height: 77px;
    }
    .con-1 > .card > .morebox > .topbx {
        padding-top: 10px;
        font-size: 13px;
        width: 100%;
        height: 50%;
    }
    .con-1 > .card > .morebox > .botbx {
        padding-top: 10px;
    }
    
    .con-1 > .card > .texbox > h3 {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
    }
    
    .con-1 > .card > .texbox > p {
        width: 70%;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 300;
    }
}

@media (max-width:419.99px) {
    .con-1 > .card > .texbox > h3 {
        font-size: 20px;
        font-weight: 400;
        line-height: 34px;
    }
    
    .con-1 > .card > .texbox > p {
        width: 90%;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 300;
    }
}

