@charset "utf-8";


#history .history_cont {
    padding-left:160px;
    padding-right:160px;
}
#history .history_cont .history_box {
    display:flex;
    align-items: stretch;
    gap:80px;
    padding-bottom:120px;
    position: relative;
}
#history .history_cont .history_box::before {
    content:'';
    width:3px;
    height:100%;
    background-color:#ddd;
    position:absolute;
    left:73.5px;
    bottom:0;
}
#history .history_cont .history_box::after {
    content:'';
    width:calc(100% - 75px);
    height:0;
    border-bottom:1px dashed #ddd;
    position:absolute;
    right:0;
    bottom:60px;
}
#history .history_cont .history_box:last-child::after {
    display:none;
}
#history .history_cont .history_box .his_yy {
    width:150px;
    height:150px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:4px;
    position: relative;
    background-color:#fff;
}
#history .history_cont .history_box .his_yy::before {
    content:'';
    width:20px;
    height:20px;
    border-radius:999px;
    position:absolute;
    left:50%;
    bottom:-22px;
    transform:translateX(-50%);
    border:3px solid #fff;
}
#history .history_cont .history_box .his_yy p {
    width:100%;
    height:100%;
    border-radius:999px;
    font-size:1.55rem;
    font-weight:700;
    color:#fff;
    font-family:'Paperlogy';
    display:flex;
    align-items:center;
    justify-content:center;
}
#history .history_cont .history_box:nth-child(odd) .his_yy {
    border:4px solid #45A7E5;
}
#history .history_cont .history_box:nth-child(odd) .his_yy::before {
    background-color:#45A7E5;
}
#history .history_cont .history_box:nth-child(odd) .his_yy p {
    background-color:#45A7E5;
}
#history .history_cont .history_box:nth-child(even) .his_yy {
    border:4px solid #81B863;
}
#history .history_cont .history_box:nth-child(even) .his_yy::before {
    background-color:#81B863;
}
#history .history_cont .history_box:nth-child(even) .his_yy p {
    background-color:#81B863;
}
#history .history_cont .history_box:last-child:before {
    display:none;
}
#history .history_cont .history_box:last-child .his_yy::before {
    display:none;
}


#history .history_cont .history_box .his_text {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-top:10px;
}
#history .history_cont .history_box .his_text .his_co {
    border:1px solid #ddd;
    border-radius:30px;
    padding:10px 30px;
    display:flex;
    align-items:center;
    gap:20px;
}
#history .history_cont .history_box .his_text .his_co .his_dd {
    font-size:1rem;
    font-weight:700;
    letter-spacing:-0.54px;
    line-height:177%;
}
#history .history_cont .history_box .his_text .his_co .his_ti {
    font-size:1rem;;
    font-weight:400;
    letter-spacing:-0.54px;
    line-height:177%;
}
#history .history_cont .history_box:nth-child(odd) .his_text .his_co .his_dd {
    color:#45A7E5;
}
#history .history_cont .history_box:nth-child(even) .his_text .his_co .his_dd {
    color:#81B863;
}


/* ********** 반응형 미디어 쿼리 css ********** */
@media(max-width:1440px) {
    #history .history_cont {
        padding-left:130px;
        padding-right:130px;
    }
}
@media(max-width:1200px) {
    #history .history_cont {
        padding-left:80px;
        padding-right:80px;
    }
}
@media(max-width:1024px) {
    #history .history_cont {
        padding-left:40px;
        padding-right:40px;
    }
    #history .history_cont .history_box {
        gap:40px;
    }
}
@media(max-width:991px) {}
@media(max-width:768px) {
    #history .history_cont {
        padding-left:0;
        padding-right:0;
    }

    #history .history_cont .history_box::before {
        left:57.5px;
    }
    #history .history_cont .history_box::after {
        width:calc(100% - 60px);
    }
    #history .history_cont .history_box .his_yy {
        width:120px;
        height:120px;
    }
    #history .history_cont .history_box .his_yy::before {
        width: 15px;
        height: 15px;
        bottom: -17px;
    }
    #history .history_cont .history_box .his_yy p {
        font-size:1.33rem;
    }
    
}
@media(max-width:640px) {

    #history .history_cont .history_box {
        flex-direction:column;
        gap:10px;
        padding-bottom:40px;
    }

    #history .history_cont .history_box::after {
        width:100%;
        bottom:20px;
    }
    #history .history_cont .history_box .his_yy {
        width:100%;
        height:auto;
        text-align:center;
    }
    #history .history_cont .history_box .his_yy::before {
        display:none;
    }
    #history .history_cont .history_box .his_yy p {
        padding:10px;
    }
    #history .history_cont .history_box .his_text {
        padding-top:0;
    }
    #history .history_cont .history_box::before {
        display:none;
    }
}
@media(max-width:480px) {}
@media(max-width:320px) {}