.wrap {
  /* width: 1920px; */
  margin: auto;
  background-color: #d2e5ff;
}
/* 헤더 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #bcd8ff; */
  background-color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/* 로고 */
.header-logo img {
  width: 10%;
  max-width: 120px;
  min-width: 100px;
  padding: 10px 20px;
  filter: brightness(0.3);
}
/* 헤더 오른쪽 */
.header-right {
  display: flex;
  gap: 50px;
}
/* 메뉴 */
.header-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 10px;
}
.header-menu i {
  font-size: 20px;
  /* font-weight: 400; */
}
.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.my {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
/* view-more */
.view-more {
  width: 80px;
  padding: 20px;
  text-align: center;
  font-size: 25px;
}
/* 메인 */
main {
  margin-top: 80px;
}
main .inner {
  max-width: 1400px;
  margin: auto;
  padding: 80px 0;
  font-family: "Pretendard";
  line-height: 2rem;
}
main .inner h1{
  color: #0043a3;
  padding-bottom: 30px;
}
/* 스토리 */
.story {
  display: flex;
  align-items: center;
  gap: 50px;
}
.story-img {
  height: 350px;
  /* width: 200px; */
  /* background-color: yellowgreen; */
}
.story-img img {
  height: 100%;
  /* width: 100%; */
  /* display: block; */
}
.story-txt {
  color: #0043a3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* 키워드 */
.story-keyword {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
}
.story-keyword .txt {
  color: #0043a3;
  display: flex;
  gap: 0px;
  align-items: center;
}
.story-keyword .keyword {
  min-width: 130px;
  height: 130px;
  background: radial-gradient(circle, #ffffff, #c4dbfd, #72abff);
  border-radius: 10px 100px 100px 100px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.story-keyword h3 {
  margin: 0;
}
.story-keyword .desc{
  border-bottom: 1px solid #0044a33b;
  padding: 7px;
  width: 300px;
  text-align: end;
  font-size: 15px;
}