@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2")
    format("woff2");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2")
    format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2")
    format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2")
    format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --color-primary: #50afd9;
  --color-primary-dark: #3a96c0;
  --color-bg: #f8fafb;
  --color-bg-dark: #0d1117;
  --color-text: #1a1f26;
  --color-text-muted: #5c6672;
  --color-border: #e2e8ee;
  --color-white: #fff;
  /* --font-body: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif; */
  --font-display: "Paperozi", "Pretendard", sans-serif;
  --header-h: 72px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header.is-scrolled .logo-mark,
.site-header.is-scrolled .logo-sub,
.site-header.is-scrolled .nav-link {
  color: var(--color-text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  z-index: 210;
}

.logo-mark {
  width: 80px;
  /* height: 32px; */
  transition: color 0.4s;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.4s;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Index: hero 위에 투명 헤더 */
.site-header--solid,
.page-sub .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header--solid .logo-mark,
.site-header--solid .logo-sub,
.site-header--solid .nav-link,
.page-sub .site-header .logo-mark,
.page-sub .site-header .logo-sub,
.page-sub .site-header .nav-link {
  color: var(--color-text);
}

.site-header--solid .logo-sub,
.page-sub .site-header .logo-sub {
  color: var(--color-text-muted);
}

.site-header--solid .nav-toggle span,
.page-sub .site-header .nav-toggle span {
  background: var(--color-text);
}

.dropdown a.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.is-active {
  color: var(--color-primary) !important;
}

/* ── Sub page layout ── */
.page-sub main {
  padding-top: var(--header-h);
}

.page-sub .page-hero-banner {
  padding: clamp(20px, 10vw, 40px) 0 clamp(40px, 6vw, 40px);
  /* background: linear-gradient(135deg, #eef7fb 0%, var(--color-bg) 100%); */
  border-bottom: 1px solid var(--color-border);
  /* margin-bottom: clamp(48px, 8vw, 80px); */
}

.page-sub .page-hero-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.page-sub .page-hero-banner p {
  margin-top: 12px;
  color: var(--color-text-muted);
  max-width: 560px;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: -35px;
  min-width: 180px;
  padding: 8px 0;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--color-text);
  transition:
    background 0.2s,
    color 0.2s;
}

.dropdown a:hover {
  background: rgba(80, 175, 217, 0.08);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition:
    transform 0.3s,
    opacity 0.3s,
    background 0.3s;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--color-text);
}

/* ── Hero overlay (on scrub video) ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 6vw, 80px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

/* progress bar brand color */
.svs-progress-fill {
  background: linear-gradient(
    to top,
    var(--color-primary) 0%,
    rgba(80, 175, 217, 0.5) 100%
  );
}

/* ── Section common ── */
/* .section {
  padding: clamp(80px, 12vw, 100px) 0;
} */

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-desc {
  margin-top: 16px;
  max-width: 720px;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section-header {
  margin-bottom: clamp(48px, 8vw, 80px);
}

/* ── Intro (svs-next-section override) ── */
.section-intro#svs-next-section {
  background: var(--color-bg);
  padding: clamp(100px, 14vw, 160px) 0;
  min-height: auto;
  text-align: left;
}

.section-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: 64px;
}

.intro-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.intro-sub {
  font-size: 1.0625rem;
  color: var(--color-primary);
  font-weight: 600;
}

.intro-body p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.intro-quote {
  border-left: 4px solid var(--color-primary);
  padding: 24px 32px;
  background: var(--color-white);
  border-radius: 0 16px 16px 0;
  margin-bottom: 48px;
}

.intro-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  padding: 32px;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ── CEO ── */
.section-ceo {
  background: var(--color-white);
}

.ceo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
  margin: 60px 0;
}

