/* 기본 세팅 */
* { margin: 0; padding: 0; box-sizing: border-box; } 

body { font-family: 'Gmarket Sans'; background: #fff; overscroll-behavior: none; color: #333; overflow-x: hidden; } 
.fwb { font-weight: 600; } 
.wbk { word-break: keep-all; } 
.ch { font-weight: bold; font-family: "Noto Sans KR", sans-serif; } 


 .mo-only { display: none; } 
 .tb-only { display: none; } 
 @media all and (max-width :1280px){
 .tb-only { display: block } 
 .tb-none { display: none; } 
 }


@media all and (max-width :767px){
 .pc-only { display: none; } 
 .mo-only { display: block; } 
 }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; z-index: 30; transition: all 0.5s; opacity: 1; padding: 35px 50px; background: #fff; color: #222; } 
.header.header_white { background: transparent; color: #fff; } 
.header.hidden { opacity: 0; } 

/*왼쪽*/
.header .left { position: relative; display: flex; gap: 14px; align-items: center; } 
.header_white .selectBox,
.header_white .selectBox .label,
.header_white .lang { color: #fff; border-color: #fff; } 
.header_white .selectBox .optionList { background: rgba(255, 255, 255, 0.2); color: #fff; } 

.selectBox * { box-sizing: border-box; } 
.selectBox { padding: 0px 20px 2px 20px; border-radius: 999px; border: 1px solid #222; cursor: pointer; display: flex; align-items: center; justify-content: center; height: 40px; } 
.selectBox .label { color: #222; background: transparent; cursor: pointer; font-size:18px; line-height: 18px; font-weight: bold; display: flex; align-items: center; gap: 10px; border: none; font-family: "Noto Sans KR", sans-serif; } 
.selectBox .label img { content: url('../image/common/list_arrow_bk.png'); } 
.header_white .selectBox .label img { filter: none !important; mix-blend-mode: normal !important; content: url('../image/common/list_arrow.png'); } 
.selectBox .optionList { background: rgba(0, 0, 0, 0.2); color: #222; position: absolute; top: 60px; left: 0; width: 100%; list-style-type: none; padding: 0; margin: 0; border-radius: 6px; overflow: hidden; max-height: 0; transition: .3s ease-in; z-index: 10; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); height: 0; } 

.selectBox.active .optionList { max-height: 500px; height: 240px; overflow-y: scroll; border: 1px solid #fff; padding: 7px 0; } 
.selectBox .optionList::-webkit-scrollbar { width: 6px; } 
.selectBox .optionList::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.4); } 
.selectBox .optionList::-webkit-scrollbar-thumb { background: #fff; border-radius: 45px; } 
.selectBox .optionList::-webkit-scrollbar-thumb:hover { background: #fff; } 

.selectBox .optionItem { border-bottom: 1px solid #fff; padding: 12px 15px 8px 12px; transition: .1s; margin: 0 16px; } 
.selectBox .optionItem a { display: block; color: #fff; font-size: 18px; } 
.selectBox .optionItem:last-child { border-bottom: 0 none; } 
.lang { font-size: 18px; line-height: 18px; padding: 0px 20px 2px 20px; border-radius: 999px; border: 1px solid #222; cursor: pointer; display: flex; align-items: center; justify-content: center; height: 40px; font-weight:600; color: #222; font-family: "Noto Sans KR", sans-serif; } 

.logo { position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%); box-sizing: border-box; } 
.logo img { content: url("../image/common/logo.png"); transition: 0.3s; height: 56px; } 
.header_white .logo img { content: url("../image/common/logo_wh.png"); } 

@media all and (max-width : 1280px){
 .header { padding:30px 20px; display: flex; justify-content: left; gap:20px } 
.header .left { gap: 8px; } 
.selectBox .optionItem { padding: 8px 12px; } 

.logo { position: static; transform: translate(0%, 0%); } 
 }
@media all and (max-width : 767px){
 .header .left { position: static } 
.selectBox { position: relative; } 
.selectBox .optionList { width: 200px; top:40px; } 

.selectBox,.lang { padding:0px 12px 2px 12px; height: 32px; } 
.lang,.selectBox .label { font-size: 16px; line-height: 16px; } 
.selectBox .label { gap: 4px; } 
.selectBox .label img { width: 16px; height: 16px; } 
.selectBox .optionItem { padding: 8px 0px 6px 12px; margin:0 8px } 
.selectBox .optionItem a { font-size: 16px; } 

.logo img { height:46px; } 
 }

@media all and (max-width : 480px){
 .header .left { gap: 4px; } 

.selectBox .optionItem a { font-size: 14px; line-height: 20px; } 
.selectBox,.lang { padding:0px 10px 1px 10px; height: 28px; } 

.selectBox .label img { width: 14px; height: 14px; } 
.lang,.selectBox .label { font-size: 14px; line-height: 14px; } 
.selectBox .optionList { width: 180px; } 
.logo img { height:28px; } 
 }


/* 기본 햄버거 스타일 */
.hamburger { position: relative; width: 30px; height: 24px; cursor: pointer; border: none; background: none; z-index: 60; } 
.hamburger .line { position: absolute; left: 0; width: 100%; height: 3px; background: #222; border-radius: 2px; transition: all 0.4s ease-in-out; } 
.hamburger .line:nth-child(1) { top: 0; } 
.hamburger .line:nth-child(2) { top: 50%; transform: translateY(-50%); /* 수직 중앙 정렬 */ } 
.hamburger .line:nth-child(3) { bottom: 0; } 
.header_white .hamburger .line { background: #fff; } 
/* Slide Menu */
.slide_menu { position: fixed; top: 0; right: -350px; width: 350px; height: 100%; background: #fff; color: #222; padding: 30px 30px 0 30px; transition: 0.5s; z-index: 40; border-left: 1px solid #ddd; overflow-y: auto; /* 세로 스크롤 허용 */
 -webkit-overflow-scrolling: touch; / } 

.slide_menu.open { right: 0; } 
.slide_menu ul { list-style: none; } 
.slide_menu li { padding: 0 0 14px 0; border-bottom: 1px solid #222; margin-top: 17px; } 
.slide_menu .logos { position: absolute; top: 40px; border: none; margin: 0; padding: 0; } 
.slide_menu .logos img { height: 46px; } 
.slide_menu ul .date { font-size: 22px; font-weight: lighter; margin-bottom: 36px; margin-top: 70px; border: none; } 
.slide_menu ul .date span { font-weight: normal; } 
.slide_menu a { color: #ff4500; font-size: 20px; font-weight: bold; } 

.hamburger2 { position: absolute; width: 30px; height: 24px; cursor: pointer; border: none; background: none; z-index: 60; right: 50px; top: 52px } 
.hamburger2 .line { position: absolute; left: 0; width: 100%; height: 3px; background: #222; border-radius: 2px; transition: all 0.4s ease-in-out; } 
.hamburger2 .line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: #222; } 
.hamburger2 .line:nth-child(2) { opacity: 0; } 
.hamburger2 .line:nth-child(3) { top: 50%; /* bottom 대신 top으로 기준을 통일 */
 transform: translateY(-50%) rotate(-45deg); background: #222; } 

@media all and (max-width : 1280px){
 .hamburger { position: absolute; right: 20px; } 
.slide_menu { padding: 30px 20px 0 20px; } 
.slide_menu .logos { top:30px } 
.hamburger2 { right: 20px; top: 42px; } 
.slide_menu ul .date { margin-bottom: 0px; margin-top: 60px; } 
 }

@media all and (max-width : 767px){
 .slide_menu ul .date { margin-top: 48px; } 
.hamburger2 { top:32px } 
 }
@media all and (max-width : 480px){
 .header { gap: 8px; padding: 20px 16px; } 
.hamburger { width: 24px; height: 18px; top: 24px; } 
.hamburger2 { top:22px } 

.slide_menu { padding: 20px 20px 0 20px; width: 100%; right:-480px } 
.slide_menu .logos { top:20px } 
.slide_menu .logos img { height: 30px; } 
.slide_menu ul .date { margin-top: 32px; font-size: 20px; } 
 }


/* Visual Container */
.visual_container { position: relative; width: 100%; height: 100vh; overflow: hidden; } 

.intro { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #e8e8e6; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 20; } 
.intro .top { text-align: center; position: absolute; top: 4% } 
.intro .title { font-size: 72px; color: #222; margin-bottom: 6px; font-family: "Noto Sans KR", sans-serif; } 
.intro p { color: #222; font-size: 36px; font-weight: lighter; } 
.intro p span { font-weight: normal; } 


.circle_wrap { position: relative; width: 100%; height: 100%; overflow: hidden; transform-origin: center center; /* scale 기준 */ } 
.circle { width: 100vw; /* 뷰포트 기준 고정 */
 height: 100vh; background: url('../image/main/visual_1.jpg') center/cover; clip-path: circle(0% at center); /* 처음엔 안 보임 */ } 

.bottom { position: absolute; bottom: 3.5%; display: flex; width: 100%; flex-direction: column; } 
.mouse { width: 36px; height: 60px; border: 4px solid #727069; border-radius: 20px; position: relative; margin: 0 auto 10px auto; z-index: 2; } 
.wheel { width: 4px; height: 12px; background: #e13911; border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); } 
.bottom .s_text { font-size: 24px; display: block; text-align: center; color: #727069;; } 

@media all and (max-width : 1680px){
 .intro .title { font-size: 54px; } 
.intro p { font-size: 24px; } 
.intro .top { top: 8%; } 
.bottom { bottom: 8%; } 
.bottom .s_text { font-size: 20px; } 
 }
@media all and (max-width : 1280px){
 .intro .title { font-size: 40px; } 
 .bottom .s_text { font-size: 18px; } 
 }
@media all and (max-width : 480px){
 .intro .title { font-size: 36px; } 
 .mouse { border: 2px solid #727069; width: 32px; height: 56px; } 
 }


/* Panels */
.visual_track { height: 100%; width: 300vw; display: flex; } 

.panel { flex: 0 0 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; background-size: cover; background-position: center; } 
.panel a { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; width: 100%; height: 100%; text-align: center; color: #fff; text-decoration: none; padding: 0 0 100px 0; box-sizing: border-box; } 
.panel .category { font-size: 36px; font-weight: bold; } 
.panel .visual_tit { font-family: "Noto Sans KR", sans-serif; font-size: 64px; line-height: 80px; font-weight: 300; margin-top: 10px; } 

.panel_1 { background-image: url('../image/main/visual_1.jpg'); } 
.panel_2 { background-image: url('../image/main/visual_2.jpg'); } 
.panel_3 { background-image: url('../image/main/visual_3.jpg'); } 
@media all and (max-width : 1280px){
 .panel .category { font-size: 32px; } 
.panel .visual_tit { font-size:56px; line-height: 64px; } 
 }

@media all and (max-width : 767px){
 .panel .category { font-size: 28px; } 
.panel .visual_tit { font-size: 38px; line-height: 56px; margin-top:6px; } 
 }

@media all and (max-width : 500px){
 .panel .category { font-size: 24px; } 
.panel .visual_tit { font-size: 30px; line-height: 46px; } 
 }
@media all and (max-width : 380px){
 .panel .category { font-size: 18px; } 
.panel .visual_tit { font-size: 24px; line-height: 30px; } 
 }
/* Content */
.cont { width: 100%; max-width: 1280px; margin: 0px auto; padding: 100px 0; } 
.txt_wrap .tit { font-size:26px; font-weight: bold; } 
.txt_wrap .txt { font-size:18px; font-family: "Noto Sans KR", sans-serif; } 
@media all and (max-width : 1280px){
 .cont { padding: 100px 20px; } 
 }
@media all and (max-width : 480px){
 .cont { padding: 80px 16px; } 
 }

.section1 { display: flex; flex-wrap: wrap; gap: 80px 30px; justify-content: space-between; } 
.section1>div { flex: 0 0 calc((100% - 60px) / 3); height: 460px; position: relative; border-radius: 30px; transition: transform 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } 
.section1 > div:hover { transform: translateY(-15px); } 

.section1 .cont1_1 { background: url('../image/main/cont1_1.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_2 { background: url('../image/main/cont1_2.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_3 { background: url('../image/main/cont1_3.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_4 { background: url('../image/main/cont1_4.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_5 { background: url('../image/main/cont1_5.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_6 { background: url('../image/main/cont1_6.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 

.section1 { display: flex; flex-wrap: wrap; gap: 80px 30px; justify-content: space-between; } 
.section1>div { flex: 0 0 calc((100% - 60px) / 3); height: 460px; position: relative; border-radius: 30px; transition: transform 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } 
.section1 > div:hover { transform: translateY(-15px); } 

.section1 .cont1_1 { background: url('../image/main/cont1_1.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_2 { background: url('../image/main/cont1_2.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_3 { background: url('../image/main/cont1_3.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_4 { background: url('../image/main/cont1_4.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_5 { background: url('../image/main/cont1_5.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 
.section1 .cont1_6 { background: url('../image/main/cont1_6.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; } 

.section1 .txt_wrap { position: absolute; bottom: 0; left: 0; width: 100%; color: #fff; padding:76px 20px 30px 20px; box-sizing: border-box; z-index: 2; transition: color 0.6s ease; border-radius: 0 0 30px 30px; } 
.section1 .txt_wrap .tit { margin-bottom: 8px; } 
.section1 .txt_wrap::after { content: ''; position: absolute; top: 1px; left: 0; width: 100%; height: 100%; background: url('../image/main/cont1_bg.png') no-repeat top center / cover; transition: filter 0.4s ease; z-index: -1; border-radius: 0 0 30px 30px; } 
.section1 > div:hover .txt_wrap { color: #e13911; } 
.section1 > div:hover .txt_wrap::after { filter: invert(93%) sepia(52%) saturate(0%) hue-rotate(320deg) brightness(112%) contrast(101%); } 


@media all and (max-width : 1280px){
 .section1 { display: flex; flex-wrap: wrap; gap: 80px 20px; } 
 .section1>div { flex: 0 0 calc((100% - 40px) / 2); } 
 }


.section1 .tb-only { display: none; } 
@media (max-width: 824px) and (min-width: 768px){
 .section1 .tb-only { display: block; } 
 .section1 .txt_wrap{height: 222px;}
 }

@media all and (max-width:767px){
 .section1 { flex-wrap: wrap; gap: 40px 0; } 
.section1>div { flex: 0 0 100%; } 
.section1 .txt_wrap{height: auto;  padding:76px 40px 40px 40px; }
 }

@media all and (max-width:480px){
 .section1 { gap: 24px 0; } 
 .section1 .txt_wrap{padding:66px 20px 20px 20px; }
 }

/**/

.banner { background: url('../image/main/banner.jpg') no-repeat center / cover; padding: 136px 0; text-align: center; } 
.banner a { font-family: "Noto Sans KR", sans-serif; font-size: 60px; line-height: 80px; color: #fff; font-weight: 300; } 
@media all and (max-width : 1024px){
 .banner { padding: 80px 0; } 
.banner a { font-size: 48px; line-height: 64px; } 
 }
@media all and (max-width : 767px){
 .banner { padding: 60px 0; } 
.banner a { font-size: 42px; line-height: 60px; } 
 }

@media all and (max-width : 480px){
 .banner { padding: 60px 0 } 
.banner a { font-size: 36px; line-height: 52px; } 
 }
@media all and (max-width : 344px){
 .banner a { font-size: 28px; line-height: 44px; } 
 }
/**/

.section2 * { font-family: "Noto Sans KR", sans-serif; } 
.section2 { background: #f0f0ef; } 
.section2 .tit.ccolor { color: #e13911; text-align: center; margin-bottom: 32px; } 
@media all and (max-width : 480px){
 .section2 .tit.ccolor { margin-bottom: 26px; } 
 }
.cont2_flex { display: flex; justify-content: space-between; gap:24px; align-items: flex-start; } 
.cont2_flex>div { flex: 1 } 

.cont2_flex .cont2_box { border-radius: 30px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding:12px 28px 32px 28px; } 
.cont2_box>.cont2 { padding: 24px 0; border-bottom: 1px solid #666; } 
.cont2_box>.cont2.no_line { border-bottom: none; } 
.cont2_more { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } 

.cont2_tit { cursor: pointer; position: relative; font-weight: bold; color: #666; transition: color 0.3s ease; } 
.cont2_tit.cont2_active { color: #df2d02; } 
.cont2_more a { font-size: 16px; color: #555; display: block; width: 100%; height: 100%; padding: 12px 0 0 0; box-sizing: border-box; } 
.cont2_tit::after { content: ''; position: absolute; right: 0; top: 4px; background: url('../image/main/cont2_plus.jpg') no-repeat center / cover; width: 18px; height: 18px; } 
.cont2_tit.cont2_active::after { content: ""; background: url('../image/main/cont2_close.jpg') no-repeat center / cover; width: 18px; height: 18px; } 
.cont2_tit.cont2_active { color: #df2d02; } 
.cont2_flex .cont2_box .small { font-size: 14px; color: #e13911; } 
.cont2_flex .cont2_box .small img { width: 14px; padding-left: 4px; } 

.cont2_flex .box1 { background: url('../image/main/cont2_bg.jpg') no-repeat center / cover; } 
.cont2_flex .box2 { background: url('../image/main/cont2_bg2.jpg') no-repeat center / cover; } 
.cont2_flex .box3 { background: url('../image/main/cont2_bg3.jpg') no-repeat center / cover; } 
.cont2_flex .box4 { background: url('../image/main/cont2_bg4.jpg') no-repeat center / cover; } 
.cont2_flex .box5 { background: url('../image/main/cont2_bg5.jpg') no-repeat center / cover; } 
.cont2_flex .box6 { background: url('../image/main/cont2_bg6.jpg') no-repeat center / cover; } 
.cont2_flex .box7 { background: url('../image/main/cont2_bg7.jpg') no-repeat center / cover; } 
.cont2_flex .box8 { background: url('../image/main/cont2_bg8.jpg') no-repeat center / cover; } 



.cont2_flex #conts2 { position: relative; height: 471px; width: 100%; } 
.cont2_flex .img_box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 30px; opacity: 0; transition: opacity 0.4s ease; z-index: 1; } 
.cont2_flex .img_box.active { opacity: 1; z-index: 2; } 


.cont2_flex .img_box .tit { width: 100%; height: 100%; background:rgba(103,121,191,0.6); position: absolute; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 30px; opacity: 0; transition: 0.4s ease-out; font-size: 22px; } 
.cont2_flex .img_box:hover .tit { opacity: 100%; } 

@media all and (max-width : 1280px){
 .cont2_tit { word-break: keep-all; padding-right: 20px; } 
 }

@media all and (max-width : 1024px){
 .cont2_flex { flex-wrap: wrap-reverse; gap: 40px; } 
.cont2_flex>div { flex: 0 0 100%; } 
.cont2_flex #conts2 { height: 360px; width: 100%; } 
 .cont2_flex .cont2_box { height: auto !important; min-height: auto !important; } 
 }


@media all and (max-width : 480px){
 .cont2_flex { gap: 24px; } 
 .cont2_flex #conts2 { display: none; } 
 }


/**/
.section3.cont { padding-bottom: 200px !important; } 
.section3 .txt_wrap { position: relative; } 
.section3 .tit.ccolor { color: #e13911; text-align: center; } 
.section3 .top { position: relative; margin-bottom: 32px; } 
.section3 .small { position: absolute; right: 0; top: 0%; font-size: 14px; color: #e13911; font-family: "Noto Sans KR", sans-serif; border: 1px solid #e13911; border-radius: 999px; padding: 0px 12px; display: flex; align-items: center; height: 28px; } 
@media (max-width: 480px){
 .section3 .top { margin-bottom: 26px; } 
 }
.section3 .small img { width: 14px; padding-left: 4px; } 

/* Swiper 컨테이너 */
.s3-swiper { width: 100%; max-width: 1280px; } 

/* 슬라이드 내부 이미지 영역 */
.section3 .img { width: 100%; height: 50%; flex-shrink: 0; } 

.section3 .swiper-slide01 .img { background: url('../image/main/cont3_1.jpg') no-repeat center/cover; } 
.section3 .swiper-slide02 .img { background: url('../image/main/cont3_2.jpg') no-repeat center/cover; } 
.section3 .swiper-slide03 .img { background: url('../image/main/cont3_3.jpg') no-repeat center/cover; } 
.section3 .swiper-slide04 .img { background: url('../image/main/cont3_4.jpg') no-repeat center/cover; } 
.section3 .swiper-slide05 .img { background: url('../image/main/cont3_5.jpg') no-repeat center/cover; } 

.s3-swiper .swiper-wrapper { padding: 22px 0; } 
.s3-swiper .swiper-slide { box-sizing: border-box; height: 400px; display: flex; flex-direction: column; align-items: flex-end; border-radius: 30px; border: 1px solid #727069; overflow: hidden; transition: margin-top 0.6s; } 
.s3-swiper .swiper-slide .text_wrap { background: #fff; width: 100%; height: 50%; padding: 20px; } 
.s3-swiper .swiper-slide .text_wrap .text1 { font-family: "Noto Sans KR", sans-serif; font-size: 20px; word-break: keep-all; font-weight: 600; color: #0f0f0f; margin-bottom: 10px; } 
.s3-swiper .swiper-slide .text_wrap .text2 { font-family: "Noto Sans KR", sans-serif; font-size: 18px; word-break: keep-all; color: #0f0f0f; } 

.s3-swiper .swiper-slide-active { margin-top: -20px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } 
.btnbox { position: absolute; bottom: -76px; left: 50%; transform: translateX(-50%); } 
.s3-btn-prev,
.s3-btn-next { background: none !important; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; cursor: pointer; width: 54px !important; height: 54px !important; display: flex; align-items: center; justify-content: center; } 
.swiper-button-next:after,
.swiper-button-prev:after { display: none !important; content: none !important; } 
/* 왼쪽(prev) 버튼 */
.s3-btn-prev { left: -80px !important; } 
.s3-btn-prev::before { content: ''; display: block; width: 100%; height: 100%; background: url('../image/main/swiper_prev.png') no-repeat center / contain; } 
/* 오른쪽(next) 버튼 */
.s3-btn-next { right: -80px !important; } 
.s3-btn-next::before { content: ''; display: block; width: 100%; height: 100%; background: url('../image/main/swiper_next.png') no-repeat center / contain; } 

@media (max-width: 767px){
 .btnbox { bottom: -72px; } 
.s3-swiper .swiper-wrapper { padding: 0px; } 
.section3.cont { padding-bottom: 172px !important; } 
 .s3-swiper .swiper-slide:nth-child(odd),
 .s3-swiper .swiper-slide:nth-child(even),
 .s3-swiper .swiper-slide-active { margin-top: 0 !important; } 
 .section3 .pc-only { display: block; } 
 }
@media (max-width: 480px){
 .section3 .pc-only { display: none; } 
.section3.cont { padding-bottom: 140px !important; } 
.section3 .small { padding: 0px; height: 28px; width: 28px; justify-content: center; } 
.section3 .small img { padding-left: 0; } 
 }
/*footer*/

.footer { padding: 90px 0; background: #e8e8e6; } 
.footer .foot_logo { text-align: center; } 
.footer .foot_logo img { width: 340px } 
.footer .sns { margin: 28px auto; display: flex; align-items:center; justify-content: center; gap:20px } 
.footer .sns a { width: 70px; height: 70px; background: #fff; display: flex; align-items: center; justify-content: center; border-radius: 999px; } 

.footer .sns>:nth-child(1) img { width: 36px; } 
.footer .sns>:nth-child(2) img { width: 36px; } 
.footer .sns>:nth-child(3) img { width: 36px; } 
.footer .sns>:nth-child(4) img { width: 20px; } 


.footer .btn { display: flex; align-items: center; justify-content: center; gap: 20px; } 
.footer .btn a { display: flex; align-items: center; justify-content: center; border: 1px solid #363329; color: #363329; height: 50px; width: 190px; border-radius: 8px; transition: 0.4s ease-in-out; font-family: "Noto Sans KR", sans-serif; font-size: 18px; } 
.footer .btn a:hover { background: #727069; border: 1px solid #727069; color: #fff; } 
.footer .txt { font-size: 18px; text-align: center; margin-top: 24px; } 
@media all and (max-width : 767px){
 .footer { padding: 90px 20px } 
.footer .sns a { width: 56px; height: 56px; } 
.footer .sns>:nth-child(1) img { width: 28px; } 
.footer .sns>:nth-child(2) img { width: 28px; } 
.footer .sns>:nth-child(3) img { width: 28px; } 
.footer .sns>:nth-child(4) img { width: 18px; } 
.footer .btn { gap: 10px; } 
.footer .btn a { width: auto; text-align: center; word-break: keep-all; padding: 0 16px; font-size: 15px; } 
.footer .txt { font-size: 16px; } 
 }