body { background: #101012; } 



/*======================
 메인 비주얼 영역 
 ======================*/
#main_visual { width: 100%; height: 100vh; background: #fe21a4; position: relative; z-index: 0; overflow: hidden; } 
/* 클럽모션 */
#main_visual .club_lights { position:absolute; inset:0; pointer-events:none; z-index:1; mix-blend-mode: screen; opacity: 0.9; } 

#main_visual .visual_title,
#main_visual .main_gnb { position: relative; z-index: 3; } 

/* 빛 덩어리(스포트라이트) */
#main_visual .club_lights span { position:absolute; width: 70vmax; height: 70vmax; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); filter: blur(45px); opacity: 0.55; animation: drift 8s ease-in-out infinite, beat 0.55s ease-in-out infinite; will-change: transform, opacity; } 

/* 각 빛 */
/* 왼쪽 */
#main_visual .club_lights span:nth-child(1) { left: -10%; top: 22%; background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 60%); animation-duration: 9s, .55s; animation-delay: 0s, 0s; } 
#main_visual .club_lights span:nth-child(2) { left: 8%; top: 78%; background: radial-gradient(circle, rgba(0,255,255,0.9) 0%, rgba(0,255,255,0) 60%); animation-duration: 11s, .55s; animation-delay: -2s, -.1s; } 
#main_visual .club_lights span:nth-child(5) { left: -10%; top: 55%; background: radial-gradient(circle, rgba(120,255,120,0.9) 0%, rgba(120,255,120,0) 60%); animation-duration: 13s, .55s; animation-delay: -3s, -.15s; } 
/* 오른쪽 */
#main_visual .club_lights span:nth-child(3) { left: auto; right: -10%; top: 24%; background: radial-gradient(circle, rgba(255,255,0,0.9) 0%, rgba(255,255,0,0) 60%); animation-duration: 10s, .55s; animation-delay: -4s, -.2s; } 
#main_visual .club_lights span:nth-child(4) { left: auto; right: 8%; top: 80%; background: radial-gradient(circle, rgba(255,120,255,0.9) 0%, rgba(255,120,255,0) 60%); animation-duration: 12s, .55s; animation-delay: -6s, -.05s; } 
#main_visual .club_lights span:nth-child(6) { left: auto; right: -6%; top: 55%; background: radial-gradient(circle, rgba(120,170,255,0.9) 0%, rgba(120,170,255,0) 60%); animation-duration: 14s, .55s; animation-delay: -5s, -.25s; } 
#main_visual .club_lights span:nth-child(7) { left: auto; right: -40%; top: 80%; background: radial-gradient(circle, rgba(237, 255, 222, 0.9) 0%, rgba(255,120,255,0) 60%); animation-duration: 12s, .55s; animation-delay: -6s, -.05s; } 
#main_visual .club_lights span:nth-child(8) { left: auto; right: -30%; top: 55%; background: radial-gradient(circle, rgba(120, 255, 120, 0.9) 0%, rgba(120,170,255,0) 60%); animation-duration: 14s, .55s; animation-delay: -5s, -.25s; } 

@keyframes drift { 
 0% { transform: translate(-60%, -60%) scale(1.0); } 
 25% { transform: translate(-20%, -80%) scale(1.12); } 
 50% { transform: translate(-10%, -10%) scale(1.03); } 
 75% { transform: translate(-80%, -20%) scale(1.15); } 
 100% { transform: translate(-60%, -60%) scale(1.0); } 
 }

@keyframes beat { 0%, 100% { opacity: 0.50; } 
 50% { opacity: 1.0; } 
 }

/* 레이저 */
#main_visual .club_lights::before,
#main_visual .club_lights::after { content:""; position:absolute; inset:-25%; pointer-events:none; mix-blend-mode: screen; opacity: 0; /* 얇은 빔들이 여러줄로 반복 */
 background:
 repeating-linear-gradient(
 90deg,
 rgba(0,0,0,0) 0 38px,
 rgba(255,255,255,0.00) 38px 40px,
 rgba(0,255,255,0.22) 40px 41px,
 rgba(0,0,0,0) 41px 80px
 ); mix-blend-mode: screen; filter: blur(0.4px) drop-shadow(0 0 18px rgba(0,255,255,0.85)); animation: laserSweep 1.8s linear infinite; will-change: transform, opacity; } 

/* 레이저 2세트: 각도/색/속도 다르게 */
#main_visual .club_lights::before { transform: rotate(18deg) translateX(-35%); animation-duration: 1.9s; background:
 repeating-linear-gradient(
 90deg,
 rgba(0,0,0,0) 0 34px,
 rgba(0,255,255,0.55) 34px 36px,
 rgba(0,0,0,0) 36px 86px
 ); z-index: 2; } 

#main_visual .club_lights::after { transform: rotate(-22deg) translateX(35%); animation-duration: 2.3s; animation-delay: -0.6s; filter: blur(0.4px) drop-shadow(0 0 18px rgba(255,255,0,0.85)); background:
 repeating-linear-gradient(
 90deg,
 rgba(0,0,0,0) 0 46px,
 rgba(255,255,0,0.45) 46px 48px,
 rgba(0,0,0,0) 48px 110px
 ); z-index: 1; } 
@keyframes laserSweep { 
 0% { opacity: 0; transform: rotate(var(--ang, 18deg)) translateX(-45%); } 
 10% { opacity: .55; } 
 50% { opacity: .18; } 
 100% { opacity: 0; transform: rotate(var(--ang, 18deg)) translateX(45%); } 
 }
#main_visual .club_lights::before { --ang: 18deg; } 
#main_visual .club_lights::after { --ang:-22deg; } 

@media (prefers-reduced-motion: reduce){
 #main_visual .club_lights::before,
 #main_visual .club_lights::after { animation: none !important; opacity: .15; } 
 }

