@charset "utf-8";
@import url("./fonts/Pretendard/pretendard.css");
@import url("reset.css?3");

html {
  scroll-behavior: auto;
}
:root {
  --body-max-width: 1440px;
}

header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #bfcdd8;
}
header .header-inner {
  max-width: var(--body-max-width);
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.125em 0;
}

header .header-inner nav.top-menu {
  width: max-content;
}
header .header-inner nav.top-menu ul {
  display: flex;
  gap: 3.125em;
}
header .header-inner nav.top-menu ul li a {
  font-size: 1.125em;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.02em;
}

header .header-inner .top-menu-toggle {
  position: relative;
  display: flex;
  cursor: pointer;
  height: 2em;
  margin: 0;
  padding: 0;
  padding-right: 1.375em;
  background: none;
  border: none;
  align-items: center;
  justify-content: flex-start;
}

header .header-inner .top-menu-toggle:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #004898;
}
header .header-inner .top-menu-toggle:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  left: auto;
  width: 0.875em;
  transform: translateY(-1px);
  height: 3px;
  border-radius: 3px;
  background: #004898;
}

header .header-inner .top-menu-toggle span {
  font-weight: 700;
  font-size: 0.875em;
  line-height: 100%;
  letter-spacing: 0;
  color: #000;
  text-transform: uppercase;
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hero .hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero .hero-swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 1920 / 900;
  background: #ccc;
}
.hero .hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: cover;
}
.hero .hero-swiper .swiper-slide .desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hero .hero-swiper .swiper-slide-active .desc {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.hero .hero-swiper .swiper-slide .desc p {
  width: max-content;
  height: auto;
  font-weight: 700;
  font-size: 3.25em;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
}
.hero .hero-swiper .swiper-slide .desc span {
  display: block;
  width: max-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto;
  margin-top: 1.875em;
}
.hero .hero-swiper .swiper-pagination {
  bottom: 5em;
}
.hero .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 7;
  height: 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}
.hero
  .hero-swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
  width: 28px;
}