.ceo-photo-placeholder {
  aspect-ratio: 4/4;
  background: linear-gradient(135deg, #e8f4fa 0%, #d0e8f4 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.ceo-lead {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--color-text);
}

.ceo-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.ceo-sign {
  margin-top: 32px;
  font-size: 1rem;
  color: var(--color-text);
}

.ceo-sign strong {
  color: var(--color-primary);
}

/* ── Timeline ── */
.section-history {
  /* background: var(--color-bg-dark); */
  /* color: var(--color-white); */
}

.section-history .section-label {
  color: var(--color-primary);
}

.section-history .section-title {
  color: var(--color-white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(80, 175, 217, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 48px;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 48px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 48px;
}

.timeline-dot {
  position: absolute;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(80, 175, 217, 0.25);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 0.9375rem;
  /* color: rgba(255, 255, 255, 0.75); */
  line-height: 1.6;
}

/* ── Org chart ── */
.section-org {
  /* background: var(--color-bg-dark); */
  /* padding-bottom: clamp(80px, 10vw, 120px); */
}

.org-image-wrap {
  width: 100%;
  overflow-x: auto;
  /* padding: clamp(32px, 5vw, 56px) 0 24px; */
  padding: 60px 0;
  -webkit-overflow-scrolling: touch;
}

.org-image {
  display: block;
  /* width: min(100%, 1110px); */
  /* min-width: 720px; */
  width: 100%;
  /* height: auto; */
  /* margin-inline: auto; */
  border: 0;
}

/* ── Certification ── */
.section-cert {
  /* background: var(--color-bg); */
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.cert-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(80, 175, 217, 0.12);
}

.cert-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #eef7fb 0%, #dceef7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.cert-card h3 {
  padding: 20px 20px 6px;
  font-size: 1rem;
  font-weight: 700;
}

.cert-card p {
  padding: 0 20px 20px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ── Location ── */
.section-location {
  background: var(--color-white);
}

.location-layout {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location-card {
  padding: 40px;
  background: var(--color-bg);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.location-card dl {
  display: grid;
  gap: 16px;
}

.location-card dt {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.location-card dd {
  font-size: 0.9375rem;
  color: var(--color-text);
}

/* ── Product Features ── */
.section-features {
  background: linear-gradient(180deg, var(--color-bg) 0%, #eef7fb 100%);
  padding: 60px 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 32px;
  padding: clamp(32px, 5vw, 48px);
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(80, 175, 217, 0.1);
}

.feature-num {
  grid-row: span 3;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(80, 175, 217, 0.25);
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.feature-en {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-card p:last-child {
  grid-column: 2;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ── Movie Epilogue ── */
.movie-epilogue {
  background: #000;
  scroll-behavior: smooth;
}

.movie-epilogue-header {
  padding: 80px 24px 40px;
  padding-top: calc(var(--header-h) + 40px);
  text-align: center;
  color: var(--color-white);
}

.movie-epilogue-header h2,
.movie-epilogue-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.movie-epilogue-desc {
  margin-top: 12px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.youtube-channel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  width: 132px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.youtube-channel-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.youtube-channel-link svg {
  display: block;
  width: 93px;
  height: 20px;
  pointer-events: none;
}

.page-movie {
  background: #000;
}

.page-movie .site-header .logo-mark,
.page-movie .site-header .logo-sub,
.page-movie .site-header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.page-movie .site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-movie .site-header.is-scrolled .logo-mark,
.page-movie .site-header.is-scrolled .logo-sub,
.page-movie .site-header.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.page-movie .nav-toggle span {
  background: #fff;
}

.movie-panel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.movie-poster {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.movie-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.movie-panel.is-playing .movie-iframe {
  pointer-events: none;
}

.movie-panel[data-yt="jMgsLNaT0x0"] .movie-iframe,
.movie-panel[data-yt="nIiiF1RMvFc"] .movie-iframe {
  pointer-events: auto;
}

.movie-caption {
  position: absolute;
  bottom: clamp(24px, 5vw, 48px);
  left: clamp(24px, 5vw, 48px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-white);
  pointer-events: none;
}

.movie-caption span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.movie-caption p {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 24px;
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
}

.footer-info p {
  font-size: 0.8125rem;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Reveal animation initial state ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .intro-grid,
  .ceo-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    text-align: left;
    padding: 0 0 40px 48px;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 13px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s,
      visibility 0.4s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 80px 32px;
  }

  .nav-link {
    color: var(--color-white);
    font-size: 1rem;
    padding: 16px 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-num {
    grid-row: auto;
  }

  .feature-card p:last-child {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
}