#main_visual .visual_inner { padding: 0 100px 50px; } 
#main_visual::after { content: ""; position: absolute; width: 32%; height: 80%; top: 50%; left: 50%; transform: translate(-50%, -50%); background: url(../../images/main/main_tiger02.png)no-repeat center/contain; pointer-events: none; z-index: 3; } 
#main_visual::before { content: ""; position: absolute; width: 500px; height: 200px; top: 42%; left: 50%; transform: translate(-50%, -50%); background: url(../../images/main/main_sungl.png)no-repeat center/contain; z-index: 1; transform: translate(-50%, -50%); animation: glassesUpDown 1.5s ease-in-out 0.8s both; will-change: transform; pointer-events: none; z-index: 4; } 
@keyframes glassesUpDown { 
 0% { transform: translate(-50%, -50%); } 
 45% { transform: translate(-50%, -80%); } 
 85% { transform: translate(-50%, -30%); } 
 100% { transform: translate(-50%, -50%); } 
 }

/* 비주얼 타이틀 */
#main_visual .visual_title h1 { padding-top: 50px; white-space: nowrap; word-break: keep-all; text-align: center; font-size: clamp(30px, 8.7vw, 170px); font-weight: 800; letter-spacing: 0.02em; transform: scaleY(1.4); font-family: "BBH Hegarty", sans-serif; } 
#main_visual .visual_title h1 span { font-family: inherit; font-weight: inherit; } 

#main_visual .visual_title .type span { display: inline-block; opacity: 0; transform: translateY(10px); animation: charIn 0.45s ease forwards; } 
@keyframes charIn { to { opacity: 1; transform: translateY(0); } 
 }

/* GNB 메뉴 리스트 */
#main_visual .main_gnb { padding-top: 50px; display: flex; justify-content: space-between; } 

#main_visual .main_gnb div ul { display: flex; flex-direction: column; gap: 20px; } 
#main_visual .main_gnb div ul li a { background: #000; width: 400px; height: 80px; display: block; align-items: center; display: flex; color: #fff; font-size: 34px; font-family: 'Paperozi', sans-serif; font-weight: 800; transform: translateX(0); opacity: 1; transition: transform 0.9s ease, opacity 0.6s ease; } 

#main_visual .main_gnb .left_menu a { justify-content: flex-end; padding-right: 50px; border-radius: 0 40px 40px 0; transform: translateX(-100%); opacity: 0; } 
#main_visual .main_gnb .right_menu a { border-radius: 40px 0 0 40px; padding-left: 50px; transform: translateX(100%); opacity: 0; } 


/* 오른쪽 메뉴만 */
#main_visual .main_gnb .right_menu li a { position: relative; overflow: hidden; border: 0; color: #fff; } 
#main_visual .main_gnb .right_menu li a::before { content:""; position:absolute; inset:0; background:radial-gradient(140px 60px at 20% 30%, rgba(255,255,255,.35), transparent 60%),linear-gradient(120deg, transparent 40%, rgba(255,255,255,.25), transparent 60%); opacity:.9; pointer-events:none; } 
#main_visual .main_gnb .right_menu li a::after { content:""; position:absolute; inset:-40%; background: linear-gradient(120deg,transparent 40%,rgba(255,255,255,.45),transparent 60%); transform: translateX(-120%); animation: vipSweep 3.5s infinite; } 

@keyframes vipSweep { 
 0% { transform: translateX(-120%); } 
 60% { transform: translateX(120%); } 
 100% { transform: translateX(120%); } 
 }

#main_visual .main_gnb .right_menu li:nth-child(1) a { background: linear-gradient(135deg,#0039ff, /* 하늘 민트 밝은 쪽 */#00c9e6 /* 살짝 딥한 민트 */); } 
#main_visual .main_gnb .right_menu li:nth-child(2) a { background: linear-gradient(135deg,#1a9a2c, /* 형광 연두 */#19d600 /* 살짝 눌러준 연두 */); } 
#main_visual .main_gnb .right_menu li:nth-child(3) a { background: linear-gradient(135deg,#ff7a00,#ff3500); } 



/********* AI 텍스트 효과 추가 **********/
/*======== 1번===== */
.visual_title { position: relative; z-index: 1; } 
/* 롤링 줄 */
.ai-rail { position: relative; margin-top: 16px; overflow: hidden;
/* 텍스트가 호랑이 뒤로 가는 느낌: 약간 어둡고 흐림 */
opacity: .85; filter: blur(.2px);
/* 좌/우 페이드(끝이 자연스럽게 사라짐) */
-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); } 
/* 실제 이동 트랙 */
.ai-track { display: flex; width: max-content; gap: 32px; will-change: transform; animation: aiMarquee 9s linear infinite; } 
.ai-track span { display: inline-block; white-space: nowrap; font-weight: 900; font-size: 40px; letter-spacing: .22em; text-transform: uppercase; color:#ffffff66; /* text-shadow: 0 10px 20px rgba(0,0,0,.15); */ } 

/* 무한 이동 */
@keyframes aiMarquee { 
from { transform: translateX(0); } 
to { transform: translateX(-50%); } 
}

@media (max-width: 768px){
.ai-rail { height: 28px; margin-top: 12px; } 
.ai-track span { font-size: 18px; letter-spacing: .18em; } 
}

/*======== 2번 ======= */
/* SVG가 H1 크기를 그대로 따라가게 */
.type { line-height: 1; }
.type-svg{
  width: 100%;
  height: auto;
  display: block;
}

/* 큰 타이틀 폰트(여기서 폰트/두께 맞추면 레퍼런스랑 더 가까워짐) */
.title-text{
 font-family: "BBH Hegarty", sans-serif;
  font-weight: 900;
  font-size: 160px; /* viewBox 기준 */
  letter-spacing: -0.03em;
}

/* 검정 큰 글자 */
.title-solid{
  fill: #000;
}

/* 마스크용 텍스트(색은 중요 X, 흰색이면 됨) */
.title-mask{
  fill: #fff;
}

/* 글자별 등장 애니메이션 (svg text/tspan도 CSS 애니메이션 적용됨) */
.type-ch{
  opacity: 0;
  animation: typeIn .65s ease forwards;
   font-family: "BBH Hegarty", sans-serif;
}

@keyframes typeIn{
  from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);  filter: blur(0px); }
}

