/* 공통 스타일 */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* 좌우 간격 */
    /*padding: 20px;*/
}

/*공통 css*/
.font_main{
    color: #99c18e ;
}
.font_tit{
    font-size: 44px;
    letter-spacing: -2.5px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}
.font_subtit{
    font-size: 26px;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    line-height: 1.4;
}
.font_art1{
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -.8px;
    line-height: 1.4;
}
.font_dect{
    font-size: 15px;
    color: #666;
}

.txtcent{
    text-align: center;
}
.txtw{
    color: #fff;
}

.txtsky{
    color: #2f3d2a;
    font-weight: 700;
}

.pdt180{
    padding-top: 180px;
}
/*공통 css and*/


/*css motion*/
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}
.blink_ft{
    animation: blink 1.5s infinite;
}
/*  animation: blink 3s infinite;  */



/* --------------- motion ---------------
 -addClass('motion') 되었을때

 motion-wrap
 motion_b btmto_m
*/

.fade_m{ /* fade */
    transition: opacity 1s;
    opacity: 0;
}
.upto_m{ /* 위에서 아래로 */
    transform: translate(0, -70px);
    /*transition: transform 0.1s, opacity 0.1s;*/
    opacity: 0;
}
.btmto_m{ /* 아래에서 위로 */
    transform: translate(0, 70px);
    transition: transform 1s, opacity 1s;
    opacity: 0;
}
.btmto_m2{ /* 아래에서 위로2 */
    transform: translate(0, 70px);
    transition: transform 1.5s, opacity 1s;
    opacity: 0;
}
.btmto_m3{ /* 아래에서 위로2 */
    transform: translate(0, 70px);
    transition: transform 2s, opacity 1s;
    opacity: 0;
}
.lftto_m{ /* 왼쪽에서 오른쪽으로 */
    transform: translate(-70px, 0);
    transition: transform 1s, opacity 1s;
    opacity: 0;
}
.rgtto_m{ /* 오른쪽에서 왼쪽으로 */
    transform: translate(70px, 0);
    transition: transform 1s, opacity 1s;
    opacity: 0;
}
.roll_l{
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s, opacity 0.8s;
    opacity: 0.3;
}
.roll_l.active{
    clip-path: inset(0 0 0 0);
    opacity: 1;
}
.motion.active, .motion-wrap.active .motion_b{ /* active */
    transform: translate(0,0);
    opacity: 1;
}
.motion.active, .motion-wrap.active .motion_b{ /* active */
    transform: translate(0,0);
    opacity: 1;
}
.motion-wrap li:nth-of-type(1){transition-delay: 0.1s;}
.motion-wrap li:nth-of-type(2){transition-delay: 0.3s;}
.motion-wrap li:nth-of-type(3){transition-delay: 0.5s;}
.motion-wrap li:nth-of-type(4){transition-delay: 0.7s;}

.motion-wrap div:nth-of-type(1){transition-delay: 0.1s;}
.motion-wrap div:nth-of-type(2){transition-delay: 0.3s;}
.motion-wrap div:nth-of-type(3){transition-delay: 0.5s;}
.motion-wrap div:nth-of-type(4){transition-delay: 0.7s;}





@media screen and (max-width:1440px) {
    .font_tit {
        font-size: 36px;
        letter-spacing: -2px;
        margin-bottom: 15px;
    }
    .font_art1 {
        font-size: 18px;
    }
    .pdt180{
        padding-top: 170px;
    }
}


@media screen and (max-width:1280px) {
    .font_tit {
        font-size: 34px;
        letter-spacing: -1.8px;
    }
    .font_art1 {
        font-size: 17px;
    }
    .pdt180{
        padding-top: 150px;
    }

}


@media screen and (max-width:800px) {
    .font_tit {
        font-size: 30px;
        letter-spacing: -1.8px;
    }
    .font_art1 {
        font-size: 16px;
    }
    .pdt180{
        padding-top: 130px;
    }



}


@media screen and (max-width:480px) {
    .font_tit {
        font-size: 28px;
        letter-spacing: -1.8px;


    }
    .font_art1 {
        font-size: 14px;
    }
    .pdt180{
        padding-top: 100px;
    }
}