@charset "utf-8";

/* size */
@media screen and (max-width: 1250px) { } /* tablet */
@media screen and (max-width: 650px) { } /* mobile */

/* default */
*{
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color : inherit;
    box-sizing: border-box;
    letter-spacing: inherit;
    line-height: inherit;
}

body{ font-family: 'Pretendard', sans-serif; font-weight:400; font-size: 16px; letter-spacing: -0.04em; }
section{ display:block; }
a{ color:inherit; }

.inner{ width:1200px; margin:0 auto; }

.paging_box{ padding:10px 0; display:flex; align-items: center; justify-content: center; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }

html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: #CD354E; border-radius: 10px;}

@media screen and (max-width: 1250px) { 
    .inner{ width:100%; padding:0 4vw; }
} /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box{ font-size: 13px; }
} /* mobile */



/* header */
header{ z-index: 999; transition: background .5s; background-color: rgba(0,0,0,0.1); position: fixed; left: 0; top: 0; width: 100%; padding: 14px 0; color: #fff; }
header.on{ background-color: #fff !important; color: #222 !important; }
header.whiteBg{ background-color: #fff !important; color: #222 !important; }
header.whiteBg2{ box-shadow: 7px 14px 9px 0px rgba(0, 0, 0, 0.35); background-color:rgba(255,255,255,.4); color: #222; }
header.whiteOpacityBg{ background-color: rgba(255,255,255,0.1); color: #fff; }
header .inner{ display: flex; align-items: center; justify-content: space-between; }
header.transparent{ background-color: transparent;} 
header .logo.black{ display: none; }
header.on .logo.black{ display: block; }
header.on .logo.white{ display: none; }
header.whiteBg .logo.black{ display: block; }
header.whiteBg .logo.white{ display: none; }

header.whiteBg2 .logo.black{ display: block; }
header.whiteBg2 .logo.white{ display: none; }

header .menuList{ text-align: center; font-weight: 500; display: flex; align-items: center; gap: 70px; } 
header .menuList > li{ display: flex; align-items: center; justify-content: center; position: relative; }
header .menuList .subMenu{ display: none; padding: 10px 0; min-width: 200px; top: calc(100% + 20px); position: absolute; background-color: #fff; color: #222; }
header .menuList .subMenu > li a{ display: block; padding: 10px 10px; line-height: 1.3em; }
header .contactBtn{ display: flex; align-items: center; gap: 5px; border: 2px solid #fff; border-radius: 100px; padding: 7px 12px; }
header .contactBtn .black{ display: none; }
header.on .contactBtn{ border-color: #222; }
header.whiteBg .contactBtn{ border-color: #222; }
header.whiteBg2 .contactBtn{ border-color: #222; }
header.on .contactBtn .black{ display: block; }
header.on .contactBtn .white{ display: none; }
header.whiteBg .contactBtn .black{ display: block; }
header.whiteBg .contactBtn .white{ display: none; }
header.whiteBg2 .contactBtn .black{ display: block; }
header.whiteBg2 .contactBtn .white{ display: none; }
header .slideMenuBtn{ background: transparent; position: fixed; right: 4vw; top: 14px; z-index: 99999; display: none; }

@media screen and (max-width: 1250px) { 
    header .menuList{ display: none; }
    header .slideMenuBtn{ margin-top: -2.5px; flex-direction: column; border: none; display: flex; align-items: center; justify-content: center; width: 25px; height: 26px; }
    header .slideMenuBtn span{ transition: opacity .5s, transform .5s , width .5s, background .5s; flex-shrink: 0; height: 2px; background-color: #fff; display: block; width: 100%; margin: 2.5px 0; }
    header.whiteBg .slideMenuBtn span{ background-color: #222; }  
    header.on .slideMenuBtn span{ background-color: #222; }  
    header.whiteBg2 .slideMenuBtn span{ background-color: #222; } 

    header .slideMenuBtn.on span:nth-child(1){ transform: rotate(45deg) translateX(5px) translateY(5px); }
    header .slideMenuBtn.on span:nth-child(2){ opacity: 0; width: 0; }
    header .slideMenuBtn.on span:nth-child(3){ transform: rotate(-45deg) translateX(4px) translateY(-5px); }
}
@media screen and (max-width: 650px) { 
    header .logo{ width: 120px; }
}


/* .mobileMenu */
.mobileMenu{ display: none; overflow-y: scroll; -ms-overflow-style: none; display: none; padding-top: 55.92px; position: fixed; left: 0; top: 0; background: #fff; width: 100%; height: 100%; z-index: 99; }
.mobileMenu::-webkit-scrollbar{ display: none; }
.mobileMenu .item{ display: flex; align-items: center; justify-content: space-between; padding: 20px 4vw; font-size: 20px; font-weight: 600; border-bottom: 1px solid #efefef; }
.mobileMenu .item .plus_minus{ position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 25px; height: 26px; }
.mobileMenu .item .plus_minus .bar{ transition: transform .5s; display: block; height: 2px; width: 100%; background-color: #222; }
.mobileMenu .item .plus_minus .bar:nth-child(2){ transform: rotate(90deg); position: absolute; }
.mobileMenu .item .plus_minus.on .bar{ transform: rotate(0); }
.mobileMenu .subMenu{ display: none; }
.mobileMenu .subMenu a{ font-size: 18px; border-bottom: 1px solid #efefef; display: block; padding: 20px 4vw; font-weight: 400; }
@media screen and (min-width: 1250px) { 
    .mobileMenu{ display: none !important; }
}
@media screen and (max-width: 650px) { 
    .mobileMenu .item .plus_minus{ width: 18px; height: 18px; }  
}

/* footer */
footer{ border-top: 1px solid #E4E4E4; }
footer .contentBox{ padding: 60px 0; }
footer .logo{ width: 218px; }
footer .contentBox .halfBox{ display: flex; align-items: center; justify-content: space-between; }
footer .contentBox .leftBox .infoList{ max-width: 700px; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
footer .contentBox .leftBox .infoList > li{ margin-right: 10px;  }
footer .contentBox .rightBox .title{ text-align: right; font-weight: 500; }
footer .contentBox .rightBox .snsList{ margin-top: 10px; display: flex; gap: 30px; }
footer .contentBox .rightBox .snsList > li img{ margin: 0 auto; display: block;  }
footer .contentBox .rightBox .snsList > li .snsName{ margin-top: 10px; text-align: center; }
footer .bottomSec{ border-top: 1px solid #E4E4E4; padding: 20px 0; }
footer .bottomSec .inner{ display: flex; align-items: center; justify-content: space-between; }
footer .bottomSec .privacy{ font-weight: 500; }
footer .bottomSec .copy_right{ color: #CCC; font-size: 14px; }

@media screen and (max-width: 1250px) { 
    footer .logo{ width: auto; }
    footer .contentBox .rightBox .snsList { gap: 15px; }
    footer .contentBox .rightBox .snsList > li img{ width: 40px; }
    footer .contentBox .rightBox .snsList > li .snsName{ font-size: 14px; }
}
@media screen and (max-width: 950px) { 
    footer{ font-size: 14px; }
    footer .contentBox .halfBox{ flex-direction: column; align-items: flex-start; gap: 40px; }
    footer .contentBox .rightBox .title{ text-align: left; }

    footer .contentBox .rightBox .snsList{ margin-top: 10px; }
    footer .contentBox .rightBox .snsList > li img{ width: 30px; }
    footer .contentBox .rightBox .snsList > li .snsName{ font-size: 13px; margin-top: 2px; }
    footer .bottomSec .copy_right{ font-size: 12px; } 
}
@media screen and (max-width: 650px) { 
    footer .logo{ width: 120px; }
    footer .contentBox .halfBox{ gap: 20px; }
}

/* 개인정보처리방침 , 이용약관 팝업 */
.privacyPopup{ 
	position: fixed; background-color: rgba(0, 0, 0, 0.60); width: 100%; height: 100%; z-index: 99999; left: 0; top: 0; 
	display: flex; align-items: center; justify-content: center; 
	opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s;
}
.privacyPopup.active{ opacity : 1; visibility: visible; }
.privacyPopup .inner{ max-width: 600px; }
.privacyPopup .contentWrap{ background-color: #fff; padding: 40px 30px; }
.privacyPopup .contentWrap .titleBox{ display: flex; justify-content: space-between; align-items: center; }
.privacyPopup .contentWrap .titleBox span{ font-weight: 600; font-size: 24px;  }
.privacyPopup .contentWrap .titleBox .closeBtn{ cursor: pointer;  }

.privacyPopup .contentWrap .contentBox{ margin-top: 30px; background-color: #F7F7F7; padding: 30px; max-height: 60vh; overflow-y: scroll; }

@media screen and (max-width: 650px) {
	.privacyPopup .contentWrap{ padding: 30px 20px; }
	.privacyPopup .contentWrap .titleBox span{ font-size: 18px; }
	.privacyPopup .contentWrap .contentBox{ padding: 15px; margin-top: 20px; font-size: 14px; }
}


/* .main .visualSec */
.main .visualSec{ position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 100px 0; min-height: 100vh; background-color: #000; }
.main .visualSec .videoBg{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.main .visualSec .inner{ position: relative; z-index: 1; padding-bottom: 5vh; }
.main .visualSec .t1{ color: #fff; font-size: 24px; font-weight: 500; }
.main .visualSec .t2{ color: #fff; margin-top: 20px; font-size: 64px; font-weight: 700; word-break: keep-all; } 

@media screen and (max-width: 1250px) {
    .main .visualSec .t1{ font-size: 18px; }
    .main .visualSec .t2{ font-size: 45px; }
}
@media screen and (max-width: 950px) {
    .main .visualSec .t1{ font-size: 16px; }
    .main .visualSec .t2{ font-size: 30px; }
}
@media screen and (max-width: 650px) {
    .main .visualSec .t1{ font-size: 14px; }
    .main .visualSec .t2{ font-size: 25px; }
}

/* .main .aboutSec */
.main .aboutSec{  position: relative; flex-direction: column; padding: 100px 0 50px 0; min-height: 1000px; height: 100vh; display: flex; align-items: center; justify-content: center; }
.main .aboutSec .inner{ margin-top: 15vh; display: flex; flex-direction: column; justify-content: center; position: relative; }
.main .aboutSec .circle_list{ top: -200px; position: absolute; z-index: 2; right: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.main .aboutSec .circle_list > li + li{ margin-top: -40px; }
.main .aboutSec .circle_list .circle{ font-size: 24px; display: flex; align-items: center; justify-content: center; width: 240px; height: 240px; border-radius: 50%; background: #222; color: #fff; border-radius: 50%; }
.main .aboutSec .circle_list .circle.redBg{ background-color: #CF3140; }
.main .aboutSec .circle_list .circle.grayBg{ background-color: rgba(209, 210, 212, 0.8); }
.main .aboutSec .circle_list .circle.mintBg{ background-color: #5CC2CE; }
.main .aboutSec .circle_list .circle .title{ width: 170px; margin-left: 38px; padding-left: 30px; display: flex; align-items: center; justify-content: flex-start; position: relative; }
.main .aboutSec .circle_list .circle .title .white_circle{ display: flex; align-items: center; justify-content: center; position: absolute; left: 0; width: 19px; height: 19px; background-color: #fff; border-radius: 50%; }
.main .aboutSec .circle_list .circle .title .white_circle .barWrap{ position: relative; display: flex; align-items: flex-end; justify-content: center; }
.main .aboutSec .circle_list .circle .title .white_circle .barWrap .bar{ position: absolute; width: 2px; height:193px; background-color: #fff; bottom: 0; }
.main .aboutSec .content{ position: relative; z-index: 2; font-size: 24px; margin-top: 20px; font-weight: 500; line-height: 1.5;  font-size: 34px;}
.main .aboutSec .content b { font-weight: 700; }
.main .aboutSec .content span { font-size: 0.8em; }
.main .aboutSec .bottomBox{ margin-top: 72px; width: 100%; padding-left: calc((100% - 1200px) / 3); }
.main .aboutSec .bottomBox .grayBg{ padding: 80px 140px; display: flex; gap: 65px; position: relative; background-color: #F5F5F5; border-radius: 1000px 0 0 1000px; }
.main .aboutSec .bottomBox .grayBg::before{ content:'Red Bricks'; color:#F5F5F5; position: absolute; right: 28px; bottom: calc(100% - 30px); font-size: 191px; font-weight: 700;  }
/* .main .aboutSec .bottomBox .grayBg .box{ min-width:150px; } */
.main .aboutSec .bottomBox .info{ margin-top: 15px; text-align: center; }


.main_circle { background: #CF3140; width: 12px; height: 12px; border-radius: 100px; display: none; margin: 0 auto; }
.main_title1{ position: relative; z-index: 2; color: #fff; font-size: 18px; background-color: #CF3140; width: fit-content; padding: 10px 15px; border-radius: 100px; }
.main_title2{ position: relative; z-index: 2; font-size: 52px; font-weight: 700;  }
.main_title2::before { position: absolute; top: -9px; left: 7px;  content: ''; display: block; width: 12px; height: 12px; background-color: #CF3140; border-radius: 100px; }
.main_title2 b { font-size: 0.45em; }

@media screen and (max-width: 1250px) {
    .main .aboutSec{ min-height: 917px; }
    .main_title1{ font-size: 16px; }
    .main_title2{ font-size: 40px; margin-top: 5px; }
    .main .aboutSec .content{ font-size: 18px; }

    .main .aboutSec .circle_list{ right: 4vw; }
    .main .aboutSec .circle_list .circle{ font-size: 18px; width: 200px; height: 200px; }
    .main .aboutSec .circle_list .circle .title{ width: 120px; margin-left: 0; }
    .main .aboutSec .circle_list .circle .title .white_circle{ width: 15px; height: 15px; }
    .main .aboutSec .circle_list .circle .title .white_circle .barWrap .bar{ height: 162px; }

    .main .aboutSec .bottomBox .grayBg{ padding: 40px 80px; }
    .main .aboutSec .bottomBox .grayBg::before{ font-size: 120px; bottom: 100%;  }
    .main .aboutSec .bottomBox .grayBg .box{ min-width: 150px; }

    .main_circle { width: 8px; height: 8px; }
    .main .aboutSec .bottomBox .grayBg { gap: 40px; }

    .main_title2::before { width: 10px; height: 10px; }
}   
@media screen and (max-width: 950px) {
    .main .aboutSec { min-height:100vh; height: auto; padding-bottom: 0; }
    .main .aboutSec .inner{ margin-top: 0; }
    .main_title1{ font-size: 16px; }
    .main_title2{ font-size: 25px;  }
    .main .aboutSec .content{ font-size: 16px; }
    .main .aboutSec .circle_list{ margin-top: 40px; position: static; flex-direction: row; }
    .main .aboutSec .circle_list > li { width: calc(100% / 3); }
    .main .aboutSec .circle_list > li + li{ margin-top: 0; }
    .main .aboutSec .circle_list .circle{ width: 100%; height: 31vw; font-size: 3vw; }
    .main .aboutSec .circle_list .circle .title{ width: auto; padding-left: 0; }
    .main .aboutSec .circle_list .circle .title .white_circle{ display: none; }
    .main .aboutSec .bottomBox .grayBg{ gap: 40px; padding: 20px 40px; border-radius: 0; margin-top: 12vw; }
    .main .aboutSec .bottomBox .grayBg::before{ right: 0; font-size: 19vw; }
    .main .aboutSec .bottomBox .grayBg .box{ min-width: unset; }
}
@media screen and (max-width: 650px) {
    .main .aboutSec .circle_list .circle .title{ font-size: 4.5vw; }
    .main .aboutSec .bottomBox .grayBg{ padding: 40px; text-align: center; flex-direction: column; }
    .main_circle { width: 8px; height: 8px; display: block; } 
    .main_title2::before { display: none; } 
}




/* paralSlideSection */
.paralSlideSection{ min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: #F8F3EC; position: relative; overflow: hidden; padding: 100px 0; }
.paralSlideSection .inner{ max-width: 100%; }
.paralSlideSection .hiddenWrap{ max-width: 200px; max-height: 200px; overflow: hidden; width: 20vw; height: 20vw; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.paralSlideSection .titleBox { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; }
.paralSlideSection .titleBox .title{ font-size: 52px; font-weight: 700; }
.paralSlideSection .titleBox .moreBtn{ font-weight: 400; font-size: 22px; color: #7f7f7f; }
.paralSlideSection .slideBox{ width: 100%; position: relative; display: flex; justify-content: center; align-items: center; margin-top: 15px; }
.paralSlideSection .slideBox .pnBtnWrap{ display: flex; align-items: center; justify-content: space-between; height: 100%; width: calc(1200px + 122px); position: absolute; }
.paralSlideSection .slideBox .pnBtnWrap .pnBtn{ position: relative; z-index: 2; background: transparent; border: none; }
.paralSlideSection .slideBox .slideWrap{ z-index: 2;  width: 100vw; max-width: 1200px; position: relative; }
.paralSlideSection .slideBox .item .imgBox{ overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; height: 50vw; max-height: 490px; border-radius: 10px; background-color: #d9d9d9;  }
.paralSlideSection .slideBox .item .imgBox .realImg{ transition: transform .8s; width: 100%; height: 100%; position: absolute; background-size: cover; background-repeat: no-repeat; background-position: center; }
.paralSlideSection .slideBox .swiper-slide-active .item .imgBox{ position: relative; z-index: 1; box-shadow: 12px 13px 17px 0px rgba(0, 0, 0, 0.27); }
.paralSlideSection .slideBox .item:hover .imgBox .realImg{ transform: scale(1.1); }
.paralSlideSection .slideBox .item .slideTitle{ align-items: flex-end; display: flex; justify-content: space-between; gap: 10px; }
.paralSlideSection .slideBox .item .slideTitle .title{ margin-top: 25px; font-size: 22px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;  }
.paralSlideSection .slideBox .item .slideTitle .count{ flex-shrink: 0; }
.paralSlideSection .slideBox .item .slideTitle .gray{ color: #7f7f7f; }
.paralSlideSection .bar{ margin-top: 50px; height: 6px; background-color: #222; }

@media screen and (max-width: 1350px) { 
    .paralSlideSection .inner{ width: 80vw; }
    .paralSlideSection .slideBox{ margin-top: 1vw; }
    .paralSlideSection .slideBox .slideWrap{ width:80vw;  }
    .paralSlideSection .slideBox .pnBtnWrap{ width: calc(100% - 60px); }
    .paralSlideSection .slideBox{ width: auto; }

}
@media screen and (max-width: 1250px) { 
    .paralSlideSection .titleBox .title{ font-size: 40px; }
    .paralSlideSection .titleBox .moreBtn{ font-size: 16px; }
    .paralSlideSection .slideBox{ margin-top: 4vw; }
    .paralSlideSection .slideBox .item .slideTitle .count{ font-size: 14px; }
}
@media screen and (max-width: 900px) { 
    .paralSlideSection .inner{ width: 100%; } 
    .paralSlideSection .titleBox .title{ font-size: 25px; }
    .paralSlideSection .slideBox{ width: auto; }
    .paralSlideSection .slideBox .pnBtnWrap{ display: none; }
    .paralSlideSection .slideBox .item .imgBox{ height: 53vw; max-height: unset; }
    .paralSlideSection .slideBox .item .slideTitle .title{ margin-top: 10px; font-size: 18px;}
    .paralSlideSection .slideBox .item .slideTitle .count{ font-size: 13px; }

    .paralSlideSection .hiddenWrap{ min-width: 150px; min-height: 150px; }
    .paralSlideSection .slideBox{ margin-top: 40px; }
}
@media screen and (max-width: 650px) { 
    .paralSlideSection .titleBox .title{ font-size: 32px; }
    .paralSlideSection .titleBox .moreBtn{ font-size: 13px; }
    .paralSlideSection .slideBox .item .imgBox{ height: 70vw; max-height: 539px; }
    .paralSlideSection .slideBox .item .slideTitle .title{ font-size: 4vw; }
    .paralSlideSection .slideBox .item .slideTitle .count{ display: none; }
}

/* howRedBricksSection */
.howRedBricksSection{ position: relative; overflow:hidden; padding: 100px 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.howRedBricksSection .textList{ position: absolute; display: flex; flex-direction: column; gap: 20vh; }
.howRedBricksSection .textBox{ gap: 4vw; display: flex; align-items: center; justify-content: center; font-weight: 700; background-color: #7f7f7f; color: #fff; font-size: 10vw; white-space: nowrap; padding: 0 5vw; border-radius: 20vw; }
.howRedBricksSection .textBox.redBg{ background-color: #CF3140;  }
.howRedBricksSection .textBox.mintBg{ background-color: #5CC2CE; }
.howRedBricksSection .textBox .circle{ border-radius: 50%; width: 2vw; height: 2vw; background-color: #fff; }

@media screen and (max-width: 650px) { 
    .howRedBricksSection{ padding: 0; min-height: 90vh; }
    .howRedBricksSection .textList { gap: 10vw; }
    .howRedBricksSection .textBox{ font-size: 7vw; padding: 7vw 5vw; }
}

/* .logoSlideSec */
.sub .logoSlideSec{ background: #fff; }
.logoSlideSec{ text-align: center; background-color: #FAFAFA; overflow: hidden; position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.logoSlideSec .logoWrap{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-around ; background-color: rgba(0, 0, 0, 0.4); }
.logoSlideSec .logoWrap .logo{ width: 200px; }
.logoSlideSec .contentWrap{ padding: 400px 0; position: relative; z-index: 2; }
.logoSlideSec .title1{ font-size: 32px; font-weight: 700; line-height: 1.5em; color: #fff; }
.logoSlideSec .btnWrap{ max-width: 549px; display: flex; align-items: center; gap: 24px; margin: 24px auto;  justify-content: center; }
.logoSlideSec .btnWrap > li{ width: calc(100% / 2); }
.logoSlideSec .btnWrap .item{ display: block; text-align: center; background-color: #5CC2CE; border-radius: 4px; width: 100%; padding: 16px 0; font-weight: 500; color: #fff; }
.logoSlideSec .btnWrap .item.redBg{ background-color: #CF2E41; }


@media screen and (max-width: 1250px) { 
    .logoSlideSec .logoWrap .logo{ width: 15vw; }
    /* .logoSlideSec .logoWrap .logoList:nth-child(5){ display: none; } */
    .logoSlideSec .title1{ font-size: 28px; }
    .logoSlideSec .btnWrap{ gap: 14px; }
}
@media screen and (max-width: 950px) { 
    /* .logoSlideSec .logoWrap .logoList:nth-child(4){ display: none; } */
    .logoSlideSec .title1{ font-size: 24px; }
    .logoSlideSec .btnWrap{ gap: 10px; }
    .logoSlideSec { min-height: unset; }
    .logoSlideSec .contentWrap { padding: 23vw 0; }
}
@media screen and (max-width: 650px) { 
    .logoSlideSec{ min-height: unset; }
    .logoSlideSec .logoWrap .logo{ width: 15vw; }
    /* .logoSlideSec .logoWrap .logoList:nth-child(3){ display: none; } */
    .logoSlideSec .title1{ font-size: 5vw; }
    .logoSlideSec .btnWrap .item{ font-size: 14px; padding: 10px; }
}

/* .main .quadrangleSection */
.main .quadrangleSection{ word-break: keep-all; overflow: hidden; position: relative; min-height: 100vh; padding: 0 0 120px 0; display: flex; align-items: center; justify-content: center; }
.main .quadrangleSection .inner{ position: relative; }
.main .quadrangleSection .inner::before{ content:''; display: block; width: 100%; height: 100%; background-color: #F7F7F7; position: absolute; left: calc(-100% - 10px); top: 0; border-radius: 10px; }
.main .quadrangleSection .inner::after{ content:''; display: block; width: 100%; height: 100%; background-color: #F7F7F7; position: absolute; right: calc(-100% - 10px); top: 0; border-radius: 10px; }
.main .quadrangleSection .halfBox{ display: flex; gap: 10px; }
.main .quadrangleSection .box{ display: flex; flex-direction: column; }
.main .quadrangleSection .imgItem{ display: flex; align-items: center; justify-content: center; position: relative; border-radius: 10px; overflow: hidden; width: 580px; height: 500px; pointer-events: none; }
.main .quadrangleSection .imgItem .background{ margin-left: -20%; width: 120%; transition: transform 1s; }
.main .quadrangleSection .imgItem:hover .background{ transform: scale(1.1); }
.main .quadrangleSection .imgItem .contentBox{ 
    z-index: 1; position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 25px; 
    color: #fff; display: flex; justify-content: space-between;
}
.main .quadrangleSection .imgItem .contentBox .t1{ font-size: 22px; font-weight: 500; }
.main .quadrangleSection .imgItem .contentBox .viewMore{ font-size: 14px; opacity: 0; }
.main .quadrangleSection .imgItem:hover .contentBox .viewMore{ opacity: 1;} 
.main .quadrangleSection .viewMore{ display: flex; align-items: center; gap: 5px; font-weight: 300; }
.main .quadrangleSection .itemList{ flex-grow: 1; display: flex; flex-wrap: wrap;  width: calc(100% + 10px); margin-left: -5px; margin-top: -5px; }
.main .quadrangleSection .itemList > li{ width: calc(100% / 2); padding: 5px 5px; }
.main .quadrangleSection .itemList .item{ display: flex; flex-direction: column; transition: background .5s; padding: 30px 10px 30px 30px; border-radius: 10px; background-color: #EBEBEB; height: 100%; }
.main .quadrangleSection .itemList .item:hover{ background-color: #CD354E; }
.main .quadrangleSection .itemList .item .title{ font-size: 22px;  }
.main .quadrangleSection .itemList .item:hover{  color: #fff; }
.main .quadrangleSection .itemList .item .content{ line-height: 1.5em; flex-grow: 1; margin-top: 5px; font-size: 14px; }
.main .quadrangleSection .itemList .item .viewMore{ margin-bottom: 15%; color: #fff; display: flex; align-items: center; gap: 5px; font-size: 14px; opacity: 0; transition: opacity .5s; }
.main .quadrangleSection .itemList .item:hover .viewMore{ opacity: 1; }
.main .quadrangleSection .blackBtn{ transition: background .5s; margin-top: 5px; display: block; border-radius: 10px; text-align: center; border-radius: 20px; padding: 30px 20px; font-size: 22px; font-weight: 700; color: #fff; background-color: #222; }
.main .quadrangleSection .blackBtn:hover{ background-color: #CD354E; }

@media screen and (max-width: 1250px) { 
    .main .quadrangleSection .imgItem{ width: 50vw; height: 55vw; }
    .main .quadrangleSection .imgItem .background{ width: 130%; }
    .main .quadrangleSection .imgItem .contentBox .t1{ font-size: 18px; }
    .main .quadrangleSection .itemList .item{ padding: 20px; }
    .main .quadrangleSection .itemList .item .title{ font-size: 18px; }
    .main .quadrangleSection .blackBtn{ padding: 20px 10px; }
    .main .quadrangleSection .itemList .item .content{ word-break: keep-all; }
    .main .quadrangleSection .itemList .item .content br{ display: none; }
    .main .quadrangleSection .blackBtn{ font-size: 18px; }
}
@media screen and (max-width: 950px) { 
    .main .quadrangleSection .halfBox{ flex-direction: column; }
    .main .quadrangleSection .imgItem .contentBox .viewMore{ opacity: 1; position: absolute; right: 20px; bottom: 20px; }
    .main .quadrangleSection .imgItem .contentBox .viewMore .txt{ display: none; }
    .main .quadrangleSection .imgItem .background{ width: 120%; }
    .main .quadrangleSection .imgItem{ width: 100%; height: 59vw; }
    .main .quadrangleSection .itemList .item .viewMore{ margin-bottom: 0; opacity: 1; color: #222; }
    .main .quadrangleSection .itemList .item:hover .viewMore{ color: #fff; }
}
@media screen and (max-width: 650px) { 
    .main .quadrangleSection .itemList > li{ width: 100%; }
    .main .quadrangleSection .itemList .item{ position: relative; }
    .main .quadrangleSection .itemList .item .viewMore{ position: absolute; right: 20px; top: 20px; } 
    .main .quadrangleSection .itemList .item .viewMore .txt{ display: none; }
}



/* .main .positiveSection */
.main .positiveSection{ overflow: hidden; color: #fff; position: relative; min-height: 100vh; padding: 100px 0; display: flex; align-items: center; justify-content: center; }
.main .positiveSection .blackBg{ opacity: 0; transition: opacity .5s; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4); }
.main .positiveSection.on .blackBg{ opacity: 1; }
.main .positiveSection .bgDiv{ opacity: 0; transition: opacity .5s, trannsform .5s; transform: scale(1.2); position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-image: url('../img/main/positiveSection/background.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center; }
.main .positiveSection.on .bgDiv{ opacity: 1; transform: scale(1); }
.main .positiveSection .inner{ position: relative; z-index: 1; }
.main .positiveSection .contentWrap{ display: flex; flex-direction: column; align-items: flex-start; position: relative; }
.main .positiveSection .titleWrap{ transition: letter-spacing 1s; letter-spacing: -.2em;  position: relative; width: 1000px; max-width: 100%; font-size: 80px; font-weight: 800; }
.main .positiveSection.on .titleWrap{ letter-spacing: -0.04em;  }
.main .positiveSection .titleWrap span{ transition: right 1s , opacity 2s; opacity: 0; }
.main .positiveSection .titleWrap span.front{ padding-left: 4%; }
.main .positiveSection .titleWrap span.red{ position: relative; }
.main .positiveSection .titleWrap span.red b{ position: absolute; }

.main .positiveSection .titleWrap span.front.front_m{ padding-left: 6%; }
.main .positiveSection .titleWrap span.front.rfront{ padding-left: 9%; }
.main .positiveSection.on .titleWrap span{ opacity: 1; }
.main .positiveSection .titleWrap .mint{ z-index: 1; opacity: 1; color: #5CC2CE; position: absolute; opacity: 1; right: 40px; }
.main .positiveSection .titleWrap .mint2{ right: 70px; }
.main .positiveSection .titleWrap .red{ z-index: 1; opacity: 1;  position: absolute; color: #CD354E; opacity: 1; right: 0; }

.main .positiveSection.on .titleWrap .mint.mint1{ right: 96%; }
.main .positiveSection.on .titleWrap .mint.mint2{ right: 96%; }

.main .positiveSection .titleWrap .red.red1{ right: -64%; }
.main .positiveSection .titleWrap .red.red2{ right: -68%; }

.main .positiveSection.on .titleWrap .red.red1{ right: 0; }
.main .positiveSection.on .titleWrap .red.red2{ right: -35px; }

.main .positiveSection .content{ opacity: 0; transition: transform .5s, opacity .5s; transition-delay: 1s; transform: translateY(20px); margin-top: 20px; line-height: 2em; margin-bottom: 12px; }
.main .positiveSection.on .content{ opacity: 1; transform: translateY(0); }
.main .positiveSection .moreBtn{ opacity: 0; transition: transform .5s, opacity .5s; transition-delay: 1.2s; transform: translateY(20px); }
.main .positiveSection.on .moreBtn{ opacity: 1; transform: translateY(0); }

@media screen and (max-width: 1250px) { 
    .main .positiveSection .titleWrap .mint{ right: 25%; }
}
@media screen and (max-width: 1050px) { 
    .main .positiveSection .titleWrap span.front.front_m{ padding-left: 54px; }
    .main .positiveSection .titleWrap span.front.rfront{ padding-left: 82px; }
    /* .main .positiveSection.on .titleWrap .red.red1 { right: unset; } */
    
}
@media screen and (max-width: 800px) {
    .main .positiveSection .titleWrap { font-size: 72px; }
}
@media screen and (max-width: 750px) { 
    .main .positiveSection .titleWrap{ font-size: 6vw; }
    .main .positiveSection .titleWrap span.front.rfront{ padding-left: 6.5vw; }
    .main .positiveSection .titleWrap span.front.front_m{ padding-left: 4.3vw; }
    .main .positiveSection.on .titleWrap .red.red2 { right: -3%; }
}
@media screen and (max-width: 650px) { 
    /* .main .positiveSection .titleWrap{ font-size: 10vw; width: 78vw; }
    .main .positiveSection .titleWrap span.front{ padding-left: 10vw; }
    .main .positiveSection .titleWrap span.front_m{ padding-left: 5vw; }

    .main .positiveSection .titleWrap .mint{ right: 48%; }
    .main .positiveSection .titleWrap .red{ right: 35%; } */

    /* .main .positiveSection.on .titleWrap .red.red1{ right: 45%; } */
    /* .main .positiveSection.on .titleWrap .red.red2{ right: 57%; }  */
    /* .main .positiveSection.on .titleWrap .mint.mint1{ right: 88%; } 
    .main .positiveSection.on .titleWrap .mint.mint2{ right: 88%; } */
}


/* .sec_top */
.sec_top{ padding-top: 65px; }
@media screen and (max-width: 650px) { 
    .sec_top{ padding-top: 55.92px; }
}

.sub{ overflow: hidden; }


/* .sub .scrollTextSec */
.sub .scrollTextSec{ position: relative; overflow: hidden; flex-direction: column; min-height: calc(100vh - 65px); display: flex; align-items: center; justify-content: flex-end; }
.sub .scrollTextSec .textBox{ font-size: 3.5vw; font-weight: 700; border-bottom: 1px solid #E4E4E4; }
.sub .scrollTextSec .textBox .textList{ display: flex; }
.sub .scrollTextSec .textBox .textList > li{ white-space: nowrap;  }
.sub .scrollTextSec .textBox.redColor{ color: #CD354E; }
.sub .scrollTextSec .textBox.grayColor{ color: #E4E4E4; }
.sub .scrollTextSec .textBox.mintColor{ color: #5CC2CE; }

@media screen and (max-width: 950px) { 
    .sub .scrollTextSec .textBox{ font-size: 10vw; }
}
@media screen and (max-width: 650px) { 
    .sub .scrollTextSec .textBox{ font-size: 15vw; }
}


.sub .subTitle{ word-break: keep-all; font-size: 52px; line-height: 1.5em; font-weight: 800; text-align: center; }
.sub .subContent{ word-break: keep-all; margin-top: 35px; line-height: 1.5em; font-size: 24px; font-weight: 500; text-align: center; }
.sub .subContent2 { text-align: left; }

@media screen and (max-width: 950px) { 
    .sub .subTitle{ font-size: 40px; }
    .sub .subContent{ font-size: 18px; }
}
@media screen and (max-width: 650px) { 
    .sub .subTitle{ font-size: 30px; }
    .sub .subContent{ font-size: 16px; }
}
@media screen and (max-width: 400px) { 
    .sub .subTitle{ font-size: 8vw; }
    .sub .subContent{ font-size: 4vw; }
}

/* .sub .contentTitleSec */
.sub .contentTitleSec{ padding: 200px 0; position: relative; }

/* .sub .contentTitleSec */
.sub01_1 .circleSec { position: relative; }
.sub01_1 .circleSec .halfBox:nth-child(1){ position: relative; opacity: 1; visibility: visible; }
.sub01_1 .circleSec .halfBox{ position: absolute; left: 0; top: 0; width: 100%; display: flex; opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s; }
.sub01_1 .circleSec .halfBox.on{ opacity: 1; visibility: visible; }
.sub01_1 .circleSec .halfBox .imgBox{ text-align: right; color: #fff; padding: 30px; display: flex; align-items: flex-end; height: calc(100vh); width: 50%; background-size: cover; background-repeat: no-repeat; background-position: center; }
.sub01_1 .circleSec .halfBox .imgBox .contentDiv{ display: flex; align-items: flex-end; justify-content: flex-end; flex-direction: column; width: 100%; font-size: 26px; line-height: 1.5em; }
.sub01_1 .circleSec .halfBox .imgBox .contentDiv .bar{ width: 80px; height: 4px; background-color: #fff; margin-bottom: 28px; }
.sub01_1 .circleSec .halfBox .contentBox{ background-color: #fff; padding: 40px; padding-left: 80px; display: flex; align-items: center; gap: 74px; }
.sub01_1 .circleSec .halfBox .contentBox .circleBox .icon{ height: calc(90vh - 100px); }
.sub01_1 .circleSec .halfBox .contentBox .itemBox{ height:100%; display: flex; flex-direction: column; justify-content: center; gap: 2vw; }  
.sub01_1 .circleSec .halfBox .contentBox .item{ font-size: 20px; width: 280px; text-align: center; padding: 15px 10px; border-radius: 100px; border: 1px solid #222; }
.sub01_1 .circleSec .halfBox .contentBox .item.red{ color: #CD354E; border-color: #CD354E; border-width: 1px; }
.sub01_1 .circleSec .halfBox .contentBox .item + .item{ margin-top: 10px; }
.sub01_1 .circleSec .halfBox .contentBox .circleBox .icon.mo{ display: none; }

@media screen and (max-width: 1250px) { 
    .sub01_1 .circleSec .halfBox .contentBox{ padding: 40px; padding-right: 4vw; gap: 4vw; }
    .sub01_1 .circleSec .halfBox .imgBox .contentDiv{ font-size: 18px; }
    .sub01_1 .circleSec .halfBox .contentBox .item{ font-size: 16px; }
    .sub01_1 .circleSec .halfBox .contentBox .item{ padding: 10px; width: 17vw; }
    .sub01_1 .circleSec .halfBox .contentBox .circleBox .icon{ max-width: 17vw;} 
    .sub01_1 .circleSec .halfBox .contentBox .itemBox{ height: 46vw; gap: 5.5vw; }
    
}
@media screen and (max-width: 950px) { 
    .sub01_1 .circleSec .halfBox{ flex-direction: column; }
    .sub01_1 .circleSec .halfBox .imgBox{ width: 100%; } 
    .sub01_1 .circleSec .halfBox .imgBox .contentDiv .bar{ width: 30px; height: 2px; }
    .sub01_1 .circleSec .halfBox .imgBox .contentDiv{ font-size: 16px; }
    .sub01_1 .circleSec .halfBox .contentBox .circleBox{ }
    .sub01_1 .circleSec .halfBox .contentBox { justify-content: center; }
    .sub01_1 .circleSec .halfBox .contentBox { gap: 50px; }
    .sub01_1 .circleSec .halfBox .contentBox .circleBox .icon{ max-width: unset; width: 100%; height: ; }
    .sub01_1 .circleSec .halfBox .contentBox .itemBox{ gap: 68px; height: auto; width: ; }
    .sub01_1 .circleSec .halfBox .contentBox .item{ font-size: 14px; width: 60%; padding: 10px 20px; }
    .sub01_1 .circleSec .halfBox .contentBox .item + .item{ margin-top: 10px; }
    .sub01_1 .circleSec .halfBox:nth-child(4) .imgBox .contentDiv .bar { display: none; }
    .sub01_1 .circleSec .halfBox .contentBox .item{ color: #CD354E; border-color: #CD354E; width: 100%; }
    .sub01_1 .circleSec .halfBox .contentBox .circleBox .icon.mo{ display: block; }
    .sub01_1 .circleSec .halfBox .contentBox .circleBox .icon.pc{ display: none; }
}
@media screen and (max-width: 650px) { 
    .sub .contentTitleSec{ padding: 100px 0; }
    .sub01_1 .circleSec .halfBox .imgBox .contentDiv .red_b_icon { width: 200px; }
}
@media screen and (max-width: 500px) { 
    .sub01_1 .circleSec .halfBox .contentBox .itemBox {  }
    .sub01_1 .circleSec .halfBox .contentBox { gap: 5vw; }
    .sub01_1 .circleSec .halfBox .imgBox .contentDiv .red_b_icon { width: 42vw; } 
    .sub01_1 .circleSec .halfBox .contentBox .circleBox .icon { width: 90%; }
}
@media screen and (max-width: 450px) { 
    .sub01_1 .circleSec .halfBox .contentBox .itemBox{ gap: 14vw; }
    .sub01_1 .circleSec .halfBox .contentBox .item{ font-size: 3vw; padding: 3vw; }
}





/* .sub01_1 .backgroundSec */

.sub01_1 .backgroundSec{ margin-top: 128px; height: 20vw; background-size: cover; background-repeat: no-repeat; background-position: center; }

@media screen and (max-width: 650px) { 
    .sub01_1 .backgroundSec{ height: 54vw; }
}

/* .sub01_1 .historySec */
.sub01_1 .historySec{ padding: 100px 0; }
.sub01_1 .historySec .year_list{ margin-top: 26px; }
.sub01_1 .historySec .year_list > li + li{ margin-top: 100px; }
.sub01_1 .historySec .year_list .item{ transition: color .5s; color: #e5e5e5; display: flex;  }
.sub01_1 .historySec .year_list .on .item{ color: #222; }
.sub01_1 .historySec .year_list .item .main_title2{ width: 400px; flex-shrink: 0; }
.sub01_1 .historySec .year_list .item .content{ word-break: keep-all; transition: color .5s; font-size: 18px; position: relative; padding-left: 40px; flex-grow: 1; line-height: 1.5em; }
.sub01_1 .historySec .year_list .item .content::before{ content:''; display: block; width: 24px; height: 24px; background-color: #e5e5e5; border-radius: 50%; position: absolute; left: 0; top: 2px; }
.sub01_1 .historySec .year_list .on .item .content::before{ transition: background .5s;  background-color: #CD354E; }

@media screen and (max-width: 1250px) { 
    .sub01_1 .historySec .year_list .item .main_title2{ width: 300px; }
    .sub01_1 .historySec .year_list .item .content{ font-size: 16px; padding-left: 30px; }
    .sub01_1 .historySec .year_list .item .content::before{ width: 15px; height: 15px; }
}
@media screen and (max-width: 950px) { 
    .sub01_1 .historySec .year_list .item .main_title2{ width: 200px; }
}
@media screen and (max-width: 650px) { 
    .sub01_1 .historySec .year_list > li + li{ margin-top: 40px; }
    .sub01_1 .historySec .year_list .item .main_title2{ width: 80px; }
    .sub01_1 .historySec .year_list .item .content{ font-size: 14px; margin-top: 10px; padding-left: 23px; }
}


/* .sub .topBannerSec */
.sub .topBannerSec{ overflow: hidden; position: relative; height: 440px; display: flex; align-items: center; justify-content: center; background-image: url('../img/sub/topBannerSec/background.jpg'); background-size: cover; background-repeat: no-repeat; }
.sub .topBannerSec .inner{ position: relative; }
.sub .topBannerSec .circle{ position: absolute; }
.sub .topBannerSec .circle2{ right: 0; top: 0; }
.sub .topBannerSec .circle1{ left: 0; top: calc(100% - 100px); }
.sub .topBannerSec .title{ text-align: center; color: #fff; font-size: 72px; font-weight: 700; }

@media screen and (max-width: 1250px) { 
    .sub .topBannerSec{ height: 300px; }
    .sub .topBannerSec .inner{ position: static; }
    .sub .topBannerSec .circle1{ width: 20vw; top: unset; bottom: 0; }
    .sub .topBannerSec .circle2{ width: 30vw; }
    .sub .topBannerSec .title{ font-size: 8vw; }
}
@media screen and (max-width: 950px) { 
    .sub .topBannerSec .title{ font-size: 50px; }
}
@media screen and (max-width: 650px) { 
    .sub .topBannerSec{ height: 100vw; }
    .sub .topBannerSec .circle1{ width: 50vw; left: -10vw; bottom: -10vw; }
    .sub .topBannerSec .circle2{ width: 60vw; right: -5vw; }
    .sub .topBannerSec .title{ font-size: 11vw; }
}

/* .sub01_2 .applySec */

.sub01_2{ overflow: hidden; }
.sub01_2 .applySec{ padding: 80px 0; }
.sub01_2 .applySec .titleBox{ padding-bottom: 8px; border-bottom: 4px solid #222; display: flex; align-items: center; gap: 10px; }
.sub01_2 .applySec .titleBox .icon{ width: 22px; flex-shrink: 0; }
.sub01_2 .applySec .titleBox .title{ font-size: 26px; font-weight: 700; }
.sub01_2 .applySec .formList{ margin-top: 30px; }
.sub01_2 .applySec .ipt{ border-width: 2px; border-radius: 4px; }
.sub01_2 .applySec .agreeCheckDiv label .textBox{ align-items: center; }
.sub01_2 .applySec .agreeCheckDiv label input[type="checkbox"]:checked + .textBox::before{ background-image: url('../img/sub/sub01_2/check_icon.svg'); background-size: 100%; border: 2px solid #CF2E41; }
.sub01_2 .applySec .submitBtn{ font-size: 18px; display: block; border: none; margin: 0 auto; margin-top: 30px; width: 100%; max-width: 586px; padding: 16px 10px; border-radius: 4px; background-color: #CF2E41; color: #fff; }

@media screen and (max-width: 1250px) { 
    .sub01_2 .applySec .titleBox{ gap: 5px; border-bottom: 2px solid #222; }
    .sub01_2 .applySec .titleBox .icon{ width: 15px; }
    .sub01_2 .applySec .titleBox .title{ font-size: 20px; }
}
@media screen and (max-width: 650px) { 
    .sub01_2 .applySec .submitBtn{ font-size: 16px; }  
}

.sub01_2 .halfSec{ word-break: keep-all; padding: 80px 0; border-top: 1px solid #E4E4E4; }
.sub01_2 .halfSec .halfBox{ display: flex; width: calc(100% + 80px); margin-left: -40px; }
.sub01_2 .halfSec .halfBox .box{ width: calc(100% / 2); padding: 0 40px; }
.sub01_2 .halfSec .halfBox .box:nth-child(1){ width: 40%; border-right: 1px solid #D9D9D9; }
.sub01_2 .halfSec .halfBox .box:nth-child(2){ width: 60%; padding-bottom: 40px; }
.sub01_2 .halfSec .halfBox .title{ line-height: 1.5em; font-size: 24px; font-weight: 700; }
.sub01_2 .halfSec .halfBox .company_list{ flex-wrap: wrap; justify-content: space-between; gap: 15px; display: flex; margin-top: 22px; font-size: 18px; }
.sub01_2 .halfSec .halfBox .company_list > li{ display: flex; gap: 5px; }
.sub01_2 .halfSec .halfBox .company_list .gray{ color: #7f7f7f; }

.sub01_2 .halfSec .mapArti{ margin-top: 20px; height: 420px; }
.sub01_2 .halfSec .mapArti .inner{ height: 100%; }

@media screen and (max-width: 1250px) { 
    .sub01_2 .halfSec .halfBox .title{ font-size: 20px; }
    .sub01_2 .halfSec .halfBox .company_list{ font-size: 16px; } 
    .sub01_2 .halfSec .halfBox .company_list > li{ width: 100%; }
}
@media screen and (max-width: 950px) { 
    .sub01_2 .halfSec .halfBox{ flex-direction: column; gap: 30px; }
    .sub01_2 .halfSec .halfBox .box:nth-child(1){ width: 100%; border-right: none; }
    .sub01_2 .halfSec .halfBox .box:nth-child(2){ width: 100%; padding-bottom: 20px; }
}

/* .sub .subBannerSec */
.sub .subBannerSec{ background-size: cover; text-align: center; color: #fff; position: relative; overflow: hidden; min-height: 100vh; padding: 100px 0; display: flex; align-items: center; justify-content: center; }
.sub .subBannerSec .inner{ position: relative; z-index: 2; }
.sub .subBannerSec .t1{ opacity: 0; font-size: 20px; animation: fadeIn2 linear .5s;  animation-fill-mode: forwards; }
.sub .subBannerSec .t2{ opacity: 0; animation: fadeIn linear .5s;  animation-fill-mode: forwards; animation-delay: .5s; margin: 49px 0; font-size: 80px; font-weight: 700; }
.sub .subBannerSec .content{ opacity: 0; animation: fadeIn linear .5s;  animation-fill-mode: forwards; animation-delay: 1s; line-height: 1.5em; font-size: 22px; }
.sub .subBannerSec .bar{ transition: width .5s; width: 100%; position: absolute; height: 50vh; background-color: rgba(0,0,0,0.4); }
.sub .subBannerSec .bar1{ left: 0; top: 0; animation: subBannerSec ease-in-out 1.4s; animation-fill-mode: forwards; animation-delay: 1.3s; }
.sub .subBannerSec .bar2{ right: 0; bottom: 0; animation: subBannerSec ease-in-out 1.4s; animation-fill-mode: forwards; animation-delay: 1.3s; }

@media screen and (max-width: 1250px) { 
    .sub .subBannerSec .t1{ font-size: 18px; }
    .sub .subBannerSec .t2{ font-size: 50px; }
    .sub .subBannerSec .content{ font-size: 20px; }
}
@media screen and (max-width: 650px) { 
    .sub .subBannerSec .t1{ font-size: 15px; }
    .sub .subBannerSec .t2{ font-size: 35px; }
    .sub .subBannerSec .content{ font-size: 16px; }
}
@media screen and (max-width: 400px) { 
    .sub .subBannerSec .t2{ font-size: 10vw; }
    .sub .subBannerSec .content{ font-size: 4vw; }
}

@keyframes subBannerSec {
    0%{ width: 100%; }
    100%{ width: 0; }
}
@keyframes fadeIn {
    0%{ opacity: 0; transform: translateY(80px); }
    100%{ opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn2 {
    0%{ opacity: 0; transform: translateY(80px); }
    100%{ opacity: .6; transform: translateY(0); }
}


/* .sub02 .halfImgBox */
.sub02 .halfImgBox{ min-height: 100vh; display: flex; overflow: hidden; }
.sub02 .halfImgBox .imgBox{ display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; width: 50%; }
.sub02 .halfImgBox .imgBox .imgBg{ position: absolute; width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-position: center; }
.sub02 .halfImgBox .circleWrap{ position: relative; overflow: hidden; margin: 60px; display: flex; align-items: center; justify-content: center; }
.sub02 .halfImgBox .circleWrap .content{ width: 550px; transition: opacity .5s; opacity: 0; max-width: 100%; background-color: #fff; position: absolute; }
.sub02 .halfImgBox .circleWrap .content1{ position: relative; opacity: 1; }
.sub02 .halfImgBox .circleWrap .content.on{ opacity: 1; }

@media screen and (max-width: 1250px) { 
    .sub02 .halfImgBox .circleWrap { flex-grow: 1; margin: 40px 4vw; } 
    .sub02 .halfImgBox .circleWrap .content{ width: 35vw; }
}
@media screen and (max-width: 950px) { 
    .sub02 .halfImgBox{ flex-direction: column;  }
    .sub02 .halfImgBox .imgBox{ height: 50vw; width: 100%; }
    .sub02 .halfImgBox .circleWrap { margin: 60px 4vw; }
    .sub02 .halfImgBox .circleWrap .content{ width: 90%; max-width: 600px; }
}
@media screen and (max-width: 650px) { 
    .sub02 .halfImgBox .imgBox{ height: 60vw; }
}

/* .sub02 .contentListSec */
.sub02 .contentListSec{ padding: 100px 0; position: relative; overflow: hidden; }
.sub02 .contentListSec .contents_list{ display: flex; flex-wrap: wrap; margin-top: 36px; width: calc(100% + 20px); margin-left: -10px; }
.sub02 .contentListSec .contents_list > li{ width: calc(100% / 2); padding: 10px; }
.sub02 .contentListSec .contents_list .imgBox{ overflow: hidden; position: relative; width: 100%; height: 360px; border-radius: 10px; }
.sub02 .contentListSec .contents_list .imgBox .imgBg{ transform: scale(1); transition: transform 1.5s; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-position: center;  }
.sub02 .contentListSec .contents_list > li:hover .imgBox .imgBg{ transform: scale(1.2); }
.sub02 .contentListSec .contents_list .title{ margin-top: 10px; font-size: 20px; font-weight: 600; }

@media screen and (max-width: 1250px) { 
    .sub02 .contentListSec .contents_list .imgBox{ height: 29vw; } 
    .sub02 .contentListSec .contents_list .title{ font-size: 18px; }
}
@media screen and (max-width: 950px) { 
}
@media screen and (max-width: 650px) { 
    .sub02 .contentListSec .contents_list{ margin-top: 20px; }
    .sub02 .contentListSec .contents_list > li{ width: calc(100% / 1); }
    .sub02 .contentListSec .contents_list .title{ font-size: 16px; }
    .sub02 .contentListSec .contents_list .imgBox{ border-radius: 1.5vw; height: 52vw; }
}

/* .sub02_4 .redBgSec */
.sub02_4 .redBgSec{ text-align: center; color: #fff; padding: 80px 0; background: linear-gradient(270deg, rgba(151, 33, 52, 0.00) 0%, #972134 106.3%), #CD354E; }
.sub02_4 .redBgSec h2{ line-height: 1.5em; font-size: 32px; font-weight: 700; }
.sub02_4 .redBgSec .content{ margin-top: 24px; line-height: 1.5em; font-size: 24px; }

@media screen and (max-width: 1250px) { 
    .sub02_4 .redBgSec h2{ font-size: 28px; }
    .sub02_4 .redBgSec .content{ font-size: 20px; }
}
@media screen and (max-width: 950px) { 
    .sub02_4 .redBgSec h2{ font-size: 24px; }
    .sub02_4 .redBgSec .content{ font-size: 18px; }
}
@media screen and (max-width: 650px) { 
    .sub02_4 .redBgSec h2{ font-size: 20px; }
    .sub02_4 .redBgSec .content{ font-size: 16px; }
}

/* .sub02_4 .solutionSec */
.sub02_4 .solutionSec{ padding: 120px 0; }
.sub02_4 .solutionSec .inner{ display: flex; justify-content: center; flex-direction: column; align-items: center; }
.sub02_4 .solutionSec .itemList{ max-width: ; margin-top: 20px; display: flex; flex-wrap: wrap; width: calc(100%);  justify-content: center;  }
.sub02_4 .solutionSec .itemList > li{ padding: 10px; width: calc(100% / 3); }
.sub02_4 .solutionSec .itemList .item{ display:flex; flex-direction: column; height: 100%; overflow: hidden; background-color: #fff; box-shadow: 3px 8px 7px 0px rgba(0, 0, 0, 0.15); border-radius: 10px; }
.sub02_4 .solutionSec .itemList .item.type2 .contentBox{ flex-grow: 1; display: flex; flex-direction: column; padding-bottom: 27px; }
.sub02_4 .solutionSec .itemList .item .imgBox{ height: 230px; background-size: cover; background-repeat: no-repeat; background-position: center; }
.sub02_4 .solutionSec .itemList .item .imgBox.type2{ background-size: 40%; background-color: #CF2E41; }
.sub02_4 .solutionSec .itemList .item .contentBox{ flex-grow: 1; text-align: center; padding: 50px 20px 80px 20px; }
.sub02_4 .solutionSec .itemList .item .contentBox .t1{ font-size: 24px; font-weight: 700; }
.sub02_4 .solutionSec .itemList .item .contentBox .bar{ width: 80px; height: 2px; background-color: #e4e4e4; margin: 20px auto 30px auto; }
.sub02_4 .solutionSec .itemList .item .contentBox .content{ flex-grow: 1; line-height: 1.8em;  }
.sub02_4 .solutionSec .itemList .item .moreViewBtn{ margin: 20px auto 0 auto; display: block; width: 100%; max-width: 260px; background-color: #CF2E41; padding: 16px 10px; color: #fff; text-align: center; }

@media screen and (max-width: 1250px) { 
    .sub.sub02_4 .subTitle{ font-size: 40px; }
    .sub02_4 .solutionSec .itemList > li{ width: calc(100% / 2); }
    .sub02_4 .solutionSec .itemList .item .contentBox{ padding: 4vw 5px 5vw 5px; }
    .sub02_4 .solutionSec .itemList .item .contentBox .t1{ font-size: 20px; }
    .sub02_4 .solutionSec .itemList .item .contentBox .content{ word-break: keep-all; }
    .sub02_4 .solutionSec .itemList .item .contentBox .content br{ display: none; }
}
@media screen and (max-width: 950px) { 
    .sub.sub02_4 .subTitle{ font-size: 30px; }
    .sub02_4 .solutionSec .itemList > li{ }
    .sub02_4 .solutionSec .itemList .item .contentBox{ padding: 4vw 10px; }
}
@media screen and (max-width: 650px) { 
    .sub02_4 .solutionSec .itemList .item .contentBox { padding: ; }
    .sub.sub02_4 .subTitle{ font-size: 6vw; }
    .sub02_4 .solutionSec .itemList > li { width: calc(100%/1); }
    .sub02_4 .solutionSec .itemList .item .imgBox{ height: 50vw; }
    .sub02_4 .solutionSec .itemList .item .contentBox .bar {  margin: 10px auto 20px auto;}
}

/* .sub02_4 .detailSec */
.sub02_4 .detailSec{ padding-bottom: 140px; }
.sub02_4 .detailSec .t1{ text-align: center; font-size: 32px; font-weight: 700; }
.sub02_4 .detailSec .t2{ margin-top: 10px; line-height: 1.5em; text-align: center; font-size: 24px; color: #7f7f7f;  }
.sub02_4 .detailSec .itemList{ text-align: center; line-height: 1.5em;  display: flex; flex-wrap: wrap; justify-content: center; margin-top: 40px; width: calc(100% + 20px); margin-left: -10px; }
.sub02_4 .detailSec .itemList > li{ width: calc(100% / 3); padding: 10px;  }
.sub02_4 .detailSec .itemList .item{ display: flex; flex-direction: column; height: 100%; border-radius: 10px; overflow: hidden; background-color: #fff; box-shadow: 4px 8px 10px 0px rgba(0, 0, 0, 0.25) }
.sub02_4 .detailSec .itemList .item .bar{ height: 20px; background-color: #CF2E41; }
.sub02_4 .detailSec .itemList .item .bar.mint{ background-color: #5CC2CE; }
.sub02_4 .detailSec .itemList .item .content{ font-size: 24px; line-height: 1.5em; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; word-break: keep-all; padding: 25px 10px; flex-grow: 1; }

@media screen and (max-width: 1250px) { 
    .sub02_4 .detailSec .t1{ font-size: 25px; }
    .sub02_4 .detailSec .t2{ font-size: 18px; }

    .sub02_4 .detailSec .itemList .item .content{ font-size: 18px; }
}
@media screen and (max-width: 950px) { 
    .sub02_4 .detailSec .itemList .item .content{ font-size: 16px; }
}
@media screen and (max-width: 650px) { 
    .sub02_4 .detailSec .t1{ font-size: 20px; }
    .sub02_4 .detailSec .t2{ font-size: 16px; }
    .sub02_4 .detailSec .itemList > li{ width: 100%; }
}


/* .sub02_4 .allinoneSec */
.sub02_4 .allinoneSec{ padding: 75px 0; background: linear-gradient(270deg, rgba(151, 33, 52, 0.00) 0%, #972134 106.3%), #CD354E; color: #fff; }
.sub02_4 .allinoneSec .t1{ text-align: center; font-size: 52px; font-weight: 700; }
.sub02_4 .allinoneSec .t2{ margin-top: 10px; text-align: center; font-size: 24px; }
.sub02_4 .allinoneSec .t2 .bg{ background-color: #fff; color: #CF2E41; display: inline-block; padding: 0 11px; border-radius: 10px; line-height: 1.5em; }
.sub02_4 .allinoneSec .itemWrap{ position: relative; margin-top: 37px; display: flex; align-items: center; justify-content: center; }
.sub02_4 .allinoneSec .itemWrap .itemList{ text-align: center; width: 100%; display: flex; flex-wrap: wrap; }
.sub02_4 .allinoneSec .itemWrap .itemList > li{ width: calc(100% / 4); padding: 10px; }
.sub02_4 .allinoneSec .itemWrap .itemList .circle{ padding-bottom: 50px; border-radius: 50%; height: 280px; border: 1px solid #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.sub02_4 .allinoneSec .itemWrap .itemList .circle .icon{ width: 65px; height: 65px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.sub02_4 .allinoneSec .itemWrap .itemList .circle .title{ font-size: 32px; font-weight: 700; } 
.sub02_4 .allinoneSec .itemWrap .barWrap{ margin-top: 100px; display: flex; align-items: center; justify-content: space-between; position: absolute; width: calc(100% - 280px); height: 1px; background-color: #fff; }
.sub02_4 .allinoneSec .itemWrap .barWrap .circle{ border-radius: 50%; width: 13px; height: 13px; background-color: #fff; }
.sub02_4 .allinoneSec .contentList{ margin-top: 36px; }
.sub02_4 .allinoneSec .contentList > li{ padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.sub02_4 .allinoneSec .contentList .title{ font-size: 32px; font-weight: 700; line-height: 1.5em; }
.sub02_4 .allinoneSec .contentList .content{ word-break: keep-all; font-size: 24px; line-height: 1.5em; }


@media screen and (max-width: 1250px) {
    .sub02_4 .allinoneSec .t1{ font-size: 40px; }
    .sub02_4 .allinoneSec .t2{ font-size: 20px; }

    .sub02_4 .allinoneSec .itemWrap .itemList .circle{ height: 22vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle .icon{ width: 5vw; height: 5vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle .title{ font-size: 2vw; }
    .sub02_4 .allinoneSec .itemWrap .barWrap .circle{ width: 1vw; height: 1vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle{ padding-bottom: 2vw; }
    .sub02_4 .allinoneSec .itemWrap .barWrap{ width: calc(100% - 22vw); margin-top: 11vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList > li{ padding: 1vw; }

    .sub02_4 .allinoneSec .contentList .title{ font-size: 26px; }
    .sub02_4 .allinoneSec .contentList .content{ font-size: 18px; }
}
@media screen and (max-width: 950px) {
    .sub02_4 .allinoneSec .t1{ font-size: 30px; }
    .sub02_4 .allinoneSec .t2{ font-size: 18px; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle{ height: 21vw; }

    .sub02_4 .allinoneSec .contentList .title{ font-size: 20px; }
    .sub02_4 .allinoneSec .contentList .content{ font-size: 16px; }
}
@media screen and (max-width: 650px) {
    .sub02_4 .allinoneSec .t1{ font-size: 30px; }
    .sub02_4 .allinoneSec .t2{ font-size: 16px; }

    .sub02_4 .allinoneSec .contentList .title{ font-size: 18px; }

    .sub02_4 .allinoneSec .itemWrap .itemList > li{ width: calc(100% / 2); }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle{ height: 43vw; gap: 2vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle .icon{ width: 12vw; height: 12vw; }
    .sub02_4 .allinoneSec .itemWrap .itemList .circle .title{ font-size: 4vw; }


    .sub02_4 .allinoneSec .itemWrap .barWrap{ display: none; }
}

/* .sub02_4 .qnaSec */
.sub02_4 .qnaSec{ padding-bottom: 90px; display: flex; align-items: center; justify-content: center; }
.sub02_4 .qnaSec .title{ text-align: center; font-size: 32px; font-weight: 700; }
.sub02_4 .qnaSec .halfBox{ margin-top: 20px; display: flex; gap: 44px; }
.sub02_4 .qnaSec .halfBox .qnaList{ width: 50%; }
.sub02_4 .qnaSec .halfBox .qnaList > li{ background-color: #fff; border-radius: 20px; box-shadow: 5px 8px 18px 0px rgba(0, 0, 0, 0.15); }
.sub02_4 .qnaSec .halfBox .qnaList > li + li{ margin-top: 26px; }
.sub02_4 .qnaSec .halfBox .qnaList .qnaBox{ position: relative; padding: 20px; }
.sub02_4 .qnaSec .halfBox .qnaList .qBox{ gap: 5px; cursor: pointer; display: flex; padding-left: 65px; }
.sub02_4 .qnaSec .halfBox .qnaList .qBox .icon{ display:block; transform: rotate(0); transition: transform .5s; }
.sub02_4 .qnaSec .halfBox .qnaList .on .qBox .icon{ transform: rotate(180deg); }
.sub02_4 .qnaSec .halfBox .qnaList .qBox::before{ content: 'Q'; color: #5CC2CE; font-weight: 700; font-size: 32px; position: absolute; left: 30px; top: 10px; }
.sub02_4 .qnaSec .halfBox .qnaList .qBox .text{ font-size: 20px; font-weight: 500; flex-grow: 1; }
.sub02_4 .qnaSec .halfBox .qnaList .qBox .iconBox{ flex-shrink: 0; background: transparent; border: none; }
.sub02_4 .qnaSec .halfBox .qnaList .aBox{ display: none; position: relative; word-break: keep-all; color: #7f7f7f; line-height: 2em; padding-left: 65px; }
.sub02_4 .qnaSec .halfBox .qnaList .aBox::before{ content:''; display: block; width: 100%; height: 1px;    }
.sub02_4 .qnaSec .halfBox .qnaList .aBox::before{ content: 'A'; position: absolute; left: 30px; top: 20px; font-size: 32px; font-weight: 700; color: #CD354E; }
.sub02_4 .qnaSec .halfBox .qnaList .aBox .red{ color: #CD354E; }
.sub02_4 .qnaSec .halfBox .qnaList .bar{ position: absolute; left: 20px; top: 0; margin: 0 auto; width:calc(100% - 40px); height: 1px; background-color: #e4e4e4; }

@media screen and (max-width: 1250px) {
    .sub02_4 .qnaSec .title{ font-size: 24px; }
    .sub02_4 .qnaSec .halfBox .qnaList .qBox .text{ font-size: 16px; }
    .sub02_4 .qnaSec .halfBox .qnaList .qBox .icon{ width: 15px; }
    .sub02_4 .qnaSec .halfBox .qnaList .aBox{ font-size: 16px; }
}
@media screen and (max-width: 950px) {
    .sub02_4 .qnaSec .title{ font-size: 20px; }
    .sub02_4 .qnaSec .halfBox{ flex-direction: column; gap: 20px; }
    .sub02_4 .qnaSec .halfBox .qnaList{ width: 100%; }
}
@media screen and (max-width: 650px) {
    .sub02_4 .qnaSec .title{ font-size: 18px; }
    .sub02_4 .qnaSec .halfBox .qnaList > li{ border-radius: 10px; }
    .sub02_4 .qnaSec .halfBox .qnaList .qBox{ padding-left: 50px; }
    .sub02_4 .qnaSec .halfBox .qnaList .aBox{ padding-left: 50px; }
    .sub02_4 .qnaSec .halfBox .qnaList .qBox::before{ font-size: 25px; left: 25px; top: 13px; }  
    .sub02_4 .qnaSec .halfBox .qnaList .aBox::before{ font-size: 25px; left: 25px; }  
}


/* .sub03_1 .portfolioSec */
.sub03_1 .portfolioSec{ padding: 100px 0; background-color: #F8F3EC; }
.sub03_1 .portfolioSec .tabList{ margin-top: 17px; display: flex; flex-wrap: wrap; gap: 10px;  }
.sub03_1 .portfolioSec .tabList .item{ display: block; min-width: 157px; padding: 0 20px; text-align: center; border-radius: 100px; line-height: 2.5em; background-color: #EFE7DD; }
.sub03_1 .portfolioSec .tabList .item.on{ background-color: #222; font-weight: 700; color: #fff; }

.sub03_1 .portfolioSec .contentBox{ margin-top: 10px; display: flex; flex-wrap: wrap; width: calc(100% + 20px); margin-left: -10px; }
.sub03_1 .portfolioSec .contentBox > li{ padding: 10px; width: calc(100% / 4); }
.sub03_1 .portfolioSec .contentBox .imgBox{ position: relative; height: 290px; aspect-ratio: 1; border-radius: 10px; overflow: hidden; }
.sub03_1 .portfolioSec .contentBox .imgBox .bg{ background-size: cover; background-repeat: no-repeat; background-position: center; position: absolute; left: 0; top: 0; width: 100%; height: 100%; transition: transform 1s; }
.sub03_1 .portfolioSec .contentBox .item:hover .imgBox .bg{ transform: scale(1.2); }
.sub03_1 .portfolioSec .contentBox .item .title{ margin-top: 10px; font-size: 16px; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }

.sub03_1 .portfolioSec .moreBtn{ font-weight: 600; transition: border .5s, background .5s, color .5s; border: 2px solid #CF2E41; display: block; margin: 0 auto; max-width: 280px; border-radius: 100px; width: 100%; padding: 16px; background-color: #CF2E41; color: #fff; margin-top: 50px; }
.sub03_1 .portfolioSec .moreBtn:hover{ background-color: #fff; color: #CD354E; }

@media screen and (max-width: 1250px) {
    .sub03_1 .portfolioSec .contentBox .imgBox{ border-radius: 1vw; height: 22vw; }
    .sub03_1 .portfolioSec .contentBox .item .title{ font-size: 16px; }  
}
@media screen and (max-width: 950px) {
    .sub03_1 .portfolioSec .tabList .item{ min-width: auto; font-size: 16px; }
    .sub03_1 .portfolioSec .contentBox{ width: calc(100% + 10px); }
    .sub03_1 .portfolioSec .contentBox > li{ padding: 5px; }
    .sub03_1 .portfolioSec .contentBox .item .title{ font-size: 16px; }  
}
@media screen and (max-width: 650px) {
    .sub03_1 .portfolioSec .tabList{ gap: 5px; }
    .sub03_1 .portfolioSec .tabList .item{ font-size: 14px; }
    .sub03_1 .portfolioSec .contentBox > li{ padding: 15px 10px; width: calc(100%/2); }
    .sub03_1 .portfolioSec .contentBox .imgBox{ height: 44vw; }

    .sub03_1 .portfolioSec .moreBtn{ font-size: 16px; padding: 10px; max-width: 140px; }  
}


/* .sub04_1 .progressSec */
.sub04_1 .progressSec{ display: flex; flex-direction: column; color:#fff; position: relative; overflow: hidden; background: linear-gradient(270deg, rgba(151, 33, 52, 0.00) 0%, #972134 106.3%), #CD354E; min-height: 60vh; padding: 20vh 0 10vh 0; }
.sub04_1 .progressSec .t1{ display: flex; font-size: 6vw; font-weight: 700; white-space: nowrap; gap: 50px; }
.sub04_1 .progressSec .inner{ flex-grow: 1; display: flex; flex-direction: column; }
.sub04_1 .progressSec .t2{ flex-grow: 1; margin-top: 17px; font-size: 24px; font-weight: 700;  }
.sub04_1 .progressSec .progressBox{ display: flex; align-items: center; gap: 10px; }
.sub04_1 .progressSec .barBox{ width: 0; animation: progress_bar ease-in-out 1.5s forwards; display: flex; }
.sub04_1 .progressSec .barBox .bar{ width: 100%; height: 2px; background-color: #fff; }
.sub04_1 .progressSec .barBox .count{ flex-shrink: 0; font-size: 40px; font-weight: 700; }
.sub04_1 .progressSec .progressBox .count{ font-size: 40px; font-weight: 700; }

@keyframes progress_bar {
    0%{ width: 0; }
    100%{ width: 100%; }
}

@media screen and (max-width: 1250px) {
    .sub04_1 .progressSec .t1{ font-size: 10vw; }
    .sub04_1 .progressSec .t2{ font-size: 18px; }
}
@media screen and (max-width: 650px) {
    .sub04_1 .progressSec{ padding-bottom: 5vh; }
    .sub04_1 .progressSec .t1{ font-size: 22vw; }
    .sub04_1 .progressSec .progressBox .count{ font-size: 30px; }
}

/* .sub04_1 .pointSec */
.sub04_1 .pointSec{ background: #fff; text-align: center; padding: 200px 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.sub04_1 .pointSec .t1{ opacity: 0; font-size: 24px; font-weight: 500; }
.sub04_1 .pointSec.on .t1{ animation: fadeIn 0.7s ease-in-out 0s 1 forwards running; }
.sub04_1 .pointSec .t2{ opacity: 0; line-height: 2em; font-weight: 700; color: #222; font-size: 32px; }
.sub04_1 .pointSec.on .t2{ animation: fadeIn 0.7s ease-in-out 0s 1 forwards running; animation-delay: .2s; }
/* animation: fadeIn 0.7s ease-in-out 0s 1 forwards running; */


@media screen and (max-width: 1250px) {
    .sub04_1 .pointSec .t1{ font-size: 18px; }
    .sub04_1 .pointSec .t2{ font-size: 28px; } 
}
@media screen and (max-width: 900px) {
    .sub04_1 .pointSec .t1{ font-size: 16px; }
    .sub04_1 .pointSec .t2{ font-size: 24px; } 
}
@media screen and (max-width: 650px) {
    .sub04_1 .pointSec .t2{ font-size: 20px; } 
}

/* .sub04_1 .contentSection */
.sub04_1 .contentSection{ word-break: keep-all; min-height: 100vh; padding: 100px 0; display: flex; align-items: center; justify-content: center; }
.sub04_1 .contentSection .halfBox{ display: flex; align-items: center; gap: 45px; }
.sub04_1 .contentSection .halfBox .imgBox{ overflow: hidden; color: #fff; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; height: 500px; width: 580px; background-color: #efefef; background-size: cover; background-repeat: no-repeat; background-position: center; border-radius: 10px; }
.sub04_1 .contentSection .halfBox .imgBox .bgCover{ position: absolute; width: 100%; height: 100%; background-color: rgba(0,0,0,.4);  }
.sub04_1 .contentSection .halfBox .imgBox .textBox{ position: relative; z-index: 2; }
.sub04_1 .contentSection .halfBox .imgBox .t1{ font-size: 70px; font-weight: 500; }
.sub04_1 .contentSection .halfBox .imgBox .t2{ margin-top: 10px; font-weight: 500; font-size: 32px; }
.sub04_1 .contentSection .halfBox .imgBox .t3{ word-break: keep-all; margin-top: 10px; font-size: 18px; }
.sub04_1 .contentSection .halfBox .contentBox{   flex-grow: 1; display: flex; flex-direction: column; }
.sub04_1 .contentSection .halfBox .contentBox .box { line-height: 1.5em; flex-grow: 1; padding: 50px 0; }
.sub04_1 .contentSection .halfBox .contentBox .box .title{ font-size: 22px; font-weight: 700; }
.sub04_1 .contentSection .halfBox .contentBox .box .content{ margin-top: 10px; font-size: 14px; color: #222; }
.sub04_1 .contentSection .halfBox .contentBox .box .tagList{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; font-size: 14px; }
.sub04_1 .contentSection .halfBox .contentBox .box .tagList .tag{ background-color: #d9d9d9; padding: 3px 10px; border-radius: 10px; }
.sub04_1 .contentSection .halfBox .contentBox .bar{ width: 100%; height: 1px; background-color: #d9d9d9; }

@media screen and (max-width: 1250px) {
    .sub04_1 .contentSection .halfBox .imgBox{ height: 50vw; }
    .sub04_1 .contentSection .halfBox .contentBox .box{ padding: 50px 0; }
    .sub04_1 .contentSection .halfBox .contentBox .box .title{ font-size: 18px; }
}
@media screen and (max-width: 950px) {
    .sub04_1 .contentSection{ opacity: 0; min-height: unset; padding: 50px 0; }
    .sub04_1 .contentSection.on{ animation: fadeIn 0.7s ease-in-out 0s 1 forwards running; }
    .sub04_1 .contentSection .halfBox { gap: 0; flex-direction: column; }
    .sub04_1 .contentSection .halfBox .imgBox{ width: 100%; height: 70vw; padding: 5vw; }
    .sub04_1 .contentSection .halfBox .contentBox{ width: 100%; }
    .sub04_1 .contentSection .halfBox .contentBox .box{ padding: 20px 0; }

    .sub04_1 .contentSection .halfBox .imgBox .textBox{ opacity: 0; } 
    .sub04_1 .contentSection.on .halfBox .imgBox .textBox{ opacity: 1; }

    .sub04_1 .contentSection .halfBox .imgBox .t1{ font-size: 40px; }
    .sub04_1 .contentSection .halfBox .imgBox .t2{ font-size: 25px; }
    .sub04_1 .contentSection .halfBox .imgBox .t3{ font-size: 14px; }

}
@media screen and (max-width: 650px) {
    .sub04_1 .contentSection .halfBox .contentBox .box .tagList{ font-size: 13px; padding: 5px 0; border-radius: 2px; }
}


/* .sub04_2 .contentSection */
.sub04_2 .contentSection{ position: relative; overflow: hidden; padding: 60px 0; }
.sub04_2 .contentSection .halfBox{ display: flex; }
.sub04_2 .contentSection .halfBox + .halfBox{ padding-top: 100px; }
.sub04_2 .contentSection .halfBox .titleDiv{ width: 360px; flex-shrink: 0; }
.sub04_2 .contentSection .halfBox .titleDiv .main_subTitle{ margin-top: 13px; color: #7f7f7f; font-weight: 500; font-size: 24px; }

.sub04_2 .contentSection .rightBox{ flex-grow: 1; }
.sub04_2 .contentSection .rightBox .dotTitle{ font-size: 24px; font-weight: 700; position: relative; padding-left: 20px; }
.sub04_2 .contentSection .rightBox .dotTitle::before{ content: ''; position: absolute; top: 10px; left: 0; display: block; width: 10px; height: 10px; background-color: #5CC2CE; border-radius: 50%; }
.sub04_2 .contentSection .rightBox .contentWrap + .contentWrap{ margin-top: 100px; }
.sub04_2 .contentSection .rightBox .contentDiv{ line-height: 1.5em; margin-top: 20px; }
.sub04_2 .contentSection .rightBox .dotList{ text-align: center; display: flex; flex-wrap: wrap; width: calc(100% + 10px); margin-left: -5px; }
.sub04_2 .contentSection .rightBox .dotList > li{ padding-left: 5px; width: calc(100% / 5); }
.sub04_2 .contentSection .rightBox .dotList .item{ width: 100%; height: 162px; border-radius: 50%; background-color: #f1f1f1; background-repeat: no-repeat; background-position: center; background-size: 30%; }
.sub04_2 .contentSection .rightBox .dotList .text{ line-height: 2em; text-align: center; font-size: 20px; }
.sub04_2 .contentSection .rightBox .grayBgDiv{ background-color: #F1F1F1; border-radius: 10px; padding: 25px; }
.sub04_2 .contentSection .rightBox .dot{ position: relative; padding-left: 15px;  }
.sub04_2 .contentSection .rightBox .dot + .dot{ margin-top: 5px; }
.sub04_2 .contentSection .rightBox .dot::before{ content:'•'; position: absolute; left: 0;  }

@media screen and (max-width: 1250px) {
    .sub04_2 .contentSection .halfBox .titleDiv .main_subTitle{ font-size: 18px;} 
    .sub04_2 .contentSection .halfBox{ flex-direction: column; }
    .sub04_2 .contentSection .rightBox{ margin-top: 50px; }
    .sub04_2 .contentSection .rightBox .dotList .item{ height: 18vw; }
    .sub04_2 .contentSection .rightBox .dotList .text{ font-size: 16px; }

    .sub04_2 .contentSection .rightBox .dotTitle{ font-size: 18px; }
    .sub04_2 .contentSection .rightBox .dotTitle::before{ top: 5px; }
}
@media screen and (max-width: 650px) {
    .sub04_2 .contentSection .rightBox .dotList{ flex-wrap: wrap; }
    .sub04_2 .contentSection .rightBox .dotList > li{ width: calc(100% / 3);  }
    .sub04_2 .contentSection .rightBox .dotList .item{ height: 31vw; }
    .sub04_2 .contentSection .rightBox .dotTitle{ font-size: 16px; }
    .sub04_2 .contentSection .rightBox .dot{ font-size: 14px; }
}

.sub04_2 .contentSection .tabList{ display: flex; flex-wrap: wrap; gap: 12px; }
.sub04_2 .contentSection .tabList .item{ transition: background .2s; font-size: 20px; line-height: 2em; padding:0 26px; border-radius: 100px; border: 1px solid #000; background-color: #fff; }
.sub04_2 .contentSection .tabList .item:hover{ background-color: #CF2E41; border-color: #CF2E41; color: #fff; }
.sub04_2 .contentSection .tabList .item.active{  background-color: #CF2E41; border-color: #CF2E41; color: #fff ;}
.sub04_2 .contentSection .contentList > li{ display: none; }
.sub04_2 .contentSection .contentList > li.active{ display: block; }
.sub04_2 .contentSection .qnaList{ margin-top: 25px; }  
.sub04_2 .contentSection .qnaList > li { padding: 10px 10px; }
.sub04_2 .contentSection .qnaList > li.active{ position: relative; background-color: #F1F1F1; }
.sub04_2 .contentSection .qnaList > li.active::before{  content:''; position: absolute; left: 0; top: 0; display: block; width: 2px; height: 100%; background-color: #CF2E41; }
.sub04_2 .contentSection .qnaList > li + li{ border-top: 1px solid #E4E4E4; }
.sub04_2 .contentSection .qnaList .qnaBox{ line-height: 1.5em; font-size: 18px; padding: 15px 20px; padding-left: 40px; position: relative; }
.sub04_2 .contentSection .qnaList .qBox{ font-weight: 600; cursor: pointer; position: relative;  }
.sub04_2 .contentSection .qnaList .qBox::before{ content:'Q'; position: absolute; left: 20px;  }
.sub04_2 .contentSection .qnaList .aBox::before{ content:'A'; position: absolute; left: 20px;  }
.sub04_2 .contentSection .qnaList .aBox{ display: none; }

@media screen and (max-width: 1250px) {
    .sub04_2 .contentSection .tabList .item{ font-size: 16px; padding: 2px 15px; }
}
@media screen and (max-width: 650px) {
    .sub04_2 .contentSection .rightBox{ margin-top: 30px; }
    .sub04_2 .contentSection .tabList{ gap: 5px;  }
    .sub04_2 .contentSection .tabList .item{ font-size: 14px; }
    .sub04_2 .contentSection .qnaList .qnaBox{ font-size: 16px; }
    .sub04_2 .contentSection .qnaList > li{ padding: 0; }
    .sub04_2 .contentSection .qnaList .qnaBox{ padding: 15px 10px; padding-left: 40px; }
}


/* .sub.sub05 .topBannerSec */
.sub.sub05 .topBannerSec .circle3{ position: absolute; right: 0; bottom: 0; }


/* .sub.sub05_1 .contentSection */
.sub.sub05_1 .contentSection{ position: relative; overflow: hidden; padding: 40px 0; }
.sub.sub05_1 .contentSection .gellary_list{ display: flex; flex-wrap: wrap; width: calc(100% + 10px); margin-left: -5px; }
.sub.sub05_1 .contentSection .gellary_list > li{ width: calc(100% / 3); padding: 5px; }
.sub.sub05_1 .contentSection .gellary_list .imgBox{ border-radius: 10px; overflow: hidden; position: relative; height: 238px;  }
.sub.sub05_1 .contentSection .gellary_list .imgBox .bg{ transition: transform .5s; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-position: center; }
.sub.sub05_1 .contentSection .gellary_list .item:hover .imgBox .bg{ transform: scale(1.2); }
.sub.sub05_1 .contentSection .gellary_list .contentBox{ margin-top: 10px; }
.sub.sub05_1 .contentSection .gellary_list .contentBox .label{ display: inline-block; padding: 5px 10px; border: 1px solid #CF2E41; border-radius: 54px; background-color: #fff; color: #CF2E41; font-size: 14px; }
.sub.sub05_1 .contentSection .gellary_list .contentBox .title{  overflow: hidden; font-weight: 500; text-overflow: ellipsis; display: -webkit-box;-webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.5em; font-size: 20px; margin-top: 5px; }

.sub.sub05_1 .contentSection .moreViewBtn{ display: block; margin: 30px auto 0 auto; width: 100%; max-width: 280px; border-radius: 100px; padding: 16px 10px; border: 2px solid #CF2E41; color: #fff; background: #CF2E41; transition: background .5s, color .5s, border .5s; }
.sub.sub05_1 .contentSection .moreViewBtn:hover{ background-color: #fff; color: #CF2E41; }

@media screen and (max-width: 1250px) {
    .sub.sub05 .topBannerSec .circle3{ width: 30vw; height: auto; }
    .sub.sub05_1 .contentSection .gellary_list .imgBox{ height: 19vw; }
    .sub.sub05_1 .contentSection .gellary_list .contentBox .title{ font-size: 18px; }
}
@media screen and (max-width: 1250px) {
    .sub.sub05_1 .contentSection .gellary_list > li{ width: calc(100% / 2); }
    .sub.sub05_1 .contentSection .gellary_list .imgBox{ height: 28vw; }

}
@media screen and (max-width: 650px) {
    .sub.sub05 .topBannerSec .circle3{ width: 50vw;}
    .sub.sub05_1 .contentSection .gellary_list > li{ width: 100%; }
    .sub.sub05_1 .contentSection .gellary_list .imgBox{ height: 52vw; }
    .sub.sub05_1 .contentSection .moreViewBtn{ font-size: 16px; padding: 10px; max-width: 140px; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translate3d(0px, 30px, 0px); }
    /* 50% { opacity: .6; } */
    100% { opacity: 1; transform: translate3d(0px, 0px, 0px); }
}


/* ======= 8/6 portfolioSec 추가 ======= */
section.portfolioSec { padding: 100px 0; background-color: #F8F3EC; }
section.portfolioSec .pf_title_text { position: relative; font-size: 32px; font-weight: 700; color: #222; }
section.portfolioSec .pf_title_text::after { content: ''; display: block; width: 80px; height: 4px; background-color: #CF3140; position: absolute; top: -10px; }

/* portfolioSec works background */
section.portfolioSec .imgBox { background: url('../img/main/portfolioSec/pf_img_1.jpg') no-repeat center / cover; }

section.portfolioSec .pf_div { margin-top: 25px; }
section.portfolioSec .pf_div .pf_ul { width: calc(100% + 10px); margin-left: -5px; display: flex; flex-wrap: wrap; }
section.portfolioSec .pf_div .pf_ul > li { width: calc(100%/4); padding: 5px; }
section.portfolioSec .pf_div .pf_ul > li.marginTop { margin-top: 30px; }
section.portfolioSec .pf_div .pf_ul > li .imgBox { width: ; aspect-ratio: 1; background-color: #D9D9D9; border-radius: 8px; margin-bottom: 15px; }
section.portfolioSec .pf_div .pf_ul > li .pf_text { font-size: 18px; font-weight: 500; word-break: keep-all; }

section.portfolioSec .pf_div .pfBtn { width: 324px; display: block; padding: 15px 0; border-radius: 5px; font-size: 18px; color: #fff; background-color: #CF2E41; border: none; margin: 40px auto 0; }

@media screen and (max-width: 1250px) {
    section.portfolioSec .pf_div .pf_ul > li { width: calc(100%/3); }
    section.portfolioSec .pf_div .pf_ul > li.marginTop_1250 { margin-top: 30px; }
} 
@media screen and (max-width: 720px) {
    section.portfolioSec { padding: 13vw 0; }
    section.portfolioSec .pf_title_text { font-size: 28px; }
    section.portfolioSec .pf_title_text::after { width: 60px; height: 3px; }
    section.portfolioSec .pf_div .pf_ul > li { width: calc(100%/2); }
    section.portfolioSec .pf_div .pf_ul > li.marginTop_1250 { margin-top: 20px; }
    section.portfolioSec .pf_div .pf_ul > li.marginTop_720 { margin-top: 20px; }
    section.portfolioSec .pf_div .pf_ul > li .pf_text { font-size: 14px; }

    section.portfolioSec .pf_div .pfBtn { width: 280px; font-size: 16px; }
} 
@media screen and (max-width: 480px) {
    section.portfolioSec .pf_title_text { font-size: 20px; }
    section.portfolioSec .pf_title_text::after { width: 42px; height: 2px; top: -7px; }
    section.portfolioSec .pf_div { margin-top: 15px; }
    section.portfolioSec .pf_div .pf_ul > li .pf_text { font-size: 12px; }
    section.portfolioSec .pf_div .pfBtn { width: 100%; padding: 12px 0; }
}

/* ======= 8/11 sub02_1 수정======= */
.sub02 span.text_red { color: #CF2E41; }
.sub02 span.text_under_red { border-bottom: 3px solid #CF2E41; }
.sub02 .subContent.subContent2 { font-weight: 700; }
.sub02 .subContent.subContent2 .text_under_red { padding-bottom: 3px; }

/* subBannerSec service_ul 공통 메뉴 */
.sub02 section.subBannerSec .service_ul { max-width: 766px; margin: 0 auto 100px; display: flex; justify-content: center; gap: 20px; }
.sub02 section.subBannerSec .service_ul li { width: calc(100%/3); font-weight: 500; }
.sub02 section.subBannerSec .service_ul li.on .item { background-color: #CD354E; }
.sub02 section.subBannerSec .service_ul li .item { padding: 15px 0; border-radius: 70px; background-color: #7F7F7F; }
.sub02 section.subBannerSec .service_ul li .item .text_1 { font-size: 18px; color: #fff; }

@media screen and (max-width: 1250px) {
    .sub02 section.subBannerSec .service_ul { margin: 0 auto 50px; }
    .sub02 section.subBannerSec .service_ul li .item .text_1 { font-size: 16px; }
} 
@media screen and (max-width: 650px) {
    .sub02 section.subBannerSec .service_ul { gap: 10px; }
    .sub02 section.subBannerSec .service_ul li .item { padding: 13px 0; }
} 
@media screen and (max-width: 480px) {
    .sub02 section.subBannerSec .service_ul { margin: 0 auto 10vw; }
    .sub02 section.subBannerSec .service_ul li .item { padding: 10px 0; }
    .sub02 section.subBannerSec .service_ul li .item .text_1 { font-size: 14px; }
} 

/* bannerSec */
.sub02_1 section.bannerSec { background: url('../img/sub/sub02_1/background3.jpg') no-repeat center / cover; }
.sub02_1 section.bannerSec { padding: 100px 0; }
.sub02_1 section.bannerSec .text_1 { text-align: center; font-size: 32px; color: #fff; line-height: 1.4; }
.sub02_1 section.bannerSec b { font-weight: 700; }

@media screen and (max-width: 1250px) {
    .sub02_1 section.bannerSec .text_1 { font-size: 24px; }
}
@media screen and (max-width: 650px) {
    .sub02_1 section.bannerSec { padding: 50px 0; }
    .sub02_1 section.bannerSec .text_1 { font-size: 20px; }
}
@media screen and (max-width: 500px) {
    .sub02_1 section.bannerSec { padding: 50px 0; }
    .sub02_1 section.bannerSec .text_1 { font-size: 4vw; }
}

/* redBoxSec */
.sub02_1 section.redBoxSec { padding: 100px 0; background-color: #fff; }
.sub02_1 section.redBoxSec ul { width: calc(100% + 20px); margin-left: -10px; display: flex; flex-wrap: wrap; }
.sub02_1 section.redBoxSec ul li { width: calc(100%/4); padding: 10px; }
.sub02_1 section.redBoxSec ul li .item { height: 100%; padding: 20px 0; display: flex; align-items: center; justify-content: center; background-color: #CD354E; }
.sub02_1 section.redBoxSec ul li.list2 .item { background-color: #C8475C; }
.sub02_1 section.redBoxSec ul li.list3 .item { background-color: #C95165; }
.sub02_1 section.redBoxSec ul li.list4 .item { background-color: #D76578; }
.sub02_1 section.redBoxSec ul li .item .text_1 { font-size: 26px; font-weight: 500; color: #fff; text-align: center; }
.sub02_1 section.redBoxSec .text_2 { font-size: 32px; text-align: center; margin-top: 50px; }
.sub02_1 section.redBoxSec .text_2 b { font-weight: 700; line-height: 1.4; }

@media screen and (max-width: 1250px) {
    .sub02_1 section.redBoxSec ul li .item .text_1 { font-size: 20px; }
    .sub02_1 section.redBoxSec .text_2 { font-size: 26px; }
}
@media screen and (max-width: 850px) {
    .sub02_1 section.redBoxSec ul { width: calc(100% + 10px); margin-left: -5px; }
    .sub02_1 section.redBoxSec ul li { padding: 5px; }
    .sub02_1 section.redBoxSec ul li .item .text_1 { font-size: 16px; }
    .sub02_1 section.redBoxSec .text_2 { font-size: 20px; }
}
@media screen and (max-width: 650px) {
    .sub02_1 section.redBoxSec { padding: 50px 0; }
    .sub02_1 section.redBoxSec ul li { width: calc(100%/2); }
}
@media screen and (max-width: 500px) {
    .sub02_1 section.redBoxSec .text_2 { font-size: 4vw; margin-top: 25px; }
}

/* onlineSec */
.sub02_1 section.onlineSec { padding: 150px 0; background: #f5f5f5 url('../img/sub/sub02_1/background4.png') no-repeat bottom 20px right 15% / 428px;}
.sub02_1 section.onlineSec .text_1 { font-size: 48px; font-weight: 700; text-align: center; margin-bottom: 50px; line-height: 1.5; }
.sub02_1 section.onlineSec .onlineBox { display: flex; align-items: center; justify-content: center; gap: 80px; }
.sub02_1 section.onlineSec .onlineBox .online_img { }
.sub02_1 section.onlineSec .onlineBox .textBox {  }
.sub02_1 section.onlineSec .onlineBox .textBox .t1 { font-size: 24px; font-weight: 500; margin-bottom: 10px; line-height: 1.6; }
.sub02_1 section.onlineSec .onlineBox .textBox .t2 { font-size: 26px; font-weight: 700; line-height: 1.6; }

@media screen and (max-width: 1250px) {
    .sub02_1 section.onlineSec .text_1 { font-size: 36px; }
    .sub02_1 section.onlineSec .onlineBox { gap: 40px; }
    .sub02_1 section.onlineSec .onlineBox .online_img { max-width: 100%; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t1 { font-size: 20px; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t2 { font-size: 20px; }
    .sub02_1 section.onlineSec { background: #f5f5f5 url('../img/sub/sub02_1/background4.png') no-repeat bottom 20px right 10% / 358px;}
}
@media screen and (max-width: 950px) {
    .sub02_1 section.onlineSec .onlineBox { flex-direction: column; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t1 { text-align: center; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t2 { text-align: center; }
    .sub02_1 section.onlineSec { background: #f5f5f5 url('../img/sub/sub02_1/background4.png') no-repeat bottom 10px right 5% / 240px;}
}
@media screen and (max-width: 650px) {
    .sub02_1 section.onlineSec { padding: 13vw 0; }
    .sub02_1 section.onlineSec .text_1 { font-size: 26px; margin-bottom: 25px; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t1 { font-size: 18px; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t2 { font-size: 18px; }
    .sub02_1 section.onlineSec { background: #f5f5f5 url('../img/sub/sub02_1/background4.png') no-repeat bottom 10px right 5% / 35%;}
    .sub02_1 section.onlineSec .onlineBox .online_img { width: 75%; }
}
@media screen and (max-width: 500px) {
    .sub02_1 section.onlineSec .text_1 { font-size: 5.5vw;}
    .sub02_1 section.onlineSec .onlineBox .textBox .t1 { font-size: 4vw; }
    .sub02_1 section.onlineSec .onlineBox .textBox .t2 { font-size: 4vw; }
    .sub02_1 section.onlineSec .onlineBox { gap: 20px; }
}

/* ======= 8/11 sub02_2 수정======= */

/* contentTitleSec count_div */
.sub02_2 .count_div {  }
.sub02_2 .count_div .count_ul { width: calc(100% + 10px); margin-left: -5px; margin-top: 100px; display: flex; flex-wrap: wrap; }
.sub02_2 .count_div .count_ul li { width: calc(100%/4); padding: 5px; }
.sub02_2 .count_div .count_ul li .item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.sub02_2 .count_div .count_ul li .box { border-radius: 10px; }
.sub02_2 .count_div .count_ul li .box1 { background: url('../img/sub/sub02_2/count_img_1.png') no-repeat center / cover; }
.sub02_2 .count_div .count_ul li .box2 { background: url('../img/sub/sub02_2/count_img_2.png') no-repeat center / cover; }
.sub02_2 .count_div .count_ul li .box3 { background: url('../img/sub/sub02_2/count_img_3.png') no-repeat center / cover; }
.sub02_2 .count_div .count_ul li .box4 { background: url('../img/sub/sub02_2/count_img_4.png') no-repeat center / cover; }
.sub02_2 .count_div .count_ul li .item .box { width: 100%;  padding: 60px 0; color: #fff; }
.sub02_2 .count_div .count_ul li .item .box .number { font-size: 60px; font-weight: 700; position: relative; padding-right: 25px; }
.sub02_2 .count_div .count_ul li .item .box1 .number::after { content: '개국'; font-size: 30px; position: absolute; top: 30px; margin-left: 5px;}
.sub02_2 .count_div .count_ul li .item .box2 .number::after { content: '회'; font-size: 30px; position: absolute; top: 30px; margin-left: 5px;}
.sub02_2 .count_div .count_ul li .item .box3 .number::after { content: '곳'; font-size: 30px; position: absolute; top: 30px; margin-left: 5px;}
.sub02_2 .count_div .count_ul li .item .box4 .number::after { content: '건'; font-size: 30px; position: absolute; top: 30px; margin-left: 5px;}
.sub02_2 .count_div .count_ul li .item .box .number .small { font-size: 30px; }
.sub02_2 .count_div .count_ul li .item .name { font-size: 18px; font-weight: 700; margin-top: 10px; }
.sub02_2 br.br_500 { display: none; }

@media screen and (max-width: 1250px) {
    .sub02_2 .count_div .count_ul li .item .box .number { font-size: 48px; }
    .sub02_2 .count_div .count_ul li .item .box1 .number::after { font-size: 24px; top: 23px; }
    .sub02_2 .count_div .count_ul li .item .box2 .number::after { font-size: 24px; top: 23px; }
    .sub02_2 .count_div .count_ul li .item .box3 .number::after { font-size: 24px; top: 23px; }
    .sub02_2 .count_div .count_ul li .item .box4 .number::after { font-size: 24px; top: 23px; }
    .sub02_2 .count_div .count_ul li .item .name { font-size: 16px; }
}
@media screen and (max-width: 950px) {
    .sub02_2 .count_div .count_ul li { width: calc(100%/2); }
    .sub02_2 .count_div .count_ul li .item .box { padding: 10vw 0; }
}
@media screen and (max-width: 650px) {
    .sub02_2 .count_div .count_ul { margin-top: 40px; }
    .sub02_2 .count_div .count_ul li .item .box .number { font-size: 36px; }
    .sub02_2 .count_div .count_ul li .item .box .number::after { font-size: 16px; top: 19px; }
    .sub02_2 .count_div .count_ul li .item .name { font-size: 14px; }
}
@media screen and (max-width: 500px) {
    .sub02_2 br.br_500 { display: block; }
    .sub02_2 .subContent.subContent2 .text_under_red { line-height: 2; }
}
@media screen and (max-width: 450px) {
    /* .sub02_2 .count_div .count_ul li { width: calc(100%/1); } */
    .sub02_2 .count_div .count_ul li .item .box .number { font-size: 28px; }
    .sub02_2 .count_div .count_ul li .item .box .number::after { top: 13px; }
    .sub02_2 .count_div .count_ul li .item .name { font-size: 12px; }
}

/* globalSec */
.sub02_2 section.globalSec { padding: 100px 0; }
.sub02_2 section.globalSec .global_title { font-size: 48px; font-weight: 700; text-align: center; margin-bottom: 60px; }
.sub02_2 section.globalSec .global_div {  }
.sub02_2 section.globalSec .global_div .global_ul { display: flex; flex-direction: column; gap: 50px; justify-content: center;}
.sub02_2 section.globalSec .global_div .global_ul li { display: flex; align-items: center; gap: 50px; justify-content: center; }
.sub02_2 section.globalSec .global_div .global_ul li .g_img1 { max-width: 100%; }
.sub02_2 section.globalSec .global_div .global_ul li.right .g_img1 { order: 1; }
.sub02_2 section.globalSec .global_div .global_ul li.right .item { order: 0; }
.sub02_2 section.globalSec .global_div .global_ul li .g_img1 {  }
.sub02_2 section.globalSec .global_div .global_ul li .item { max-width: 520px; width: 100%; text-align: center; }
.sub02_2 section.globalSec .global_div .global_ul li .item .text_1 { padding: 20px 0; font-size: 20px; background-color: #CF2E41; color: #fff; font-weight: 700; text-align: center; }
.sub02_2 section.globalSec .global_div .global_ul li .item .gray_box { padding: 25px 0; margin: 30px 0; display: flex; flex-direction: column; align-items: center; gap: 15px; background-color: #F7F7F7; border-radius: 10px; }
.sub02_2 section.globalSec .global_div .global_ul li .item .text_2 { font-size: 18px; font-weight: 700; }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box { display: flex; align-items: center; justify-content: center; gap: 15px; }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box.type1 { height: 72px; }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_img {  }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_text { font-size: 18px; line-height: 1.5; font-weight: 500; }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_text .red { font-weight: 700; color: #CD354E; }
.sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_img {  }

@media screen and (max-width: 1250px) {
    .sub02_2 section.globalSec .global_title { font-size: 36px; }
    .sub02_2 section.globalSec .global_div .global_ul li { gap: 25px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .gray_box { margin: 20px 0; }
    .sub02_2 section.globalSec .global_div .global_ul li .g_img1 { width: 500px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .text_1 { font-size: 18px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .text_2 { font-size: 16px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_text { font-size: 16px; }
}
@media screen and (max-width: 1000px) {
    .sub02_2 section.globalSec .inner { padding: 0 10px; }
    .sub02_2 section.globalSec .global_title { font-size: 26px; margin-bottom: 20px; }
    .sub02_2 section.globalSec .global_div .global_ul { width: calc(100% + 20px); margin-left: -10px; flex-direction: unset; flex-wrap: wrap; gap: unset; }
    .sub02_2 section.globalSec .global_div .global_ul li { width: calc(100%/2); padding: 10px;flex-direction: column;  }
    .sub02_2 section.globalSec .global_div .global_ul li.right .g_img1 { order: unset; }
    .sub02_2 section.globalSec .global_div .global_ul li .g_img1 { width: 450px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .text_1 { padding: 15px 0; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .gray_box { padding: 20px 0; }
}
@media screen and (max-width: 800px) {
    .sub02_2 section.globalSec .global_div .global_ul li { width: calc(100%/1) ; } 
    .sub02_2 section.globalSec .global_div .global_ul li .g_img1 { width: 80%; }
    .sub02_2 section.globalSec .global_div .global_ul li .item { width: 100%; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .quote_box.type1 { height: unset; }
}
@media screen and (max-width: 650px) {
    .sub02_2 section.globalSec { padding: 13vw 0; }
    .sub02_2 section.globalSec .global_div .global_ul li .g_img1 { width: 100%; }
    .sub02_2 section.globalSec .global_div .global_ul li .item { max-width: 100%; }
}
@media screen and (max-width: 500px) {
    .sub02_2 section.globalSec .global_title { font-size: 5.5vw; }
    .sub02_2 section.globalSec .global_div .global_ul li { gap: 10px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .gray_box { margin: 10px 0; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .text_1 {  font-size: 16px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .text_2 { font-size: 14px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .quote_box .quote_text { font-size: 14px; }
    .sub02_2 section.globalSec .global_div .global_ul li .item .direction { width: 12px; }
}
/* programSec */
.sub02_2 section.programSec { position: relative; padding: 110px 0; background: linear-gradient(273deg, rgba(158, 36, 56, 0.00) 0%, #9E2438 100%), #C8344C; text-align: center; color: #fff; }
.sub02_2 section.programSec .program_bg { width: 1150px; position: absolute; bottom: 20px; left: 30px; }
.sub02_2 section.programSec .pg_title { font-size: 32px; font-weight: 700; margin-bottom: 2vw; line-height: 1.5; }
.sub02_2 section.programSec .pg_text { font-size: 18px; font-weight: 700; margin: 25px 0 20px; }
.sub02_2 section.programSec a .pro_btn { width: fit-content; position: relative; z-index: 2; }
.sub02_2 section.programSec .pro_btn { width: 300px; padding: 10px 30px; font-size: 20px; font-weight: 700; color: #CF2E41; background: #fff; border-radius: 4px; border: none; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.sub02_2 br.br_950 { display: none; }
.sub02_2 br.br_650 { display: none; }

@media screen and (max-width: 1250px) {
    .sub02_2 section.programSec .program_bg { width: 800px; }
    .sub02_2 section.programSec .pg_title { font-size: 26px; line-height: 1.5;}
    .sub02_2 section.programSec .pg_text { font-size: 16px; }
    .sub02_2 section.programSec .pro_btn { font-size: 18px; width: 280px; }
}
@media screen and (max-width: 950px) {
    .sub02_2 br.br_950 { display: block; }
    .sub02_2 section.programSec .program_bg { width: 400px; }
}
@media screen and (max-width: 650px) {
    .sub02_2 br.br_650 { display: block; }
    .sub02_2 section.programSec { padding: 50px 0; }
    .sub02_2 section.programSec .pg_title { font-size: 20px; }
    .sub02_2 section.programSec .pg_text { margin: 15px 0 20px; line-height: 1.5; }
    .sub02_2 section.programSec .pro_btn { width: 220px; font-size: 14px; gap: 5px; }
    .sub02_2 section.programSec .pro_arrow { width: 15px; }
}
@media screen and (max-width: 500px) {
    .sub02_2 section.programSec .pg_title { font-size: 4.5vw; }
    .sub02_2 section.programSec .pg_text { font-size: 3.8vw; }
    .sub02_2 section.programSec .pro_arrow { width: 15px; }
}

/* ======= 8/12 sub02_3 수정======= */

/* caseSec */
section.caseSec { padding: 100px 0; }
section.caseSec .case_title { font-size: 52px; font-weight: 700; text-align: center; margin-bottom: 40px; }
section.caseSec .case_div {  }
section.caseSec .case_div .case_ul { display: flex; flex-direction: column; gap: 10px; }
section.caseSec .case_div .case_ul li {  }
section.caseSec .case_div .case_ul li .question_box { padding: 20px 25px; color: #fff; background: linear-gradient(90deg, #A1253A 0%, #CA344D 100%); display: flex; align-items: center; justify-content: space-between; border-radius: 10px; }
section.caseSec .case_div .case_ul li .question_box .q_text { font-size: 24px; font-weight: 700; color: #fff; }
section.caseSec .case_div .case_ul li .question_box .plus_btn { cursor: pointer; }

section.caseSec .case_div .case_ul li .answer_box { padding: 30px 25px; margin-top: 10px; background-color: #F5F5F5; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; }
section.caseSec .case_div .case_ul li .answer_box .a_box { display: flex; flex-direction: column; gap: 40px; }
section.caseSec .case_div .case_ul li .answer_box .a_box .a_text:nth-of-type(1) { font-size: 22px; font-weight: 700;}
section.caseSec .case_div .case_ul li .answer_box .a_box .a_text { font-size: 20px; font-weight: 500; }
section.caseSec .case_div .case_ul li .answer_box .minus_btn { cursor: pointer; }
.sub02_3 .br_380 { display: none; }
.sub02_3 .br_500 { display: none; }
@media screen and (max-width: 1250px) {
    section.caseSec .case_title { font-size: 42px; }
    section.caseSec .case_div .case_ul li .question_box .q_text { font-size: 20px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text:nth-of-type(1) { font-size: 20px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text { font-size: 18px; }
}
@media screen and (max-width: 650px) {
    section.caseSec { padding: 13vw 0; }
    section.caseSec .case_title { font-size: 32px; }
    section.caseSec .case_title { margin-bottom: 20px; }
    section.caseSec .case_div .case_ul li .answer_box { padding: 20px 15px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box { gap: 20px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text:nth-of-type(1) { font-size: 18px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text { font-size: 16px; }
    section.caseSec .case_div .case_ul li .question_box { padding: 15px; }
    section.caseSec .case_div .case_ul li .question_box .q_text { font-size: 18px; }
    section.caseSec .case_div .case_ul li .question_box .plus_btn { width: 18px; }
    section.caseSec .case_div .case_ul li .answer_box .minus_btn { width: 18px; }
}

@media screen and (max-width: 500px) {
    section.caseSec .case_title { font-size: 24px; }
    section.caseSec .case_div .case_ul { word-break: keep-all; }
    section.caseSec .case_div .case_ul li .question_box .q_text { font-size: clamp(14px, 3.5vw, 17px); }
    section.caseSec .case_div .case_ul li .answer_box .a_box { gap: 15px; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text:nth-of-type(1) { font-size: clamp(13px, 3vw, 16px);; }
    section.caseSec .case_div .case_ul li .answer_box .a_box .a_text { font-size: clamp(12px, 3vw, 14px);; }
    section.caseSec .case_div .case_ul li .question_box .plus_btn { width: 14px; }
    section.caseSec .case_div .case_ul li .answer_box .minus_btn { width: 14px; }

    section.caseSec .case_div .case_ul li .question_box { gap: 10px; }
    section.caseSec .case_div .case_ul li .answer_box { gap: 10px; }

    .sub02_3 .br_500 { display: block; }
    .sub02_3 section .subContent.subContent2{ line-height: 2; }

    
}
@media screen and (max-width: 380px) {
    section.caseSec .sub02_3 .br_380 { display: block; }
}

/* visionSec */
section.visionSec { padding: 150px 0; background: url('../img/sub/sub02_3/vision_bg.png') no-repeat center / cover; }
section.visionSec .vision_div {  }
section.visionSec .vision_div .vision_title { font-size: 32px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 25px;}
section.visionSec .vision_div .vision_ul { width: calc(100% + 10px); margin-left: -5px; display: flex; flex-wrap: wrap; justify-content: center; }
section.visionSec .vision_div .vision_ul li { width: calc(100%/3); padding: 5px; }
section.visionSec .vision_div .vision_ul li .item { padding: 30px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #fff; border-radius: 10px; }
section.visionSec .vision_div .vision_ul li .item .vision_icon { margin-bottom: 20px; }
section.visionSec .vision_div .vision_ul li .item .vision_text { font-size: 18px; text-align: center; font-weight: 700; line-height: 1.5; }
section.visionSec .vision_div .vision_text2 { margin: 40px 0 20px; font-size: 18px; font-weight: 700; text-align: center; color: #fff; }
section.visionSec .vision_div .vision_btn { font-size: 20px; padding: 10px 0; width: 300px; margin: 0 auto; display: block; background-color: #CF2E41; border: none; color: #fff; border-radius: 5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; }
section.visionSec .vision_div .vision_btn .arrow {  }
section.visionSec .br_650 { display: none; }
section.visionSec .br_540 { display: none; }
section.visionSec .br_500 { display: none; }

@media screen and (max-width: 1250px) {
    section.visionSec .vision_div .vision_title { font-size: 24px; }
    section.visionSec .vision_div .vision_ul li .item .vision_icon { }
    section.visionSec .vision_div .vision_ul li .item .vision_text { font-size: 16px; }
    section.visionSec .vision_div .vision_btn { font-size: 18px; }
    section.visionSec .vision_div .vision_text2 { font-size: 16px; }
}
@media screen and (max-width:650px) {
    section.visionSec { padding: 20vw 0; }
    section.visionSec .br_650 { display: block; }
    section.visionSec .vision_div .vision_btn { font-size: 16px; }
}
@media screen and (max-width: 900px) {
    section.visionSec .vision_div .vision_ul li { width: calc(100%/2); }
}
@media screen and (max-width: 540px) {
    section.visionSec .vision_div .vision_ul li .item { padding: 20px 10px; }
    section.visionSec .vision_div .vision_ul li .item .vision_text { font-size: 16px; }
    section.visionSec .br_540 { display: block; }
    section.visionSec .br_500 { display: block; }
}
@media screen and (max-width: 500px) {
    section.visionSec .vision_div .vision_ul { max-width: 380px; width: 100%; margin: 0 auto; }
    section.visionSec .vision_div .vision_ul li { width: calc(100%/1); }
    section.visionSec .vision_div .vision_title { font-size: 20px; }
    section.visionSec .br_540 { display: none; } 
    section.visionSec .vision_div .vision_text2 { font-size: 14px; line-height: 1.5; }
    section.visionSec .vision_div .vision_btn { width: 240px; font-size: 14px; } 
}

/* ======= 8/13 sub03_1 수정======= */
/* .sub03_1 .portfolio_div */

.sub03_1 .portfolio_div {  }
.sub03_1 .portfolio_div .portfolio_ul  { margin: 30px 0 0; display: flex; align-items: flex-end; justify-content: space-between; }
.sub03_1 .portfolio_div .portfolio_ul > li  {  }
.sub03_1 .portfolio_div .portfolio_ul > li:nth-child(1){ flex-shrink: 0; }
.sub03_1 .portfolio_div .portfolio_ul > li:nth-child(3){ flex-shrink: 0; }
.sub03_1 .portfolio_div .portfolio_ul > li .text_1 { font-size: 48px; font-weight: 700; }
.sub03_1 .portfolio_div .portfolio_ul > li .text_1 .red { color: #C33149; }
.sub03_1 .portfolio_div .portfolio_ul > li .stick {width: 124px;   height: 2px; background-color: #C33149; display: block;flex-shrink: 0; margin-bottom: 5px; }
.sub03_1 .portfolio_div .portfolio_ul > li .text_2  { font-size: 22px; font-weight: 500; line-height: 1.5; }
.sub03_1 .portfolio_div .portfolio_ul > li .text_2 .red  { color: #C33149; }
/* .sub03_1 .moBr { display: none; } */
@media screen and (max-width: 1250px) {
    .sub03_1 .portfolio_div .portfolio_ul > li .text_1 { font-size: 36px; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_2  { font-size: 20px; }
}

@media screen and (max-width: 1050px) {
    .sub03_1 .portfolio_div .portfolio_ul { flex-direction: column; align-items: flex-start; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_2 br { display: none; }
    .sub03_1 .portfolio_div .portfolio_ul > li .stick { display: none; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_2 br.moBr { display: block; }
}

@media screen and (max-width: 650px) {
    .sub03_1 .main_title2 { width: fit-content; margin: 0 auto;}
    .sub03_1 .portfolio_div .portfolio_ul { align-items: center; margin: 10px 0 0; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_1 { font-size: 26px; text-align: center; margin: 0 auto 10px; line-height: 1.5; }
}
@media screen and (max-width: 500px) {
    .sub03_1 .portfolio_div .portfolio_ul > li .text_1 { font-size: 20px; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_2 { font-size: 16px; text-align: center; }
    .sub03_1 .portfolio_div .portfolio_ul > li .text_2 br { display: block; }
}

/* ======= 8/14 sub01_2 수정======= */
/* applySec */

.applySec .apply_text_div { padding-top: 70px; }
.applySec .apply_text_div .apply_text  { font-size: 24px; font-weight: 500; line-height: 1.5; text-align: center; }
.applySec .apply_text_div .apply_text b  { font-size: 28px; font-weight: 700; }

@media screen and (max-width: 1250px) {
    .applySec .apply_text_div { padding-top: 50px; }
    .applySec .apply_text_div .apply_text  { font-size: 20px; line-height: 1.7; }
    .applySec .apply_text_div .apply_text b  { font-size: 24px; font-weight: 700; }
}
@media screen and (max-width: 650px) {
    .applySec .apply_text_div .apply_text  {  }
    .applySec .apply_text_div .apply_text b  {  font-weight: 700; }
}
@media screen and (max-width: 500px) {
    .applySec .apply_text_div { padding-top: 30px; }
    .applySec .apply_text_div .apply_text  { font-size: 18px; }
    .applySec .apply_text_div .apply_text b  { font-size: 20px; font-weight: 700; }
}

/* ======= sub04_2 수정 ======= */
.sub04_2 .talent_div {  }
.sub04_2 .talent_div .talent_banner { padding: 40px; background: linear-gradient(90deg, rgba(205, 53, 78, 0.00) 0%, #CD354E 100%), #9F2338; border-radius: 10px; }
.sub04_2 .talent_div .talent_banner .b_text_1 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.sub04_2 .talent_div .talent_banner .b_text_2 { font-size: 16px; color: #fff; }
.sub04_2 .talent_div .talent_title { font-size: 24px; font-weight: 700; text-align: center; }
.sub04_2 .talent_div .talent_title:nth-of-type(1) { margin: 50px 0 30px; }
.sub04_2 .talent_div .talent_title:nth-of-type(2) { margin: 65px 0 30px; }
.sub04_2 .talent_div .talent_title .sub_title { font-size: 16px; color: #7F7F7F; }
.sub04_2 .talent_div .talent_ul { width: ; display: flex; flex-wrap: wrap; }
.sub04_2 .talent_div .talent_ul > li { width: calc(100%/3); padding: 5px; }
.sub04_2 .talent_div .talent_ul > li .item { padding: 15px 0; text-align: center; background-color: #fff; box-shadow: 5px 10px 15px 0 rgba(0, 0, 0, 0.05); border-radius: 10px; }
.sub04_2 .talent_div .talent_ul > li .item .talentImg {  }
.sub04_2 .talent_div .talent_ul > li .item .text_1 { font-size: 18px; font-weight: 700; margin: 10px 0; }
.sub04_2 .talent_div .talent_ul > li .item .text_2 { font-size: 16px; font-weight: 500; }
.sub04_2 .talent_div .talent_ul_2 { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; }
.sub04_2 .talent_div .talent_ul_2 > li { width: 100%; padding: 30px 0; box-shadow: 5px 10px 15px 0 rgba(0, 0, 0, 0.05); border-radius: 10px; }
.sub04_2 .talent_div .talent_ul_2 > li .ul_2_text { font-size: 20px; font-weight: 700; text-align: center; }
.sub04_2 .talent_div .talent_ul_2 > li .ul_2_text b { color: #CF2E41; }
.sub04_2 .moBr { display: none; }
@media screen and (max-width: 1250px) {
    .sub04_2 .talent_div .talent_banner .b_text_1 { font-size: 26px; }
}
@media screen and (max-width: 950px) {
    .sub04_2 .talent_div .talent_banner { padding: 25px; }
    .sub04_2 .talent_div .talent_banner .b_text_1 { font-size: 20px; } 
    .sub04_2 .talent_div .talent_banner .b_text_2 { font-size: 14px; word-break: keep-all; }
    .sub04_2 .talent_div .talent_title:nth-of-type(1) { margin: 30px 0 15px; }
    .sub04_2 .talent_div .talent_title { font-size: 20px; }
    .sub04_2 .talent_div .talent_ul > li .item .text_1 { font-size: 16px; }
    .sub04_2 .talent_div .talent_ul > li .item .text_2 { font-size: 14px; }
    .sub04_2 .talent_div .talent_title:nth-of-type(2) { margin: 30px 0 15px; }
    .sub04_2 .talent_div .talent_title .sub_title { font-size: 14px; }
    .sub04_2 .talent_div .talent_ul_2 > li .ul_2_text { font-size: 16px; }
}
@media screen and (max-width: 650px) {
    .sub04_2 .talent_div .talent_ul > li { width: calc(100%/2); }
    .sub04_2 .talent_div .talent_ul { justify-content: center; }
}
@media screen and (max-width: 500px) {
    .sub04_2 .talent_div .talent_banner { padding: 20px; }
    .sub04_2 .talent_div .talent_ul > li { width: calc(100%/1); }
    .sub04_2 .moBr { display: block; }
    .sub04_2 .talent_div .talent_ul_2 > li { padding: 15px 0; }
    .sub04_2 .talent_div .talent_ul_2 > li .ul_2_text { line-height: 1.5; }
}

/* ======= sub01_1 수정 ======= */
section.prizeSec { height: 40vw; background: url('../img/sub/sub01_1/prizeBg.jpg') no-repeat center / cover; }
@media screen and (max-width: 650px) {
    section.prizeSec { height: 49vw; }
}

section.sub01_visionSec { padding: 120px 0; background: url('../img/sub/sub01_1/visionSec.png') no-repeat center / cover; }
section.sub01_visionSec .vision_title { font-size: 28px; font-weight: 700; text-align: center; color: #CD354E; margin-bottom: 15px;}
section.sub01_visionSec ul { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 25px; }
section.sub01_visionSec ul > li { text-align: center; }
section.sub01_visionSec ul > li.list1 { font-size: 52px; font-weight: 700; }
section.sub01_visionSec ul > li.list1 br { display: none; }
section.sub01_visionSec ul > li.list2 { font-size: 28px; font-weight: 700; }
section.sub01_visionSec ul > li.list3 { font-size: 24px; font-weight: 500; }

@media screen and (max-width: 1250px) {
    section.sub01_visionSec { padding: 80px 0; }
    section.sub01_visionSec .vision_title { font-size: 24px; }
    section.sub01_visionSec ul > li.list1 { font-size: 42px; }
    section.sub01_visionSec ul > li.list2 { font-size: 24px; }
    section.sub01_visionSec ul > li.list3 { font-size: 20px; }
}
@media screen and (max-width: 650px) {
    section.sub01_visionSec { padding: 50px 0; }
    section.sub01_visionSec .vision_title { font-size: 20px; }
    section.sub01_visionSec ul > li.list1 { font-size: 32px; }
    section.sub01_visionSec ul > li.list1 br { display: block; }
    section.sub01_visionSec ul > li.list2 { font-size: 20px; }
    section.sub01_visionSec ul > li.list3 { font-size: 18px; }
}
@media screen and (max-width: 500px) {
    section.sub01_visionSec ul { gap: 15px; }
    section.sub01_visionSec ul > li.list1 { font-size: 26px; }
    section.sub01_visionSec ul > li.list2 { font-size: 16px; }
    section.sub01_visionSec ul > li.list3 { font-size: 14px; }
}

/* ======= sub04_1 수정 ======= */
/* @sub2_sec1@ */
.sub04_1 .sub2_sec1 { padding: 100px 0; }
.sub04_1 .sub2_sec1 .text_div { text-align: center; margin-bottom: 50px; }
.sub04_1 .sub2_sec1 .text_div .text_1 { font-size: 52px; font-weight: 700; line-height: 1.5; }
.sub04_1 .sub2_sec1 .text_div .text_1 b { color: #CF2E41; }
.sub04_1 .sub2_sec1 .text_div .text_2 { font-size: 22px; font-weight: 700; margin: 30px 0; }
.sub04_1 .sub2_sec1 .text_div .text_3 { font-size: 22px; color: #7F7F7F; line-height: 1.5; }
.sub04_1 .sub2_sec1 .text_div .text_3 b { color: #CF2E41; font-weight: 700; }
.sub04_1 .sub2_sec1 ul { width: calc(100% + 10px); margin-left: -5px; display: flex; flex-wrap: wrap; }
.sub04_1 .sub2_sec1 ul li { padding: 10px; width: calc(100%/3); text-align: center; }
.sub04_1 .sub2_sec1 ul li .item {  }
.sub04_1 .sub2_sec1 ul li .item .red_list_img { width: 100%; }
.sub04_1 .sub2_sec1 ul li .item .imgBox { height: 252px; background: #7f7f7f; }
.sub04_1 .sub2_sec1 ul li .item .redBox { font-size: 18px; padding: 15px 0; background-color: #CF2E41; font-weight: 700; color: #fff; }
.sub04_1 .sub2_sec1 ul li .item .grayBox { padding: 15px 0; font-size: 16px;  font-weight: 500; background-color: #F7F7F7; border-bottom: 1px solid #E4E4E4; border-top: 1px solid #E4E4E4;}

.sub04_1 .sub2_sec1 ul li .item .grayBox.whiteBox { background-color: #fff; }
/* .sub04_1 .sub2_sec1 ul li .item .grayBox:nth-child(4) { background-color: #F7F7F7; } */

/* .sub04_1 .sub2_sec1 ul li.red_list .item .imgBox2 { height: 312px; background-color: #7F7F7F; } */
.sub04_1 .sub2_sec1 ul li.red_list .item .red_box { margin-top: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.sub04_1 .sub2_sec1 ul li.red_list .item .red_text_1 { font-size: 18px; font-weight: 700; margin-bottom: 15px; }
.sub04_1 .sub2_sec1 ul li.red_list .item .red_text_2 { line-height: 1.6; }

.sub04_1 .sub2_sec1 ul li .item1 .imgBox { background: url('../img/sub/sub2_sec1_img1.jpg') no-repeat center / cover; }
.sub04_1 .sub2_sec1 ul li .item2 .imgBox { background: url('../img/sub/sub2_sec1_img2.jpg') no-repeat center / cover; }
.sub04_1 .sub2_sec1 ul li .item3 .imgBox { background: url('../img/sub/sub2_sec1_img3.jpg') no-repeat center / cover; }
.sub04_1 .sub2_sec1 ul li .item4 .imgBox { background: url('../img/sub/sub2_sec1_img4.jpg') no-repeat center / cover; }
.sub04_1 .sub2_sec1 ul li .item5 .imgBox { background: url('../img/sub/sub2_sec1_img5.jpg') no-repeat center / cover; }
/* .sub04_1 .sub2_sec1 ul li.red_list .item .imgBox2 { background: url('../img/sub/sub2_sec1_img6.jpg') no-repeat center / cover; } */

@media screen and (max-width: 1250px) {
    .sub04_1 .sub2_sec1 .text_div .text_1 { font-size: 42px; }
    .sub04_1 .sub2_sec1 .text_div .text_2 { font-size: 18px; margin: 15px 0; }
    .sub04_1 .sub2_sec1 .text_div .text_3 { font-size: 18px; }
    .sub04_1 .sub2_sec1 ul li .item .redBox { font-size: 16px; }
    .sub04_1 .sub2_sec1 ul li .item .imgBox { height: 20vw; }
    .sub04_1 .sub2_sec1 .text_div { margin-bottom: 20px; }
}
@media screen and (max-width: 950px) {
    .sub04_1 .sub2_sec1 ul li { width: calc(100%/2); }
    .sub04_1 .sub2_sec1 ul li .item .red_list_img { width: 80%; }
}
@media screen and (max-width: 650px) {
    .sub04_1 .sub2_sec1 .text_div .text_1 { font-size: 32px; }
    .sub04_1 .sub2_sec1 .text_div .text_2 { font-size: 16px; }
    .sub04_1 .sub2_sec1 .text_div .text_3 { font-size: 14px; }
    .sub04_1 .sub2_sec1 ul li .item .redBox { font-size: 14px; }
    .sub04_1 .sub2_sec1 ul li .item .grayBox { font-size: 14px; }
    .sub04_1 .sub2_sec1 ul li.red_list .item .red_text_2 { font-size: 13px; }
    .sub04_1 .sub2_sec1 ul li .item .red_list_img { width: 100%; }
    .sub04_1 .sub2_sec1 ul li.red_list .item .red_box { margin-top: 15px; }
}
@media screen and (max-width: 500px) {
    .sub04_1 .sub2_sec1 ul li { width: calc(100%/1); }
    .sub04_1 .sub2_sec1 ul li .item .imgBox { height: 54vw; }
 
}

/* @sub2_sec2@ */
.sub04_1 .sub2_sec2 { padding: 100px 0; } 
.sub04_1 .sub2_sec2 .text_1 { font-size: 52px; font-weight: 700; text-align: center; margin-bottom: 70px; }
.sub04_1 .sub2_sec2 ul { display: flex; flex-direction: column; gap: 40px; }
.sub04_1 .sub2_sec2 ul li {  display: flex; align-items: center; justify-content: center; gap: 50px; }
.sub04_1 .sub2_sec2 ul li.stick { padding: 0 10px; width: 100%; height: 1px; background-color: #e4e4e4; }
.sub04_1 .sub2_sec2 ul li .content_box { max-width: 700px; width: 100%; height: 400px; background-color: palegoldenrod; border-radius: 10px; overflow: hidden; }
/* .sub04_1 .sub2_sec2 ul li .insta_img { max-width: 100%; } */
.sub04_1 .sub2_sec2 ul li .text_box {  }
/* .sub04_1 .sub2_sec2 ul li .text_box .title_img { max-width: 100%; } */
.sub04_1 .sub2_sec2 ul li .text_box .box1 { margin: 10px 0 40px; font-size: 22px; font-weight: 700; padding: 30px; background-color: #F7F7F7; line-height: 1.5; }
.sub04_1 .sub2_sec2 ul li .text_box .box2 { display: flex; align-items: center; gap: 15px; }
.sub04_1 .sub2_sec2 ul li .text_box .box2 a { display: flex; }
.sub04_1 .sub2_sec2 ul li .text_box .box2  .sns_icon {  }
.sub04_1 .sub2_sec2 ul li .text_box .box2 .box2_text { font-size: 18px; font-weight: 700; line-height: 1.5; }
.sub04_1 .sub2_sec2 ul li .text_box .box2 .box2_text .blue { font-size: 16px; color: #0C8CE9; font-weight: 500; }
.sub04_1 .sub2_sec1 .text_div .text_3 .moBr { display: none; }
@media screen and (max-width: 1250px) {
    .sub04_1 .sub2_sec2 .text_1 { font-size: 42px; margin-bottom: 40px; }
    .sub04_1 .sub2_sec2 ul li { flex-direction: column; }
    .sub04_1 .sub2_sec2 ul li .text_box .box1 { font-size: 20px; text-align: center; }
    .sub04_1 .sub2_sec2 ul li .text_box .box2 { justify-content: center; }
}
@media screen and (max-width: 850px) {
    .sub04_1 .sub2_sec2 ul li .insta_img { width: 100%; }
}
@media screen and (max-width: 650px) {
    .sub04_1 .sub2_sec1 { padding: 13vw 0; }
    .sub04_1 .sub2_sec2 { padding: 13vw 0; }
    .sub04_1 .sub2_sec2 .text_1 { font-size: 32px; }
    .sub04_1 .sub2_sec2 ul li { gap: 20px; }
    .sub04_1 .sub2_sec2 ul li .text_box .box1 { font-size: 16px; padding: 20px; }
    .sub04_1 .sub2_sec2 ul li .content_box { height: 51vw; }
    .sub04_1 .sub2_sec2 ul li .text_box .title_img { max-width: 100%; }
    .sub04_1 .sub2_sec1 .text_div .text_3 .moBr { display: block; }
}
@media screen and (max-width: 500px) {
    .sub04_1 .sub2_sec2 .text_1 { font-size: 6.2vw; margin-bottom: 20px; }
    .sub04_1 .sub2_sec1 .text_div .text_1 { font-size: 26px; }
    .sub04_1 .sub2_sec2 ul li .text_box .box2 .box2_text { font-size: 14px; }
    .sub04_1 .sub2_sec2 ul li .text_box .box1 { margin: 10px 0 20px; }
    .sub04_1 .sub2_sec2 ul li .text_box .box2 .sns_icon { width: 40px; }
}

/* @valueSec@ */
section.valueSec { padding: 100px 0; font-weight: 500; }
section.valueSec .value_title_small { font-size: 24px; font-weight: 500; text-align: center; }
section.valueSec .value_title_big { margin: 10px 0 100px; font-size: 32px; font-weight: 700; text-align: center; }
section.valueSec ul { display: flex;  justify-content: center; flex-direction: column; gap: 50px; }
section.valueSec ul > li { display: flex; justify-content: center; align-items: center; }
section.valueSec ul > li .box { width: calc(100%/2);  }
section.valueSec ul > li.change .box1 { order: 2; }
section.valueSec ul > li.change .box2 { order: 1; }
section.valueSec ul > li .box1 { height: 400px; border-radius: 10px; color: #fff; text-align: center; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
section.valueSec ul > li .box1 { background: url('../img/sub/valueSec/value_img1.jpg') no-repeat center / cover; }
section.valueSec ul > li .box1 { background: url('../img/sub/valueSec/value_img2.jpg') no-repeat center / cover; }
section.valueSec ul > li .box1 { background: url('../img/sub/valueSec/value_img3.jpg') no-repeat center / cover; }
section.valueSec ul > li .box1 { background: url('../img/sub/valueSec/value_img4.jpg') no-repeat center / cover; }
section.valueSec ul > li .box1 .text_num { font-size: 70px; font-weight: 700; }
section.valueSec ul > li .box1 .text_1 { font-size: 34px; font-weight: 700; }
section.valueSec ul > li .box1 .text_1.text_1_1 { font-size: 20px; }
section.valueSec ul > li .box2 { text-align: center; }
section.valueSec ul > li .box2 .text_2 { font-size: 22px; line-height: 1.5; margin-bottom: 20px; }
section.valueSec ul > li .box2 .hash_div { display: flex; justify-content: center; gap: 10px; }
section.valueSec ul > li .box2 .hash_text { padding: 10px 20px; background-color: #BD2F47; color: #fff; border-radius: 10px; }

@media screen and (max-width: 1250px) {
    section.valueSec ul > li .box1 { height: 32vw; }
    section.valueSec ul > li .box1 .text_num { font-size: 64px; }
    section.valueSec ul > li .box1 .text_1 { font-size: 28px; }
    section.valueSec ul > li .box1 .text_1.text_1_1 { font-size: 18px; } 
    section.valueSec ul > li .box2 .text_2 { font-size: 20px; }
    section.valueSec .value_title_big { margin: 10px 0 50px; }
}
@media screen and (max-width: 1000px) {
    section.valueSec ul > li { flex-direction: column; gap: 20px; }
    section.valueSec ul > li.change .box1 { order: 1; }
    section.valueSec ul > li.change .box2 { order: 2; }
    section.valueSec ul > li .box { width: calc(100%/1); }
    section.valueSec ul > li .box1 { height: 54vw; }
    section.valueSec .value_title_big { margin: 10px 0 40px; }
}
@media screen and (max-width: 650px) {
    section.valueSec { padding: 13vw 0; }
    section.valueSec ul > li .box1 .text_num { font-size: 52px; }
    section.valueSec ul > li .box1 .text_1 { font-size: 24px; }
    section.valueSec ul > li .box1 .text_1.text_1_1 { font-size: 16px; }
    section.valueSec .value_title_big { margin: 10px 0 20px; font-size: 24px; }
    section.valueSec .value_title_small { font-size: 20px; }
    section.valueSec ul > li .box2 .text_2 {  font-size: 16px; word-break: keep-all; }
}

@media screen and (max-width: 500px) {
    section.valueSec ul > li .box1 .text_num { font-size: 42px; }
    section.valueSec ul > li .box1 .text_1 { font-size: 20px; }
    section.valueSec ul > li .box2 .hash_text { font-size: 14px; }
}
@media screen and (max-width: 450px) {
    section.valueSec ul > li .box2 .hash_text { padding: 10px 5px; font-size: 12px; }
    section.valueSec ul > li .box2 .hash_div { gap: 5px; }
    section.valueSec ul > li .box1 .text_1.text_1_1 { font-size: 12px; } 
}

/* floating_menu */
.floating_menu { position: fixed; right: 100px; bottom: 70px; z-index: 102; }
.floating_menu ul { padding: 15px; display: flex; flex-direction: column; gap: 10px;  border-radius: 100px; background-color: #fff; transition: 0.3s; }
.floating_menu ul.on { background-color: transparent; }
.floating_menu ul li {  }
.floating_menu ul li.f_list { opacity: 1; transition: all 0.3s; }
.floating_menu ul li.f_list.on { opacity: 0; display: none; }
.floating_menu ul li .item { text-align: center; }
.floating_menu ul li .item .f_icon { margin-bottom: 5px; }
.floating_menu ul li .item .f_text { font-size: 16px; font-weight: 500; }
.floating_menu ul li.toggleBtn {  }
.floating_menu ul li.toggleBtn .item2 { text-align: center; display: flex; justify-content: center; align-items: center; }
.floating_menu ul li.toggleBtn .item2 .close_icon {  display:  block;}
.floating_menu ul li.toggleBtn .item2 .close_icon.on { display: none; }
.floating_menu ul li.toggleBtn .item2 .open_icon {  display:  block; }
.floating_menu ul li.toggleBtn .item2 .open_icon.on { display: none; }

@media screen and (max-width: 1250px) {
    .floating_menu { right: 50px; bottom: 40px; }
    .floating_menu ul li .item .f_icon { width: 40px; }
    .floating_menu ul li.toggleBtn .item2 .close_icon { width: 40px; }
    .floating_menu ul li.toggleBtn .item2 .open_icon { width: 40px; }
    .floating_menu ul li .item .f_text { font-size: 14px; }
}
@media screen and (max-width: 650px) {
    .floating_menu { padding: ; right: 20px; bottom: 40px; }
    .floating_menu ul { padding: 15px 5px; }
    .floating_menu ul li .item .f_icon { width: 32px; }
    .floating_menu ul li.toggleBtn .item2 .close_icon { width: 32px; } 
    .floating_menu ul li .item .f_text { font-size: 12px; }
}

/* ======= sub01_1 수정 ======= */
/* about_div */
.sub01_1 .about_div { padding-top: 100px; text-align: center; }
.sub01_1 .about_div .a_text_1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.sub01_1 .about_div .a_text_2 { font-size: 24px; line-height: 1.5; }

@media screen and (max-width: 1250px) {
    .sub01_1 .about_div .a_text_1 { font-size: 24px; }
    .sub01_1 .about_div .a_text_2 { font-size: 20px; }
}
@media screen and (max-width: 650px) {
    .sub01_1 .about_div { padding-top: 13vw; }
    .sub01_1 .about_div .a_text_1 { font-size: 20px; }
    .sub01_1 .about_div .a_text_2 { font-size: 18px; }
}
@media screen and (max-width: 500px) {
    .sub01_1 .about_div { padding-top: 13vw; }
    .sub01_1 .about_div .a_text_1 { font-size: 5vw; }
    .sub01_1 .about_div .a_text_2 { font-size: 4vw; }
}

/* 1015 수정*/
.sub02 .subBox { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.sub02 .subContent.subContent2 { max-width: 610px; width: 100%; margin-left: 100px; }

@media screen and (max-width: 500px) {
    .sub02 .subContent.subContent2 { text-align: center; max-width: unset; width: 100%; margin-left: unset; }
}

section.caseSec .case_div .case_ul li .answer_box .q_img { width: 260px; aspect-ratio: 13/9; border-radius: 10px; }

@media screen and (max-width: 1250px) {
    section.caseSec .case_div .case_ul li .answer_box .q_img { width: 200px; }
}
@media screen and (max-width: 800px) {
    section.caseSec .case_div .case_ul li .answer_box { flex-direction: column; align-items: flex-start; gap: 5vw; }
}
@media screen and (max-width: 500px) {
    section.caseSec .case_div .case_ul li .answer_box .q_img { width: 60%; }
}

.sub02_4 .allinoneSec .contentList { width: calc(100% + 10px); margin-left: -5px; display: flex; flex-wrap: wrap; }
.sub02_4 .allinoneSec .contentList > li { width: calc(100%/2);  padding: 5px; border: none; }
.sub02_4 .allinoneSec .contentList > li .item { height: 100%; padding: 40px 40px; background: #fff; border-radius: 20px; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.sub02_4 .allinoneSec .contentList .title { width: fit-content; text-align: center; color: #222; margin-bottom: 0; }
.sub02_4 .allinoneSec .contentList > li .item .c_box { display: flex; flex-direction: column ; gap: 10px; justify-content: center; align-items: flex-start; }
.sub02_4 .allinoneSec .contentList > li .item .content { display: flex; align-items: center; gap: 5px; color: #222; }
.sub02_4 .allinoneSec .contentList > li .item .check_icon { width: 24px; }
.sub02_4 .allinoneSec .contentList > li .item .c_logo { width: 100px; }

@media screen and (max-width: 650px) {
    .sub02_4 .allinoneSec .contentList > li .item .check_icon { width: 16px; }
    .sub02_4 .allinoneSec .contentList > li .item { padding: 20px; }
    .sub02_4 .allinoneSec .contentList > li .item .content { font-size: 14px; }
}
@media screen and (max-width: 500px) {
    .sub02_4 .allinoneSec .contentList  { max-width: 280px; width: 100%; margin: 30px auto 0; }
    .sub02_4 .allinoneSec .contentList > li { width: calc(100%/1); }
    .sub02_4 .allinoneSec .contentList .title { font-size: 20px; }
    .sub02_4 .allinoneSec .contentList > li .item .content { font-size: 16px; }
}