/* AI 스트립 스타일 */
.ai-stripe{
  fill: #fff;
  font-family: "Montserrat", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  opacity: .95;

  /* 레퍼런스처럼 또렷한 느낌 */
  paint-order: stroke;
  stroke: rgba(0,0,0,.15);
  stroke-width: 2px;
}

/* 반응형: 너가 h1에 clamp 준 값이 있으면 그걸 우선 사용하고,
   필요하면 여기서 추가로 조절 */
@media (max-width: 768px){
  .title-text{ font-size: 160px; }
  .ai-stripe{ font-size: 12px; }
}


/******* AI 강조 *****/
#main_visual .main_gnb .right_menu li:nth-child(1) a .ai-glow { position: relative; display: inline-flex; gap: .02em; font-family: 'Paperozi', sans-serif; font-weight: 900; letter-spacing: 0.02em; padding: 0 4px; } 
#main_visual .main_gnb .right_menu li:nth-child(1) a .ai-glow span { display: inline-block; background: linear-gradient( 120deg, #ffffff 0%, #8be9ff 25%, #00e0ff 50%, #8be9ff 75%, #ffffff 100% ); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation:aiShine 2.5s ease-in-out infinite,aiWave 1.8s ease-in-out infinite; font-family: 'Paperozi', sans-serif; } 

#main_visual .main_gnb .right_menu li:nth-child(1) a .ai-glow span:nth-child(1) { animation-delay: 0s, 0s; } 
#main_visual .main_gnb .right_menu li:nth-child(1) a .ai-glow span:nth-child(2) { animation-delay: .18s, .18s; } 
#main_visual .main_gnb .right_menu li:nth-child(1) a .ai-glow::after { content:""; position:absolute; inset:-6px; background: radial-gradient(circle at 50% 50%,rgba(140,220,255,.45),transparent 70%); filter: blur(8px); opacity:.9; z-index:-1; pointer-events:none; } 

/* 반짝임 */
@keyframes aiShine { 
 0% { background-position:0% 50%; } 
 50% { background-position:100% 50%; } 
 100% { background-position:0% 50%; } 
 }

/* 물결 */
@keyframes aiWave { 0%, 100% { transform: translateY(0); } 
 50% { transform: translateY(-4px); } 
 }




#main_visual.loaded .left_menu a { transform: translateX(-10%); opacity: 1; } 
#main_visual.loaded .right_menu a { transform: translateX(10%); opacity: 1; } 

#main_visual.loaded .left_menu li:nth-child(1) a { transition-delay: 0.1s; } 
#main_visual.loaded .left_menu li:nth-child(2) a { transition-delay: 0.2s; } 
#main_visual.loaded .left_menu li:nth-child(3) a { transition-delay: 0.3s; } 

#main_visual.loaded .right_menu li:nth-child(1) a { transition-delay: 0.1s; } 
#main_visual.loaded .right_menu li:nth-child(2) a { transition-delay: 0.2s; } 
#main_visual.loaded .right_menu li:nth-child(3) a { transition-delay: 0.3s; } 

#main_visual .left_menu a:hover,
#main_visual .right_menu a:hover { transform: translateX(0px); transition-delay: .2s; transition: transform 0.3s ease, opacity 0.3s ease; } 


@media (prefers-reduced-motion: reduce){
 #main_visual .main_gnb a { transition: none !important; transform: translateX(0) !important; opacity: 1 !important; } 
 }

#main_visual .hawa_text { position: absolute; bottom: 0; padding: 0 0 50px 100px; } 
#main_visual .hawa_text h2 { font-size: 150px; font-family: "BBH Hegarty", sans-serif; font-weight: 900; display: inline-block; } 
.hawa_title { display: inline-flex; font-size: clamp(40px, 6vw, 120px); font-weight: 800; } 

/* .hawa_text .hawa-txt { color: #000; font-size: 20px; font-weight: 700; font-family: 'Paperozi', sans-serif; } 
 */.hawa_title span { display: inline-block; will-change: transform; animation: hawaChar 2.2s ease-in-out infinite; font-family: "BBH Hegarty", sans-serif; } 

.hawa_title span:nth-child(1) { animation-duration: 0.7s; animation-delay: 0s; } 
.hawa_title span:nth-child(2) { animation-duration: 1.3s; animation-delay: 0.15s; } 
.hawa_title span:nth-child(3) { animation-duration: 0.7s; animation-delay: 0.3s; } 
.hawa_title span:nth-child(4) { animation-duration: 1.2s; animation-delay: 0.1s; } 

@keyframes hawaChar { 0%, 100% { transform: translateY(0) rotate(0deg); } 
 50% { transform: translateY(-12px) rotate(1.2deg); } 
 }

/* 짝수 글자는 반대로 살짝 틀어주기 */
.hawa_title span:nth-child(even) { animation-name: hawaChar2; } 

@keyframes hawaChar2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 
 50% { transform: translateY(-10px) rotate(-1.2deg); } 
 }


@media screen and (max-width:1440px){
 #main_visual .main_gnb div ul li a { width: 430px; height: 70px; font-size: 30px; } 
 #main_visual.loaded .left_menu a { transform: translateX(-35%); } 
 #main_visual.loaded .right_menu a { transform: translateX(35%); } 
 #main_visual .left_menu a:hover { transform: translateX(-20%); } 
 #main_visual .right_menu a:hover { transform: translateX(20%); } 
 }

@media screen and (max-width:1280px){
 #main_visual::after { width: 60%; height: 60%; } 
 #main_visual::before { width: 500px; transform: translate(-50%, -30%); } 

 @keyframes glassesUpDown { 
 0% { transform: translate(-50%, -50%); } 
 45% { transform: translate(-50%, -70%); } 
 85% { transform: translate(-50%, -40%); } 
 100% { transform: translate(-50%, -50%); } 
 }

 #main_visual .visual_title h1 { font-size: clamp(30px, 8.0vw, 170px); } 
 }

