* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
}

html, body {
  height: 100%;
  background-color: #000;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.intro__item {
  display: flex;
  position: relative;
  flex: 1 1 33.333%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.intro__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.intro__content {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.intro__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro__logo {
  width: 60px;
  aspect-ratio: 232/80;
  background: url(/img/intro/logo.png);
  background-size: cover;
}
.intro__title {
  margin-bottom: 15px;
  font-size: 2em;
  font-weight: 700;
}
.intro__description {
  margin-bottom: 30px;
  line-height: 1.5;
}
.intro__slogan {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
.intro__button {
  display: inline-block;
  padding: 12px 20px;
  width: 280px;
  border: none;
  border-radius: 5px;
  background: #185fe9;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.intro__button:hover {
  background: #3e78e7;
}

@media (min-width: 769px) {
  .intro__content {
    min-height: 400px;
  }
  .intro__item {
    white-space: nowrap;
  }
  .intro__item:hover .intro__bg {
    transform: scale(1.05);
  }
  .intro:hover .intro__item:not(:hover) {
    flex: 1 1 10%;
    filter: grayscale(100%);
    opacity: 0.75;
  }
}
@media (max-width: 768px) {
  .br-m {
    display: block;
  }
  .intro {
    flex-direction: column;
  }
  .intro__item {
    flex: none;
    padding: 100px 20px;
  }
}

/*# sourceMappingURL=intro.css.map */
