
/****************************************
메인 공통 
*****************************************/
.head { font-size: 1.5rem !important; color: #333 !important; font-weight: 500 !important; margin-bottom: 1rem !important; } 


@media screen and (max-width:480px){
 .head { font-size: 1.125rem !important; } 
 }
/****************************************
Main Visual
*****************************************/
.main-visual { width: 100%; height: 100vh; overflow: hidden; position: relative; } 
.swiper { width: 100%; height: 100%; } 
.swiper-slide { background-size: cover; background-position: center; position: relative; } 

/* 텍스트 영역 */
.slide-content { position: absolute; top: 50%; left: 13%; transform: translateY(-50%); color: #fff; opacity: 0; transform: translateY(30px); transition: all 0.6s ease; max-width: 700px; } 
.swiper-slide-active .slide-content { opacity: 1; transform: translateY(-50%); } 
.slide-content h1 { font-size: 4rem; font-weight: bold; line-height: 1.2; } 
.slide-content p { font-size: 1.2rem; margin-top: 10px; } 

/* 스크롤 표시 */
.scroll-indicator { position: absolute; left: 8%; bottom: 50px; display: flex; flex-direction: column; align-items: center; color: #fff; font-size: 0.8rem; } 
.scroll-indicator::before { content: ''; display: block; width: 4px; height: 20px; background: #fff; margin-bottom: 5px; border-radius: 2px; } 

/* 우측 네비게이션 */
.custom-nav { position: absolute; bottom: 40px; right: 40px; background: #fff; color: #000; padding: 12px 24px; border-radius: 12px; display: flex; flex-direction: column; gap: 8px; z-index: 10; } 
.custom-nav .title { font-weight: bold; font-size: 0.9rem; } 
.custom-nav button { background: none; border: none; font-size: 1rem; cursor: pointer; text-align: left; } 
.custom-nav button.active { color: #47b69d; font-weight: bold; } 

/* 반응형 */
@media (max-width: 1024px){
 .slide-content h1 { font-size: 3rem; } 
 .slide-content p { font-size: 1rem; } 
 }
@media (max-width: 768px){
 .slide-content { left: 5%; max-width: 90%; } 
 .slide-content h1 { font-size: 2.2rem; } 
 .btn-learn { font-size: 0.9rem; padding: 10px 16px; } 
 .custom-nav { bottom: 20px; right: 20px; padding: 10px 16px; } 
 }



/****************************************
intro-banner
*****************************************/
.intro-banner { position:relative; padding-top:60px } 
.intro-banner::before { content:''; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%); background: #9be9d7; width: 100%; height: 50%; display: block; top: 0; height: 600px; z-index: -1; position: absolute; background-repeat: no-repeat; background-size:cover; transition:.8s; } 
.intro-banner h2 { font-size:3rem; color: #1f3c78; text-align: center; margin:0 auto 60px; font-weight:bold; } 
.intro-banner h2 span { font-size:1.875rem; display:block; color:#333; margin-top:30px; } 
.intro-banner ul { display: flex; justify-content: center; gap: 5rem; height:500px; } 
.intro-banner li { height: 80%; background: #fff; padding: 28px; text-align: center; box-shadow: 2px 2px 10px rgb(0 0 0 / 20%); border: 1px solid #d1d1d1; border-radius: 8px; flex:1; max-width:360px; transition:all 0.2s ease-out } 
.intro-banner li img { max-width: 130px; } 
.intro-banner li:nth-of-type(1) { align-self:center; } 
.intro-banner li:nth-of-type(2) { align-self:flex-start; } 
.intro-banner li:nth-of-type(3) { align-self:flex-end; } 
.intro-banner li h4 { font-size: 1.875rem; text-align:center; margin:40px 0 30px; font-weight:bold; } 
.intro-banner li h4 span.or { color:#47b69d } 
.intro-banner li p { font-size:1.125rem; text-align:center; letter-spacing:-.5px; } 
.intro-banner li p span.or { color:#47b69d } 

 @-webkit-keyframes slide-in-bottom { 
 0% { -webkit-transform: translateY(400px); transform: translateY(400px); opacity: 0; } 
 100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; } 
 }
@keyframes slide-in-bottom { 
 0% { -webkit-transform: translateY(400px); transform: translateY(400px); opacity: 0; } 
 100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; } 
 }
@media screen and (max-width: 1280px){
 .intro-banner ul { padding:0 30px; gap: 1rem; } 
 .intro-banner li { flex:none; width:33%; height:75% } 
 .intro-banner li img { width:200px } 
 .intro-banner li h4 { margin:20px 0; font-size: 1.5rem; } 
 .intro-banner li p { font-size:1rem; } 
 }

@media screen and (max-width: 800px){
 .intro-banner { padding-top:40px; margin:0 auto 40px; } 
 .intro-banner h2 { font-size:2rem; } 
 .intro-banner h2 span { font-size: 1.275rem; margin-top: 15px; } 
 .intro-banner ul { flex-wrap: wrap; height: auto; gap: 0; } 
 .intro-banner li { max-width:100%; width:100%; display: flex; height:35%; margin-bottom: 15px; } 
 .intro-banner li img { width:130px; margin-right:30px; } 
 .intro-banner li h4 { margin: 0 0 20px 0; font-size: 1.25rem; text-align: left; } 
 .intro-banner li p { text-align: left; } 
 }
@media screen and (max-width:500px){
 .intro-banner li { height:30%; padding:25px 20px } 
 .intro-banner li img { width:90px; object-fit:contain; margin-right:20px; } 
 .intro-banner li p { font-size:.813rem } 
 .intro-banner h2 { font-size:1.5rem; margin:0 auto 30px } 
 .intro-banner h2 span { font-size:1rem; font-family: 'Noto Sans KR', sans-serif; } 
 .intro-banner li h4 { margin: 0 0 10px 0; font-size: 1.125rem; } 
 
 .intro-banner li.active:nth-of-type(1) { -webkit-animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.1s both; animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.1s both; opacity:1; } 
 .intro-banner li.active:nth-of-type(2) { -webkit-animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.2s both; animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.2s both; opacity:1; } 
 .intro-banner li.active:nth-of-type(3) { -webkit-animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.3s both; animation: slide-in-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.3s both; opacity:1; } 
 }
@media screen and (max-width:499px){
 .intro-banner li { padding: 10px 15px 10px; align-items: center; } 

 .intro-banner ul { height: auto; } 
 .intro-banner li { margin-bottom:8px } 
 .intro-banner::before { height: 40%; } 
 }



/****************************************
About
*****************************************/
.main-about { background: url("/the/me/design/img/main/bg.png"); background-position: left bottom; background-repeat: no-repeat } 
.main-about .inner1440 { display: flex; gap:10rem } 
.main-about .left_text { width: 100%; display: flex; gap: 5rem; justify-content: space-between; } 
.main-about .left_text .txt-box { width: 100%; } 
.main-about .left_text h2 { font-size: 3rem; color:#000; letter-spacing: -.7px; line-height: 1.3; font-weight: 600 } 
.main-about .left_text p { font-size: 20px; line-height: 1.5; font-weight: 500; color: #333; margin: 50px 0 12px } 
.main-about .left_text .main_logo { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; } 
.main-about .left_text .main_logo > div { width: 100%; height: 100%; } 
.main-about .left_text .main_logo img { width: 100%; height: 100%; object-fit: cover; vertical-align: top; } 
 

.main-about .left_text { position: relative; } 
.circle-deco-wrap { position: absolute; bottom: -85px; left: 38%; width: 400px; height: 400px; pointer-events: none; } 
.circle-filled { width: 100%; height: 100%; border-radius: 50%; background-color: #A4F2E1; /* 민트색 */
 position: absolute; z-index: -2; } 
.circle-outline { top: -108px; left: -158px; width: 100%; height: 100%; border-radius: 50%; border: 4px solid rgba(164, 242, 225, 0.6); position: absolute; z-index: -1; transform: scale(0.7); } 

@-webkit-keyframes rotating 
/* Safari and Chrome */ { 
 from { -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 
 to { -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } 
 }
@keyframes rotating { 
 from { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 
 to { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } 
 }

@media screen and (max-width: 1400px){
 .main-about .inner1440 { gap: 1rem; } 
 .main_txt { display: none; } 
 .main-about .left_text h2 { font-size: 40px; line-height: 50px; } 
 .main-about .right_text .box h2 { font-size: 1.8rem; } 
 .main-about .right_text .box p br { display: none; } 
 }
@media screen and (max-width: 1024px){
 .main-about { padding: 80px 0px; background: #fff } 
 .main-about .inner1440 { flex-direction: column; } 
 .main-about .left_text { width: 100%; } 
 .main-about .left_text h2 { font-size: 30px; line-height: 40px } 
 .main-about .left_text h2 span { display: block } 
 .main-about .left_text p { margin: 40px 0; font-size: 16px; word-break: keep-all; line-height: 25px } 
 .main-about .left_text p br { display: none } 
 .main-about .inner { display: flex; gap: 80px; flex-direction: column; } 
 .main-about .left_text .main_logo { gap:10px; align-items: center; justify-content: flex-start; max-height: 100%; } 
 .main-about .right_text { width: 100% } 
 .main-about .right_text .box h2 { font-size: 1.5rem; } 
 .main-about .right_text .box { width: 50%; padding: 25px 8px; text-align: center; } 
 .main-about .right_text .box p { word-break: keep-all; line-height: 25px } 
 .main-about .right_text .box p br { display: none } 
 }

@media screen and (max-width: 980px){
  .main-about .left_text { flex-direction: column; } 
  .circle-deco-wrap { position: absolute; top: 17%; right: 0; width: 300px; height: 300px; left: auto; pointer-events: none; } 
  .circle-outline { top: -107px; left: -104px; width: 100%; height: 100%; border-radius: 50%; border: 4px solid rgba(164, 242, 225, 0.6); position: absolute; z-index: -1; transform: scale(0.7); } 
}

@media screen and (max-width: 680px){
  .circle-deco-wrap{  top: 32%; right: 0; width: 200px; height: 200px;}
  .circle-outline{ top: -69px;left: -49px;}
}
@media screen and (max-width: 540px){
  .main-about .left_text h2 { font-size: 30px; line-height: 45px; } 
}
@media screen and (max-width: 480px){
  .main-about { font-size: 25px; line-height: 1.5; } 
  .main-about .right_text .box h2 { font-size: 1.125rem; } 
  .circle-deco-wrap{top: 48%;}
}
@media screen and (max-width: 375px){
  .circle-deco-wrap{top: 51%;}
}


/****************************************
Why choose us
*****************************************/
.main-choose { padding-bottom: 135px; background: #fafafa url(../../images/main/map_bg.png) no-repeat right bottom; position: relative } 
.main-choose .inner1440 { position: relative; z-index: 2 } 
.main-choose .inner1440:after { content: ''; display: block; clear: both } 
.main-choose .inner1440 > div { float: left; width: 50% } 
.main-choose .inner1440 > div.left { padding-top: 164px; } 
.main-choose .inner1440 > div .img { display: inline-block; position: relative; } 
.main-choose .inner1440 > div .img:before { content: ''; display: block; width: 550px; height: 550px; border-radius: 50%; /* background: #47b69d; */ background: #9be9d7; position: absolute; top: -36px; left: -52px; } 
.main-choose .inner1440 > div .img img { position: relative; z-index: 2; border-radius: 50%; width: 600px; } 
.main-choose .inner1440 > div .img i { position: absolute; bottom: 0; left: -105px; } 
.main-choose .inner1440 > div.right { padding-top: 330px; padding-left: 40px; } 
.main-choose .inner1440 > div.right div { padding-left: 40px } 
.main-choose .inner1440 > div.right div strong { display: block; line-height: 1.3; font-size: 50px; color: #47b69d; font-weight: 600; margin-bottom: 20px; position: relative } 
.main-choose .inner1440 > div.right div strong:before { content: ''; display: block; left: -40px; height: 360px; background: #dddddd; width: 1px; top: -340px; position: absolute; } 
.main-choose .inner1440 > div.right div strong:after { content: ''; display: block; left: -40px; height: 100%; background: #47b69d; width: 4px; top: 0; position: absolute; } 
.main-choose .inner1440 > div.right div span { font-size: 20px; line-height: 1.5; font-weight: 500; color: #333; margin: 50px 0 70px; } 
.main-choose .inner1440 > div.right div p { display: block; line-height: 2; font-size: 20px; font-weight: 400; letter-spacing: -0.5px; color: #565656; margin-top: 60px; } 
.main-choose .inner1440 > div.right div p em { color: #47b69d; font-weight: 500 } 
.main-choose .inner1440 > div.right div p i { color: #47b69d; padding-right: 1rem; } 
.main-choose .inner1440 > div .img i { transform: rotate(-45deg); transition: 1.2s; transition-delay: 0.4s; display: block; } 
.main-choose:before { transition: 2s; transition-delay: 2.6s } 

@media screen and (max-width: 1450px){
 .main-choose .inner1440 > div { float: none; width: 100% } 
 .main-choose .inner1440 > div.right { padding-top: 70px; text-align: center; padding-left: 0 } 
 .main-choose .inner1440 > div.right div { padding-left: 0 } 
 .main-choose .inner1440 > div.left { text-align: center } 
 .main-choose .inner1440 > div.right div p { text-align: left; } 
 }
@media screen and (max-width: 950px){
 .main-choose .inner1440 > div.right div strong { font-size: 30px; } 
 .main-choose .inner1440 > div.right div span { font-size: 16px; color: #281212 } 
 .main-choose .inner1440 > div.right div p, .main_con04 > div.left .txt p { font-size: 17px; line-height: 2; margin-top: 35px; } 
 .main-choose .inner1440 > div.left { padding-top: 80px; } 
 .main-choose:after { left: 0; margin-left: 0; width: 20px; } 
 .main-choose { overflow: hidden } 
 .main-choose .inner1440 > div.right div strong { margin-bottom: 12px; } 
 }
@media screen and (max-width: 860px){
 .main-choose .inner1440 > div .img i { left: -50px; } 
 .main-choose .inner1440 > div .img i img { width: 350px; } 
 }
@media screen and (max-width: 640px){
 .main-choose { padding-bottom: 70px; background-size: 80% auto } 
 .main-choose .inner1440 > div .img > img { width: 300px; } 
 .main-choose .inner1440 > div .img i img { width: 220px; } 
 .main-choose .inner1440 > div .img i { left: -20px; } 
 .main-choose .inner1440 > div .img:before { width: 100%; height: 100% } 
 }
@media screen and (max-width: 300px){
 .main-choose .inner1440 > div.right div strong, .main_con02 .tit strong { font-size: 24px; } 
 .main-choose .inner1440 > div.right div span { font-size: 14px; } 
 .main-choose .inner1440 > div.right div p br { display: none } 
 .main-choose .inner1440 > div.right div p { word-break: keep-all } 
 .main-choose .inner1440 > div .img > img { width: 220px } 
 .main-choose .inner1440 > div .img i img { width: 160px; } 
 .main-choose .inner1440 > div.right { padding-top: 35px; } 
 }



/****************************************
Great training
*****************************************/
.main-training { padding: 5rem 0; background: #9be9d7; } 
.main-training .top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10rem; } 
.main-training .top-text { flex: 1; min-width: 280px; } 
.main-training .top-text h2 { font-size: 3.8rem; color: #1f3c78; letter-spacing: -.7px; line-height: 1.3; font-weight: 600; } 
.main-training .top-text p { font-size: 20px; line-height: 1.5; font-weight: 500; color: #1f3c78; margin: 3rem 0 0 0; } 
.main-training .top-text .btn { display: inline-block; padding: 10px 24px; background: white; border-radius: 30px; border: 1px solid #ccc; text-decoration: none; color: #333; font-size: 14px; } 
.main-training .top-img { flex: 1; min-width: 280px; } 
.main-training .top-img img { width: 100%; border-radius: 10px; } 
.training { display: flex; flex-wrap: wrap; justify-content: space-between; margin-top: 60px; gap: 40px 20px; } 
.training-item { flex: 1 1 30%; text-align: center; } 
.training-item img { max-width: 400px; margin-bottom: 20px; border-radius: 30px; } 
.training-item h3 { font-size: 1.5rem; font-weight: 600; color: #1f3c78; margin-bottom: 10px; } 
.training-item p { font-size: 14px; color: #666; line-height: 1.5; } 
.training-item .training-btn { display: inline-block; transition: all .3s; font-size: 1.3rem; font-weight: 500; border-bottom: 2px solid #000; } 
.training-item .training-btn:hover { transform: translateX(30px); } 

@media screen and (max-width: 1180px){
 .main-training .top { gap: 1rem; } 
 }
@media screen and (max-width: 768px){
 .main-training .top { flex-direction: column; text-align: center; } 
 .training { flex-direction: column; align-items: center; } 
 .training-item { flex: none; width: 100%; } 
 .main-training .top-text h2 { font-size: 2.5rem; } 
 .main-training .top-text p { font-size: 16px; } 
 .main-training .top-img { max-width: 280px; } 
 }
 @media screen and (max-width: 480px){
 .training-item img { width: 100%; } 
 .training-item h3 { font-size: 1.3rem; } 
 .training-item .training-btn { font-size: 1.125rem; } 
 }



/****************************************
main-testimonial
*****************************************/
.main-testimonial .tit_cont h2 { font-size: 3rem; color: #000; letter-spacing: -.7px; line-height: 1.3; font-weight: 600; } 
.main-testimonial .tit_cont p { font-size: 20px; line-height: 1.5; font-weight: 500; color: #333; margin: 3rem 0 0 0; } 
.main-testimonial .tit_cont .btn_basic { margin-top:70px; } 
.main-testimonial .tit_cont { display:flex; justify-content:center; align-items:center; width:100%; height:100%; text-align:center; flex-direction:column; } 
.main-testimonial .img_cont { display: flex; margin-top: 6rem; } 
.main-testimonial .img_cont img { width: 20%; } 

@media screen and (max-width:1023px) { } 
@media screen and (max-width:768px){
 .main-testimonial .tit_cont h2 { font-size: 2.5rem; } 
 .main-testimonial .tit_cont p { font-size: 16px; } 
 }
@media screen and (max-width:480px){
 .main-testimonial .tit_cont h2 { font-size: 1.8rem; } 
 .main-testimonial .tit_cont .br-none { display: none; } 
 }

 
/****************************************
Our Recommend Course
*****************************************/
.main-recommend .inner1440{max-width: 1800px;}
.main-recommend .main-tit { margin-bottom: 80px; text-align: center; } 
.main-recommend .main-tit h3 { font-size: 3rem; color: #000; letter-spacing: -.7px; line-height: 1.3; font-weight: 600; } 
.main-recommend .main-tit p { line-height: 20px; color: #333; font-size: 20px; } 
.main-recommend { padding: 120px 0 !important; } 
.main-recommend.navy-bg { background-color: #fafafa; } 
.main-recommend .inner-icon-box ul { display: flex; justify-content: center; width: 100%; } 
.main-recommend .inner-icon-box li { display: flex; flex-direction: column; align-items: flex-start; width: -webkit-calc(100%/5); width: calc(100%/5); text-align: center; padding: 20px 35px; } 
.main-recommend .inner-icon-box li>.m-icon { display: inline-block; width: 58px; background-repeat: no-repeat; background-position: 0 0; } 
.main-recommend .inner-icon-box li strong { display: block; font-size: 1.8rem; font-weight: 600; text-align: left; } 
.main-recommend .inner-icon-box li p { line-height: 2.5; font-size: 20px; } 
.main-recommend .inner-icon-box li p i { color: #47b69d; padding-right: 1rem; } 
.main-recommend .inner-icon-box li .monthss { font-size: 1.125rem; color: #333; font-weight: 600; margin: 1.5rem 0; background: #f0f0f0; width: 100%; } 
.main-recommend.navy-bg .inner-icon-box li { border-right: 1px solid #cecece; } 
.main-recommend.navy-bg .inner-icon-box li:last-child { border-right: 0; } 
.main-recommend .inner-icon-box li>.m-icon { height: 55px; background-repeat: no-repeat; background-size: cover; } 
.main-recommend .inner-icon-box li:first-child>.m-icon n { width: 58px; } 
.main-recommend .inner-icon-box li:nth-child(2)>.m-icon { width: 60px; } 
.main-recommend .inner-icon-box li:last-child>.m-icon { width: 50px; } 
.main-recommend.navy-bg .inner-icon-box li p { opacity: .7; } 
.main-recommend.navy-bg .btn-box a.btn-wh:hover { background-color: #fff; color: #262e39; } 
.main-recommend .btn { text-align: center; } 
.main-recommend .btn-inline-box {width: 100%; margin-top: 3rem; display: flex; justify-content: center; } 
.main-recommend .btn-inline-box a { display: inline-block; border-radius: 30px; background: #47b69d; font-weight: 500; padding: 0 5px; width: 200px; height: 56px; line-height: 56px; color: #fff; font-size: 18px; } 
.main-recommend .btn-inline-box a:first-child { margin-right: 40px; } 
.main-recommend .btn-inline-box a:last-child { margin-right: 0px; } 

@media screen and (max-width:1640px){
  .main-recommend .inner-icon-box li strong{font-size: 1.3rem;}
  .main-recommend .inner-icon-box li{padding: 20px 22px;}
  .main-recommend .inner-icon-box li p{font-size: 17px;}
}
@media screen and (max-width:1440px){
 /* .main-recommend .inner-icon-box li strong { font-size: 1.7rem; }  */
 .main-recommend .inner-icon-box li p { font-size: 18px; } 
 }
@media screen and (max-width:1400px){
 .main-recommend .inner-icon-box ul { flex-wrap: wrap; justify-content: flex-start;} 
 .main-recommend .inner-icon-box li { width: calc(100% / 2); } 
 .main-recommend .inner-icon-box li:nth-child(2),
 .main-recommend .inner-icon-box li:nth-child(4){ border-right: 0; } 
 .main-recommend .inner-icon-box li:nth-child(3),
 .main-recommend .inner-icon-box li:nth-child(4),
 .main-recommend .inner-icon-box li:nth-child(5){ margin-top: 30px; } 
 .main-recommend .inner-icon-box li strong { font-size: 1.3rem; } 
 .main-recommend .inner-icon-box li strong .br-none { display: none; } 
 }
@media screen and (max-width:768px){
 .main-recommend .main-tit h3 { font-size: 2.2rem; } 
 .main-recommend .inner-icon-box li { width: 100%; } 
 .main-recommend .inner-icon-box li:nth-child(1),
 .main-recommend .inner-icon-box li:nth-child(3),
 .main-recommend .inner-icon-box li:nth-child(4){ border-right: 0; } 
 .main-recommend .inner-icon-box li { border-top: 1px solid #cecece;; } 
 .main-recommend .inner-icon-box li:first-child { border-top: 0; } 
 .main-recommend .inner-icon-box li strong { margin-top: 2rem; } 
 }
@media screen and (max-width:480px){
 .main-recommend .main-tit h3 { font-size: 1.6rem; } 
 .main-recommend .inner-icon-box li { padding: 16px 0; } 
 .main-recommend .btn-inline-box a { width: 170px; height: 46px; line-height: 46px; } 
 .main-recommend .btn-inline-box { margin-top: 1rem; margin-bottom: 1rem; } 
 }