@media screen and (max-width:1024px){
 #main_visual .visual_inner { padding: 0 20px 0; } 

 #main_visual .visual_title h1 { font-size: clamp(18px, 9vw, 120px); letter-spacing: 0; } 

 #main_visual::after { width: 60%; height: 60%; left: 35%; } 
 #main_visual::before { left: 35%; } 

 #main_visual .main_gnb { width: 100%; flex-direction: column; justify-content: flex-end; gap: 10px; } 

 #main_visual .main_gnb div ul li a { width: 250px; border-radius: 40px 0 0 40px !important; } 

#main_visual .hawa_text h2 { font-size: 150px; font-family: "BBH Hegarty", sans-serif; font-weight: 900; display: inline-block; } 

.hawa_title { display: inline-flex; font-size: clamp(40px, 6vw, 120px); font-weight: 800; } 

.hawa_title span { display: inline-block; will-change: transform; animation: hawaChar 2.2s ease-in-out infinite; } 

/* 글자마다 속도/딜레이/움직임 차이 */
.hawa_title span:nth-child(1) { animation-duration: 0.7s; animation-delay: 0s; } 
.hawa_title span:nth-child(2) { animation-duration: 1.3s; animation-delay: 0.15s; } 
.hawa_title span:nth-child(3) { animation-duration: 0.7s; animation-delay: 0.3s; } 
.hawa_title span:nth-child(4) { animation-duration: 1.2s; animation-delay: 0.1s; } 

@keyframes hawaChar { 0%, 100% { transform: translateY(0) rotate(0deg); } 
 50% { transform: translateY(-12px) rotate(1.2deg); } 
 }

/* 짝수 글자는 반대로 살짝 틀어주기 */
.hawa_title span:nth-child(even) { animation-name: hawaChar2; } 

@keyframes hawaChar2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 
 50% { transform: translateY(-10px) rotate(-1.2deg); } 
 }

 #main_visual .main_gnb .left_menu ul,
 #main_visual .main_gnb .right_menu ul { align-items: flex-end; gap: 10px; } 
 #main_visual .main_gnb .left_menu a { } 

 #main_visual .main_gnb .left_menu a,
 #main_visual .main_gnb .right_menu a { transform: none; opacity: 1; transition: none; justify-content: flex-start; padding: 0 0 0 40px; font-size: 25px; } 
 #main_visual.loaded .left_menu a,
 #main_visual.loaded .right_menu a { transform: none !important; opacity: 1 !important; } 

 #main_visual .left_menu a:hover,
 #main_visual .right_menu a:hover { transform: none !important; } 

 #main_visual .hawa_text { right: 50px; padding: 0; } 
 }

@media screen and (max-width:768px){
 #main_visual { height: 80vh; } 
 #main_visual::after { top: 50%; } 
 #main_visual::before { max-width: 350px; width: 100%; top: 45%; } 

 @keyframes glassesUpDown { 
 0% { transform: translate(-50%, -50%); } 
 45% { transform: translate(-50%, -65%); } 
 85% { transform: translate(-50%, -43%); } 
 100% { transform: translate(-50%, -50%); } 
 }

 #main_visual .hawa_text { bottom: 20px; left: 30px; } 
 #main_visual .hawa_text h2 { font-size: 70px; } 
 }

@media screen and (max-width:640px) {/* #main_visual { height: 70vh; } */
 #main_visual .visual_title h1 { padding-top: 30px; } 

 #main_visual::after { width: 55%; left: 30%; } 
 #main_visual::before { max-width: 300px; width: 100%; left: 30%; } 
 #main_visual .main_gnb .left_menu a,
 #main_visual .main_gnb .right_menu a { height: 60px; font-size: 23px; } 
 }

@media screen and (max-width:500px){
 #main_visual::after { top: 35%; left: 50%; } 
 #main_visual::before { max-width: 220px; top: 30%; left: 50%; } 
 @keyframes glassesUpDown { 
 0% { transform: translate(-50%, -50%); } 
 45% { transform: translate(-50%, -60%); } 
 85% { transform: translate(-50%, -43%); } 
 100% { transform: translate(-50%, -50%); } 
 }
 #main_visual .visual_title h1 { padding-top: 73px; } 
 #main_visual .main_gnb { position: absolute; top: 50%; } 
 #main_visual .main_gnb .left_menu ul,
 #main_visual .main_gnb .right_menu ul { align-items: center; flex-direction: row; justify-content: center; } 
 #main_visual .main_gnb .left_menu a,
 #main_visual .main_gnb .right_menu a { width: 100%; height: auto; justify-content: center; padding: 10px 20px; border-radius: 20px 20px 20px 20px !important; font-size: 20px; } 
 #main_visual .hawa_text h2 { font-size: 70px; } 
 #main_visual .main_gnb .right_menu ul { flex-direction: column; } 
 #main_visual .main_gnb .right_menu li { text-align: center; width: 80%; padding: 0 16px; } 
 #main_visual { height: 90vh; } 
 }

@media screen and (max-width:420px) { /* #main_visual { height: 60vh; } */

 #main_visual::after { width: 230px; top: 40%; } 
 #main_visual::before { width: 200px; top: 35%; } 
 #main_visual .main_gnb { padding-top: 60px; gap: 7px; } 
 #main_visual .main_gnb .left_menu ul,
 #main_visual .main_gnb .right_menu ul { gap: 7px; margin-top: 5px; } 
 #main_visual .main_gnb .left_menu a,
 #main_visual .main_gnb .right_menu a { font-size: 16px; } 
 #main_visual .hawa_text h2 span { font-size:32px; } 
 }

@media screen and (max-width:350px){
 #main_visual { height: 80vh; } 
 #main_visual .main_gnb { padding-top: 80px; gap: 5px; } 
 #main_visual .main_gnb .left_menu ul,
 #main_visual .main_gnb .right_menu ul { gap: 5px; } 
 #main_visual .main_gnb .left_menu a,
 #main_visual .main_gnb .right_menu a { font-size: 14px; padding: 7px 16px; } 
/* #main_visual .hawa_text h2 { font-size: 50px; } */
 #main_visual .hawa_text { left: 50%; right: auto; transform: translateX(-50%); } 
 }

/* 메인 비주얼 하단 텍스트 슬라이드 */
.ticker { width: 100%; overflow: hidden; white-space: nowrap; padding: 20px 0; } 

.ticker .ticker_track { display: flex; width: max-content; will-change: transform; animation: tickerMove 30s linear infinite; } 

.ticker .ticker_text { display: inline-block; padding-right: 10px; color: #fe21a4; font-size: 50px; font-family: 'Paperozi', sans-serif; font-weight: 800; } 

@keyframes tickerMove { 
 from { transform: translateX(0); } 
 to { transform: translateX(-50%); } 
 }

.ticker .ticker:hover .ticker_track { animation-play-state: paused; } 

@media screen and (max-width:640px){
 .ticker .ticker_text { font-size: 30px; } 
 }

/*======================
 띠 배너 영역 
 ======================*/
.impact-strip { background:#101012; padding:80px 0; overflow:hidden; } 
.strip { overflow:hidden; opacity:0; box-shadow:0 20px 50px rgba(0,0,0,.35); will-change:transform, opacity; } 
.strip-yellow { width: 95%; background:#00e8f2; transform:rotate(-2deg); } 
.strip-cyan { width: 95%; margin: 0 0 0 100px; background:#00ff16; transform:rotate(1.5deg); } 
.strip-magenta { background:#fe21a4; transform:rotate(-1deg); } 
.strip-inner { display:flex; align-items:center; padding:26px 36px; min-height:88px; overflow:hidden; } 
.strip-text { font-size:44px; font-weight:800; color:#111; white-space:nowrap; letter-spacing:-0.02em; will-change:transform; } 

@media screen and (max-width: 900px){
 .strip-text { font-size:clamp(22px, 4.5vw, 44px); } 
 }

@media screen and (max-width:768px){
 .strip-inner { min-height: 60px; padding: 16px 0; } 
.strip-cyan { margin: 0 0 0 56px; } 
.strip-text { font-size:28px; } 
 }
@media screen and (max-width: 500px){
 .strip-text { font-size:18px; } 
 }
@media screen and (max-width: 430px){
 .strip-text { font-size:16px; } 
 }
/*=========== 비전 ===========*/
.split-box { width: 100%; display: flex; justify-content: flex-end; align-items: center; margin-top: 30px; } 
.content { width: 100%; max-width: 1200px; } 
.text-container { position: relative; width: 100%; word-break: keep-all; } 
.text-container p { font-size: 32px; font-weight: 600; letter-spacing: -1px; color: #cfcfcf; margin: 0; margin-bottom: 12px; } 
.text-container p.split { pointer-events:none; } 
.text-container p.split .gradient-line { background: linear-gradient(90deg, #fff, #fe21a4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } 

/* 스크립트 span */
.text-container span { font-family: 'Paperozi', sans-serif; } 

/* 모바일 버전(효과 지우기) */
.mo-split-box { display: none; } 

@media screen and (max-width:1024px){
 .text-container p { font-size: 26px; } 
 }

@media screen and (max-width:640px){
 .split-box { display: none; } 
 .mo-split-box { display: block; margin-top: 20px; } 
 .mo-split-box p { font-size: 18px; background: linear-gradient(90deg, #fff, #fe21a4); line-height: 1.5; -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Paperozi', sans-serif; } 
 }

/*============= 아코디언 섹션 =============*/
.acc { padding-top: 100px; margin-bottom: 100px; width: 100%; font-family: 'Paperozi', sans-serif; } 
.acc_item { border-bottom: 1px solid rgba(255,255,255,0.25); } 
.acc_head { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 34px 0; background: transparent; border: 0; cursor: pointer; color: #fff; text-align: left; } 
.acc_title { font-size: clamp(28px, 4vw, 56px); font-weight: 500; letter-spacing: 1px; font-family: "BBH Hegarty", sans-serif; } 
.acc_icon { position: relative; width: 22px; height: 22px; flex: 0 0 22px; opacity: 0.9; } 
.acc_icon::before,
.acc_icon::after { content:""; position:absolute; left:50%; top:50%; width: 22px; height: 2px; background:#fff; transform: translate(-50%, -50%); transition: transform .25s ease, opacity .25s ease; } 
.acc_icon::after { transform: translate(-50%, -50%) rotate(90deg); } 

.acc_item.open .acc_icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); opacity: 0; } 

/* 슬라이드 패널 */
.acc_panel { height: 0; overflow: hidden; transition: height .35s ease; } 
.acc_body { padding: 0 0 34px 0; color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; } 
.acc_body p { font-size: 28px; font-weight: 600; font-family: 'Paperozi', sans-serif; } 
.acc_body ul { margin-top: 10px; } 
.acc_body li { padding: 3px 0 3px 10px; font-family: 'Paperozi', sans-serif; position: relative; font-size: 24px; } 

.acc_body li::before { content: ""; position: absolute; left: 3px; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: #fff; } 

.acc_panel .desc { font-size: 18px; font-weight: 500; font-family: 'Paperozi', sans-serif; } 

@media screen and (max-width:768px){
 .acc_body li { font-size: 18px; } 
 .acc_body p { font-size: 24px; } 
 }
@media screen and (max-width:700px){
 .acc_panel .desc .br-none { display: none; } 
 }
@media screen and (max-width:480px){
 .acc_body p { font-size: 20px; } 
 .acc_panel .desc { font-size: 14px; } 
 .acc_body li { font-size: 16px; } 
 }

/*====================== 
신청폼 영역
======================*/
.inquiry.inner { max-width: 1000px; } 
.inquiry_form { padding: 50px 0 100px; } 
.inquiry .form_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } 

.inquiry .form_grid .field_full { grid-column: 1 / -1; } 

.inquiry .form_field label { color: #fff; font-weight: 600; font-size: 16px; padding-bottom: 20px; display: block; } 
.inquiry .form_field .point { display: inline-block; padding-right: 5px; font-size: 20px; color: #fe21a4; font-weight: 600; } 
.inquiry .form_field textarea,
.inquiry .form_field input { width: 100%; padding: 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); background: none; color: #fff; } 

.inquiry .form_field .file_wrap input { width: auto; } 

.inquiry .form_field textarea { min-height: 250px; } 

.inquiry .form_field p { font-size: 20px; color: #fff; } 


/* input 입력 시 배경 커스텀 */
.inquiry .form_field input:focus,
.inquiry .form_field textarea:focus,
.inquiry .mobile_wrap select:focus { background: rgba(255,255,255,0.02); color: #fff; outline: none; border-color: #fe21a4; box-shadow: 0 0 0 3px rgba(254,33,164,.14); } 

.inquiry .form_field input { caret-color: #fe21a4; } 

.inquiry .form_field input:-webkit-autofill,
.inquiry .form_field input:-webkit-autofill:hover,
.inquiry .form_field input:-webkit-autofill:focus,
.inquiry .form_field textarea:-webkit-autofill,
.inquiry .form_field textarea:-webkit-autofill:focus,
.inquiry .mobile_wrap select:-webkit-autofill { -webkit-text-fill-color: #fff !important; caret-color: #fe21a4; transition: background-color 9999s ease-out 0s; -webkit-box-shadow: 0 0 0 1000px rgba(0,0,0,0.15) inset !important; box-shadow: 0 0 0 1000px rgba(0,0,0,0.15) inset !important; border: 1px solid rgba(255,255,255,.35); } 


/* 모바일 */
.inquiry .mobile_wrap,
.inquiry .email_wrap { display: flex; align-items: center; gap: 5px; } 
.inquiry .mobile_wrap select { padding: 20px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); background: none; color: #fff; min-width: 120px; text-align: center; } 
.inquiry .mobile_wrap select option { background: #101012; color: #fff; } 

/* 파일첨부 */
.inquiry .file_input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; } 

.inquiry .file_wrap { display: flex; align-items: center; gap: 12px; } 

.inquiry .file_btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; white-space: nowrap; background: rgba(255,255,255,0.06); transition: all .2s; } 
.inquiry .file_btn:hover { border-color: #fe21a4; box-shadow: 0 0 0 3px rgba(254,33,164,.15); } 
.inquiry .file_name { flex: 1; min-width: 0; padding: 18px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.8); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } 

/* 서비스탭 */
.inquiry .service_tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; } 

.inquiry .service_tabs input[type="checkbox"] { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; padding: 0; } 

.inquiry .service_tabs label { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,0.04); color: rgba(255,255,255,.92); font-size: 16px; font-weight: 600; cursor: pointer; user-select: none; transition: all .2s ease; white-space: nowrap; } 

.inquiry .service_tabs label:hover { border-color: rgba(254,33,164,.7); box-shadow: 0 0 0 3px rgba(254,33,164,.14); transform: translateY(-1px); } 

.inquiry .service_tabs input[type="checkbox"]:checked + label { border-color: #fe21a4; background: #fe21a4; box-shadow: 0 10px 22px rgba(254,33,164,.12); } 

.inquiry .service_tabs input[type="checkbox"]:focus-visible + label { outline: none; box-shadow: 0 0 0 3px rgba(254,33,164,.22); } 



/* 방문/출장 */
.inquiry .visit_tabs { display: flex; gap: 12px; flex-wrap: wrap; } 

.inquiry .visit_item { position: relative; color: #fff; } 

.inquiry .visit_item input[type="radio"] { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; padding: 0; } 

.inquiry .visit_item label { display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px !important; border-radius: 12px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,0.03); color: rgba(255,255,255,.92); font-size: 16px; font-weight: 700; cursor: pointer; transition: all .2s ease; } 

.inquiry .visit_item label::before { content: ""; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55); box-sizing: border-box; display: inline-block; } 

.inquiry .visit_item label:hover { border-color: rgba(254,33,164,.7); } 

.inquiry .visit_item input[type="radio"]:checked + label { border-color: #fe21a4; } 

.inquiry .visit_item input[type="radio"]:checked + label::before { border-color: #fe21a4; } 



/* 개인정보 처리 박스 */
.inquiry .privacy_box { margin-top: 28px; padding: 22px; border-radius: 16px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,0.03); backdrop-filter: blur(6px); } 

.inquiry .privacy_box textarea { width: 100%; min-height: 180px; resize: none; padding: 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,.22); background: rgba(0,0,0,0.15); color: rgba(255,255,255,.85); line-height: 1.6; font-size: 15px; outline: none; } 

.inquiry .privacy_box textarea:focus { border-color: rgba(254,33,164,.7); box-shadow: 0 0 0 3px rgba(254,33,164,.14); } 

.inquiry .agree_label { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 10px 14px; } 

.inquiry .agree_label input[type="checkbox"] { width: 18px; height: 18px; accent-color: #fe21a4; cursor: pointer; } 

.inquiry .agree_label label { margin: 0; padding: 0; font-size: 16px; font-weight: 700; color: rgba(255,255,255,.92); cursor: pointer; } 

.inquiry .agree_label label::after { content: " *"; color: #fe21a4; font-weight: 800; } 

 
/* submit */
.inquiry .btn_submit { display: block; width: fit-content; margin: 50px auto 0; padding: 18px 28px; border-radius: 12px; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.05); color: #fff; font-size: 18px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: all .2s ease; } 

.inquiry .btn_submit:hover { border-color: #fe21a4; box-shadow: 0 0 0 3px rgba(254,33,164,.15); transform: translateY(-2px); } 

/* 스크롤바 커스텀 */
.inquiry .privacy_box textarea { scrollbar-width: thin; scrollbar-color: rgba(254,33,164,.75) rgba(255,255,255,.06); } 

/* Chrome / Edge / Safari */
.inquiry .privacy_box textarea::-webkit-scrollbar { width: 10px; } 

.inquiry .privacy_box textarea::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 999px; border: 1px solid rgba(255,255,255,.10); } 

.inquiry .privacy_box textarea::-webkit-scrollbar-thumb { background: linear-gradient(
 180deg,
 rgba(254,33,164,.95),
 rgba(254,33,164,.45)
 ); border-radius: 999px; border: 2px solid rgba(16,16,18,.85); } 

.inquiry .privacy_box textarea::-webkit-scrollbar-thumb:hover { background: linear-gradient(
 180deg,
 rgba(254,33,164,1),
 rgba(254,33,164,.65)
 ); } 

.inquiry .privacy_box textarea::-webkit-scrollbar-corner { background: transparent; } 


@media screen and (max-width:960px){
 .inquiry .mobile_wrap select { min-width: 90px; } 
 .inquiry .file_btn { padding: 18px 15px !important; font-size: 14px !important; } 
 }
@media screen and (max-width:768px){
 .inquiry .form_field label { padding-bottom: 10px; } 
 }
@media screen and (max-width:640px){
 .inquiry .form_grid { grid-template-columns: repeat(1, 1fr); } 
 .inquiry .file_name,
 .inquiry .mobile_wrap select,
 .inquiry .form_field textarea,
 .inquiry .form_field input { padding: 15px; } 
.inquiry .file_btn { padding: 15px 10px !important; } 

 .inquiry .form_field textarea { min-height: 200px; } 
 .inquiry .form_field p { font-size: 15px; } 

 .inquiry .file_name { font-size: 14px; } 
 .inquiry .service_tabs label { padding: 10px 15px; font-size: 14px; } 
 .inquiry .btn_submit { margin: 40px auto 0; font-size: 15px; padding: 16px 25px; } 
 }
@media screen and (max-width:430px){
 .inquiry .service_tabs label,
 .inquiry .visit_item label,
 .inquiry .privacy_box textarea { font-size: 12px; } 
 .inquiry .visit_item label::before { width: 12px; height: 12px; } 

 .inquiry .agree_label { margin-top: 10px; padding: 10px 0 0; gap: 10px; } 
 .inquiry .agree_label input[type="checkbox"] { width: 15px; height: 15px; } 
 .inquiry .agree_label label { font-size: 13px; } 

 .inquiry .service_tabs { gap: 8px; } 
 .inquiry .btn_submit { font-size: 15px; padding: 13px 20px; } 
 }
@media screen and (max-width:375px){
 .inquiry .form_grid { gap: 10px; } 
 .inquiry .mobile_wrap select { min-width: auto; text-align: start; } 
 .inquiry .file_name, .inquiry .mobile_wrap select, .inquiry .form_field textarea, .inquiry .form_field input { padding: 10px 15px; } 
 .inquiry .form_field label { padding: 10px 5px !important; font-size: 13px !important; } 
.inquiry .privacy_box textarea,
 .inquiry .privacy_box { padding: 15px; } 
 .inquiry .agree_label label { margin-top: 0; font-size: 12px; gap: 5px; } 
 .inquiry .agree_label input[type="checkbox"] { width: 12px; height: 12px; } 
 .inquiry .btn_submit { margin: 30px auto 0; font-size: 13px; padding: 13px 20px; } 
 }


/*=========== ===========
ARE YOU READY 영역 
======================*/
#ayready { position: relative; width: 100%; height: 700px; z-index: 2; margin-bottom: 100px; } 
#ayready::before { content: ""; position: absolute; top: 0; width: 100%; height: 100%; background: url(../../images/main/ready_bg.jpg)no-repeat center/cover; z-index: 1; filter: brightness(50%); background-attachment: fixed; } 

#ayready .ayready_text { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column; } 

#ayready .ayready_text h1 { font-size: 90px; font-family: "BBH Hegarty", sans-serif; text-align: center; color: #00ff16; padding-bottom: 50px; transition: .3s; } 
#ayready .ayready_text h1:hover { color: #fe21a4; } 
#ayready .ayready_text p { font-size: 30px; text-align: center; font-family: 'Paperozi', sans-serif; color: #00ff16; } 
#ayready .ayready_text p span { font-size: 40px; font-weight: 800; transition: .3s; display: block; padding-bottom: 10px; } 

#ayready .ayready_text p span br { display: none; } 

#ayready .ayready_text p:hover { color: #fe21a4; } 

#ayready .ayready_text a { margin-top: 50px; display: block; font-size: 30px; font-family: 'Paperozi', sans-serif; font-weight: 800; background: #00ff16; border-radius: 30px; padding: 15px 40px; transition: .3s; } 

#ayready .ayready_text a:hover { margin-top: 28px; background: #fe21a4; padding: 20px 50px; font-size: 40px; border-radius: 40px; font-weight: 900; } 

@media screen and (max-width:1024px){
 #ayready .ayready_text h1 { font-size: 70px; } 
 #ayready .ayready_text p span { font-size: 30px; } 
 #ayready .ayready_text p { font-size: 20px; } 
 #ayready .ayready_text a { margin-top: 50px; font-size: 20px; } 

 #ayready .ayready_text a:hover { margin-top: 28.5px; font-size: 30px; } 
 }
@media screen and (max-width:768px){
 #ayready { margin-bottom: 0; } 
 #ayready .ayready_text h1 { padding-bottom: 30px; font-size: 60px; } 
 #ayready .ayready_text p span { font-size: 20px; padding: 0; } 
 #ayready .ayready_text p { font-size: 18px; } 
 }
@media screen and (max-width:480px){
 #ayready .ayready_text p span br { display: block; } 
 #ayready .ayready_text p span { font-size: 20px; padding-bottom: 5px; } 
 }

@media screen and (max-width:430px){
 #ayready { height: 500px; } 
 #ayready .ayready_text h1 { padding: 0 20px 30px; font-size: 40px; } 
 #ayready .ayready_text p span { font-size: 18px; padding: 0; } 
 #ayready .ayready_text p { font-size: 16px; } 

 #ayready .ayready_text a { margin-top: 30px; padding: 12px 30px; } 
 #ayready .ayready_text a:hover { padding: 15px 40px; font-size: 25px; margin-top: 19.8px; } 
 }

/*=========== 키워드 ===========*/
.hero { position: relative; min-height:520px; display:flex; align-items:center; justify-content:center; overflow: hidden; } 


.top-box { display:grid; grid-template-columns:1fr 520px 1fr; gap:20px; align-items:center; } 
.side { color:#fff; opacity:.95 } 
.side-title { font-size:88px; font-weight:900; letter-spacing:-.03em; line-height:1; font-family: 'Cafe24ProUp'; } 
.side-title span { display: inline-block; font-family: 'Cafe24ProUp'; animation-duration: 2.4s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; } 

.side-title .ha:nth-child(1) { transform: rotate(45deg); animation-name: scale-down; } 

.side-title .ha:nth-child(2) { transform: rotate(-60deg); font-size: 92px; animation-name: scale-up; animation-delay: 0.2s; } 

.side-title .ha:nth-child(3) { transform: rotate(140deg); animation-name: scale-down; animation-delay: 0.4s; } 

@keyframes scale-down { 
 0% { transform: scale(1.3) rotate(var(--rot)); } 
50% { transform: scale(1) rotate(var(--rot)); } 
100% { transform: scale(1.3) rotate(var(--rot)); } 
 }

@keyframes scale-up { 
 0% { transform: scale(0.7) rotate(var(--rot)); } 
50% { transform: scale(1.2) rotate(var(--rot)); } 
100% { transform: scale(0.7) rotate(var(--rot)); } 
 }

.side-title .ha:nth-child(1) { --rot: 45deg; } 
.side-title .ha:nth-child(2) { --rot: -60deg; } 
.side-title .ha:nth-child(3) { --rot: 140deg; } 

.side-sub { margin-top:10px; font-size:54px; opacity:.7 } 
.side-left { text-align:left } 
.side-right { text-align:right } 

.center { position:relative; height:420px; display:flex; align-items:center; justify-content:center; } 
.tiger { width:400px; height:400px; border-radius:50%; display:grid; place-items:center; position:relative; z-index:2; } 
.tiger img { width:100%; height:100%; object-fit:contain; display:block; } 

.btm-box { position: relative; margin-top: 100px; height: 300px; } 
.tags { position:absolute; inset:0; z-index:1; pointer-events:none; } 
.tag { pointer-events:auto; position:absolute; padding:10px 16px; border-radius:999px; border:0; font-weight:800; font-size:36px; letter-spacing:.02em; color:#111; background:rgba(0, 255, 4); box-shadow:0 8px 20px rgba(0,0,0,.14); transform:translate(-50%,-50%); white-space:nowrap; cursor:pointer; user-select:none; } 
.tag.pink { background:#ff33a0; color:#fff; } 
.tag.hot { background:#ff2d73; } 
.tag.hot2 { background:#ff3a7a; } 
.tag.gray { background:#666; } 
.tag.mint { background:#00ffea; color: #111; } 


/*** 모바일용 태그 ****/
.mo-btm-box { display: none; } 

@media screen and (max-width:1024px){
 .tiger { width:250px; height:250px; } 
 .side-title { font-size: 56px; } 
 .side-title .ha:nth-child(2) { font-size: 68px; } 

 .top-box { grid-template-columns: 1fr 1fr 1fr; } 

 .btm-box { margin-top: 0; height: 190px; } 
 .tag { font-size: 20px; } 
 }

@media screen and (max-width:768px){
 .btm-box { display: none; } 

/*** 모바일용 태그 ****/
.mo-btm-box { display: block; margin-top: 60px; margin-bottom: 60px; } 
.mo-btm-box { } 
.mo-btm-box .motags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; } 
.mo-btm-box .mo-tag { padding:5px 10px; border-radius:999px; border:0; font-weight:800; font-size:16px; letter-spacing:.02em; color:#111; background:rgba(0, 255, 4); box-shadow:0 8px 20px rgba(0,0,0,.14); white-space:nowrap; cursor:pointer; user-select:none; } 
.mo-btm-box .mo-tag.pink { background:#ff33a0; color:#fff; } 
.mo-btm-box .mo-tag.hot { background:#ff2d73; } 
.mo-btm-box .mo-tag.hot2 { background:#ff3a7a; } 
.mo-btm-box .mo-tag.gray { background:#666; } 
.mo-btm-box .mo-tag.mint { background:#00ffea; color: #111; } 
.mo-tag:nth-child(1) { transform: rotate(5deg) } 
.mo-tag:nth-child(2) { transform: rotate(12deg) } 
.mo-tag:nth-child(3) { transform: rotate(-8deg) } 
.mo-tag:nth-child(4) { transform: rotate(-12deg) } 
.mo-tag:nth-child(5) { transform: rotate(16deg) } 
.mo-tag:nth-child(6) { transform: rotate(-8deg) } 
.mo-tag:nth-child(7) { transform: rotate(-10deg) } 
.mo-tag:nth-child(8) { transform: rotate(8deg) } 
.mo-tag:nth-child(9) { transform: rotate(-3deg) } 
.mo-tag:nth-child(10) { transform: rotate(12deg) } 
 }

@media screen and (max-width:640px){
 .top-box { display:flex; flex-direction: column; align-items: center; justify-content: center; } 
 .center { height: auto; } 
 .tiger { width:160px; height:160px; } 
 .side-title { font-size: 40px; } 
 .tag { font-size: 16px; padding: 5px 10px; } 
 }

@media screen and (max-width:430px){
 .tag { font-size: 14px; } 
 }


