@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hide-scroll 5s backwards;
}

@keyframes hide-scroll {
  0% {
    overflow: hidden;
  }

  100% {
    overflow: auto;
  }
}

.container {
  max-width: 100%;
  height: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin-bottom: 0px;
}

ul {
  list-style: none;
}

div {
  display: block;
}

img {
  object-position: center center;
}

span {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

/* 헤더 */
.header-background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

header {
  width: 1200px;
  height: 72px;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

header .logo {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  z-index: 3;
}

header .list-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 3;
}

/* 헤더 메뉴 호버 시 글자 변하는 인터렉션 */
header .list-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.menu-item {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}

.navitem1 {
  color: #fff;
}

.navitem2,
.navitem3,
.navitem4,
.navitem5 {
  color: #888;
}

.menu-item>div:nth-child(1) span {
  will-change: transform;
  transform-style: preserve-3d;
  transition: .5s ease;
  transition-delay: calc(.05s * var(--index));
  transform-origin: bottom;
  display: inline-block;
}

.hover_clone {
  font-family: 'Playfair Display', serif !important;
  white-space: nowrap;
  font-style: italic;
  font-weight: 500;
}

.menu-item>div:nth-child(2) span {
  will-change: transform;
  transform-style: preserve-3d;
  transition: .5s ease;
  transition-delay: calc(.05s * var(--index));
  transform-origin: top;
  display: inline-block;
  transform: translateY(100%) rotateX(-90deg);
}

.menu-item:hover>div:nth-child(1) span {
  transform: translateY(-100%) rotateX(-90deg)
}

.menu-item:hover>div:nth-child(2) span {
  transform: translate(0) rotateX(0)
}

header .list-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1 1 0;
  justify-content: flex-end;
  z-index: 3;
}

header .list-icon a img {
  width: 24px;
  height: 24px;
}

/* 헤더 메뉴 아이콘 호버 시 색 변환 자연스럽게 */
.bookmark {
  position: relative;
}

.navitem5-1 img {
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0;
  transition: opacity .3s ease;
}

.bookmark:hover .navitem5-1 img {
  opacity: 1;
}

.pin {
  position: relative;
}

.navitem6-1 img {
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0;
  transition: opacity .3s ease;
}

.pin:hover .navitem6-1 img {
  opacity: 1;
}

.share {
  position: relative;
}

.navitem7-1 img {
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0;
  transition: opacity .3s ease;
}

.share:hover .navitem7-1 img {
  opacity: 1;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 6;
}

/* 모바일버전 메뉴 */
.menu__mobile {
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}

.menu__mobile .menu__mobile--close {
  position: absolute;
  font-weight: 400;
  font-size: 18px;
  right: 30px;
  top: 24px;
  color: #222;
  letter-spacing: -0.06em;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.menu__mobile .menu__mobile--content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.menu__mobile .menu__mobile--content a {
  font-family: 'Poppins', sans-serif;
}

.menu__mobile .menu__mobile--content a,
.menu__mobile .menu__mobile--content span {
  color: #222;
  font-weight: 400;
  font-size: 44px;
  /* margin-bottom: 10px; */
  cursor: pointer;
  letter-spacing: -0.04em;
}

.menu__mobile--icon {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  position: absolute;
  right: 30px;
  bottom: 28px;
}

.menu__mobile--icon div img {
  height: 28px;
  width: 28px;
}

.mobile-only {
  display: none;
}

/* --------------------미디어쿼리 헤더------------------ */
@media all and (min-width:992px) and (max-width:1200px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }

  header {
    width: 872px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .container {
    max-width: 100%;
  }

  header {
    width: 648px;
    height: 54px;
  }

  .header-background {
    height: 54px;
  }

  header .list-menu {
    display: none;
  }

  .navitem7,
  .navitem7-1 {
    display: none;
  }

  .mobile-only {
    display: block;
    cursor: pointer;
  }
}

@media all and (max-width:767px) {
  .container {
    max-width: 100%;
  }

  .mobile-only {
    display: block;
    cursor: pointer;
  }

  header {
    width: 100vw;
    padding: 0 16px;
    height: 54px;
  }

  .header-background {
    height: 54px;
  }

  header .list-menu {
    display: none;
  }

  .navitem7,
  .navitem7-1 {
    display: none;
  }
}


.carousel-inner,
.carousel,
.carousel-item,
.carousel-container {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.carousel-item.horizon {
  transition-duration: 0.3s;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
}

.horizon.carousel-item-prev:not(.carousel-item-end),
.horizon.active.carousel-item-start {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
}

.horizon.carousel-item-next:not(.carousel-item-start),
.horizon.active.carousel-item-end {
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
}


.indicators {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  height: calc(100% + 72px);
  right: 72px;
}

.carousel-indicators {
  position: inherit;
  margin: auto;
  display: block;
  color: #222;
  bottom: inherit;
}

.carousel-indicators [data-bs-target] {
  background: #888;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.04em;
}

.carousel-indicators li.active {
  position: relative;
  width: 8px;
  height: 8px;
  background: #222;
  color: #222;
  margin-left: -1px;
}

.carousel-indicators li:first-child.active {
  background: white;
  color: white;
}

.roll-in-blurred-right {
  -webkit-animation: roll-in-blurred-right 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  animation: roll-in-blurred-right 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-2-15 0:50:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation roll-in-blurred-right
 * ----------------------------------------
 */
@-webkit-keyframes roll-in-blurred-right {
  0% {
    -webkit-transform: translateX(1000px) rotate(720deg);
    transform: translateX(1000px) rotate(720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes roll-in-blurred-right {
  0% {
    -webkit-transform: translateX(1000px) rotate(720deg);
    transform: translateX(1000px) rotate(720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* 여기서부터 덮어쓰기!! */
#carousel-item {
  width: 100%;
}

.container {
  padding: 0px;
}

.carousel-indicators [data-bs-target] {
  /* text-indent: -100px; */
  color: rgba(255, 255, 255, 0);
  margin-left: auto;
  margin-right: auto;
  border-top: 0px solid transparent;
  border-bottom: 0px solid transparent;
  opacity: 1;
  text-align: right;
}

.carousel-indicators [data-bs-target]:last-child {
  margin-bottom: 0;
}

#vertical-carousel {
  float: right;
}

.carousel-indicators [data-bs-target] p {
  position: absolute;
  top: -5px;
  right: 24px;
}

.design-info {
  position: absolute;
  z-index: 10;
  left: 76px;
  top: 50%;
  color: #fff;
  transform: rotate(-90deg);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.04em;
}

#designer_name {
  font-family: 'Noto Sans KR', sans-serif;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* 미디어쿼리 디자인 프로세스 네비게이션 */
@media all and (min-width:992px) and (max-width:1200px) {
  .indicators {
    right: 20px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  /* .indicators {
    display: none;
  } */

  .carousel-indicators [data-bs-target] {
    /* text-indent: -100px; */
    color: rgba(255, 255, 255, 0);
    margin-left: auto;
    margin-right: auto;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 1;
    text-align: center;
    text-indent: inherit;
    background-color: transparent;
  }

  .carousel-indicators li.active {
    position: relative;
    width: 0px;
    height: 0px;
    background: #222;
    color: #222;
    margin-left: -1px;
  }

  .carousel-indicators [data-bs-target] p {
    font-size: 16px;
    line-height: 24px;
    position: fixed;
    top: inherit;
    bottom: 24px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    text-indent: inherit;
  }

  .carousel-indicators li:first-child.active {
    background: transparent;
    color: #222;
  }
}

@media all and (max-width:767px) {
  /* .indicators {
    display: none;
  } */

  .carousel-indicators [data-bs-target] {
    /* text-indent: -100px; */
    color: rgba(255, 255, 255, 0);
    margin-left: auto;
    margin-right: auto;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 1;
    text-align: center;
    text-indent: inherit;
    background-color: transparent;
  }

  .carousel-indicators li.active {
    position: relative;
    width: 0px;
    height: 0px;
    background: #222;
    color: #222;
    margin-left: -1px;
  }

  .carousel-indicators [data-bs-target] p {
    font-size: 16px;
    line-height: 24px;
    position: fixed;
    top: inherit;
    bottom: 24px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    text-indent: inherit;
  }

  .carousel-indicators li:first-child.active {
    background: transparent;
    color: #222;
  }
}

/* 페이지별 css */
/* overview */
.overview {
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
}

.overview .black-box {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.overview .img-container img {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.overview .content-container {
  width: 1200px;
  height: 437px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: absolute;
  z-index: 2;
}

.overview .content1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.overview .content2 {
  display: flex;
  justify-content: space-between;
}


.overview .content1 .title {
  /* width: 640px; */
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -0.09em;
  color: #FFFFFF;
  word-break: keep-all;
}

.overview .designer {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-align: right;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  word-break: keep-all;

  margin-top: 194px;
}

.overview .sub-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 41px;
  color: #FFFFFF;
  word-break: keep-all;
}

.overview .paragraph {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  text-align: right;
  width: 600px;
  word-break: keep-all;
}

::-webkit-scrollbar {
  width: 0px;
  /*스크롤바의 너비*/
}

/* 미디어쿼리 overview */
@media all and (min-width:992px) and (max-width:1200px) {
  .overview .content-container {
    width: 872px;
  }

  .overview .paragraph {
    width: 442px;
  }

  .overview .sub-title {
    font-size: 22px;
  }

  .overview .paragraph {
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  /* .overview {
    overflow-y: auto;
    overflow-x: hidden;
  } */

  .overview .content-container {
    width: 648px;
    height: 100%;

    display: block;
  }

  .overview .content1 .title {
    font-size: 80px;
    line-height: 80px;
  }

  .overview .designer {
    font-weight: 500;
    font-size: 18px;
  }

  .overview .content2 {
    display: flex;
    flex-direction: column;
    height: 55vh;
  }

  .overview .sub-title {
    font-size: 22px;
    line-height: 32px;
    margin-top: 32px;
  }

  .overview .paragraph {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    width: 100%;
  }
}

@media all and (max-width:767px) {
  /* .overview {
    overflow-y: auto;
    overflow-x: hidden;
  } */

  .overview .content-container {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    display: block;
    /* justify-content: center; */
  }

  .overview .content1 {
    align-items: flex-end;
    margin-top: 70px;
  }

  .overview .content1 .title {
    font-size: 52px;
    line-height: 52px;
  }

  .overview .designer {
    font-size: 14px;
    margin-top: 0px;
  }

  .overview .content2 {
    display: flex;
    flex-direction: column;
    height: 60vh;
  }

  .overview .sub-title {
    font-size: 16px;
    line-height: 150%;
    margin-top: 20px;
  }

  .overview .paragraph {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
    width: 100%;
  }
}

/* type1 */
.type1 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type1 .content-container1 {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.type1 .img-container img {
  width: 616px;
  height: 80vh;
  object-fit: cover;
}

.type1 .title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 130%;
  color: #222;
  width: 410px;
  letter-spacing: -0.07em;
  word-break: keep-all;
}

.type1 .paragraph1 {
  width: 410px;
  margin-top: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #6E6E6E;
  width: 410px;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

/* 미디어쿼리 type1 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type1 .content-container1 {
    width: 872px;
  }

  .type1 .img-container img {
    width: 402px;
  }

  .type1 .title {
    font-size: 34px;
  }

  .type1 .paragraph1 {
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type1 {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .type1 .content-container1 {
    width: 648px;
    height: 100%;
    flex-direction: column;
  }

  .type1 .content-container1 .content {
    order: 2;
  }

  .type1 .content-container1 .content2 {
    width: 100vw;
    order: 1;
  }

  .type1 .title {
    font-size: 34px;
    width: 100%;
    margin-top: 80px;
  }

  .type1 .paragraph1 {
    font-size: 16px;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 240px;
  }

  .type1 .img-container img {
    width: 100%;
  }
}

@media all and (max-width:767px) {
  .type1 {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .type1 .content-container1 {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    flex-direction: column;
  }

  .type1 .content-container1 .content {
    order: 2;
  }

  .type1 .content-container1 .content2 {
    width: 100vw;
    order: 1;
  }

  .type1 .title {
    font-size: 28px;
    width: 100%;
    margin-top: 82px;
  }

  .type1 .paragraph1 {
    font-size: 14px;
    width: 100%;
    margin-top: 58px;
    margin-bottom: 210px;
  }

  .type1 .img-container img {
    width: 100%;
    height: 532px;
  }
}

/* type2 */
.type2 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type2 .img-container img {
  width: 1200px;
  height: 60vh;
  object-fit: cover;
}

.type2 .content {
  width: 1200px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.type2 .title {
  width: 391px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 130%;
  color: #222;
  width: 392px;
  letter-spacing: -0.07em;
  word-break: keep-all;
}

.type2 .paragraph1 {
  width: 709px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #6E6E6E;
  width: 710px;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

/* 미디어쿼리 type2 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type2 .img-container img {
    width: 872px;
    height: 50vh;
  }

  .type2 .content {
    width: 872px;
    margin-top: 60px;
    display: block;
  }

  .type2 .title {
    width: 100%;
  }

  .type2 .paragraph1 {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type2 {
    overflow-y: auto;
    overflow-x: hidden;

    height: 100%;
  }

  .type2 .img-container img {
    width: 100vw;
  }

  .type2 .content {
    width: 648px;
    margin-top: 60px;
    display: block;
  }

  .type2 .title {
    width: 100%;
  }

  .type2 .paragraph1 {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 130px;
  }
}

@media all and (max-width:767px) {
  .type2 {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
  }

  .type2 .img-container img {
    width: 100%;
    height: 400px;
  }

  .type2 .content {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    display: block;
    margin-top: 52px;
  }

  .type2 .title {
    width: 100%;
  }

  .type2 .paragraph1 {
    width: 100%;
    margin-top: 56px;
    font-size: 14px;
    margin-bottom: 138px;
  }
}

/* type3 */
.type3 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type3 .img-container img {
  width: 1200px;
  height: 45vh;
  object-fit: cover;
}

.type3 .content-container {
  width: 959px;
  display: flex;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.type3 .title {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 88px;
  line-height: 88px;
  letter-spacing: -0.1em;
  color: #222222;
  word-break: break-all;
  width: 450px;
}

.type3 .sub-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 130%;
  letter-spacing: -0.06em;
  color: #222222;
  width: 388px;
  word-break: keep-all;
}

.type3 .paragraph1 {
  width: 388px;
  margin-top: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #6E6E6E;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

/* 미디어쿼리 type3 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type3 .img-container img {
    width: 872px;
    height: 45vh;
  }

  .type3 .content-container {
    width: 872px;
    margin-top: 54px;
  }

  .type3 .title {
    font-size: 80px;
    line-height: 80px;
  }

  .type3 .sub-title {
    font-size: 34px;
  }

  .type3 .paragraph1 {
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type3 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    height: 100%;
  }

  .type3 .img-container img {
    width: 100vw;
    height: 424px;
  }

  .type3 .content-container {
    width: 648px;
    display: block;
  }

  .type3 .title {
    width: 100%;
    font-size: 80px;
    line-height: 80px;
    margin-top: 44px;
  }

  .type3 .sub-title {
    margin-top: 26px;
    font-size: 34px;
    width: 100%;
  }

  .type3 .paragraph1 {
    margin-top: 26px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 130px;
  }
}

@media all and (max-width:767px) {
  .type3 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    height: 100%;
  }

  .type3 .img-container img {
    width: 100%;
    height: 308px;
  }

  .type3 .content-container {
    width: 100%;
    padding: 0 16px;
    display: block;
    margin-top: 0px;
  }

  .type3 .title {
    width: 100%;
    font-size: 47px;
    line-height: 56px;
    margin-top: 52px;
  }

  .type3 .sub-title {
    width: 100%;
    margin-top: 26px;
    font-size: 28px;
  }

  .type3 .paragraph1 {
    margin-top: 40px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 130px;
  }
}

/* type4 */
.type4 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type4 .img1 {
  width: 552px;
  height: 35vh;
  object-fit: cover;
}

.type4 .img2 {
  width: 588px;
  height: 90vh;
  object-fit: cover;
}

/* .type4 .content1 {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.type4 .content2 {
  height: 80vh;
} */

.type4 .content-container4 {
  width: 1200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: flex-start;
}

.type4 .title {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.1em;
  color: #222222;
  margin-top: 40px;
  width: 552px;
  word-break: keep-all;
}

.type4 .paragraph1 {
  width: 552px;
  margin-top: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #6E6E6E;
  word-break: keep-all;
}

/* 미디어쿼리 type4 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type4 .img1 {
    width: 406px;
  }

  .type4 .img2 {
    width: 426px;
    height: 80vh;
  }

  .type4 .content-container4 {
    width: 872px;
  }

  .type4 .title {
    width: 406px;
    font-size: 60px;
  }

  .type4 .paragraph1 {
    width: 406px;
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type4 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: flex-start;
    height: 100%;
  }

  .type4 .img1 {
    width: 648px;
    height: 504px;
  }

  .type4 .img2 {
    width: 648px;
    height: 894px;
    margin-bottom: 130px;
  }

  .type4 .content-container4 {
    width: 648px;
    display: block;
  }

  .type4 .content1 {
    display: flex;
    flex-direction: column;
  }

  .type4 .img-container1 {
    order: 2;
  }

  .type4 .title {
    font-size: 60px;
    order: 1;
    margin-top: 100px;
    margin-bottom: 40px;
    width: 648px;
  }

  .type4 .paragraph1 {
    font-size: 16px;
    width: 100%;
    order: 3;
    margin-top: 28px;
    margin-bottom: 68px;
  }
}

@media all and (max-width:767px) {
  .type4 {
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: flex-start;
    height: 100%;
    padding-top: 54px;
  }

  .type4 .img1 {
    width: 100%;
    height: 232px;
  }

  .type4 .img2 {
    width: 100%;
    height: 400px;
    margin-bottom: 130px;
  }

  .type4 .content-container4 {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    display: block;
  }

  .type4 .content1 {
    display: flex;
    flex-direction: column;
  }

  .type4 .img-container1 {
    order: 2;
  }

  .type4 .title {
    font-size: 47px;
    line-height: 56px;
    order: 1;
    margin-top: 88px;
    margin-bottom: 64px;
    width: 100%;
  }

  .type4 .paragraph1 {
    font-size: 14px;
    width: 100%;
    order: 3;
    margin-top: 28px;
    margin-bottom: 68px;
  }
}

/* type 5*/
.type5 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type5 .img1 {
  width: 387px;
  height: 250px;
  object-fit: cover;
}

.type5 .img2 {
  width: 387px;
  height: 250px;
  object-fit: cover;
}

.type5 .img3 {
  width: 387px;
  height: 250px;
  object-fit: cover;
}

.type5 .title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.1em;
  color: #222222;
  margin-bottom: 88px;
  word-break: keep-all;
}

.type5 .content-container5 {
  width: 1200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.type5 p {
  width: 387px;
  margin-top: 32px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #6E6E6E;
  word-break: keep-all;
}

/* 미디어쿼리 type5 */
@media all and (min-width:992px) and (max-width:1200px) {

  .type5 .content-container,
  .type5 .content-container5 {
    width: 872px;
  }

  .type5 .img1,
  .type5 .img2,
  .type5 .img3 {
    width: 281px;
    height: 182px;
  }

  .type5 .title {
    font-size: 60px;
  }

  .type5 p {
    width: 281px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type5 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    justify-content: flex-start;
  }

  .type5 .img1,
  .type5 .img2,
  .type5 .img3 {
    width: 648px;
    height: 418px;
  }

  .type5 .title {
    font-size: 60px;
    line-height: 68px;
    margin-top: 100px;
    margin-bottom: 64px;
    width: 648px;
  }

  .type5 .content-container5 {
    width: 648px;
    display: block;
  }

  .type5 p {
    width: 100%;
    margin-top: 28px;
    font-size: 16px;
    margin-bottom: 68px;
  }

  .type5 .content3 {
    margin-bottom: 200px;
  }
}

@media all and (max-width:767px) {
  .type5 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    justify-content: flex-start;
  }

  .type5 .img1,
  .type5 .img2,
  .type5 .img3 {
    width: 100%;
    height: 240px;
  }

  .type5 .content-container {
    width: 100%;
    height: 100%;
    padding: 0 16px;
  }

  .type5 .content-container5 {
    width: 100%;
    display: block;
  }

  .type5 .title {
    font-size: 47px;
    line-height: 56px;
    margin-top: 88px;
    margin-bottom: 64px;
  }

  .type5 p {
    width: 100%;
    margin-top: 28px;
    font-size: 14px;
    margin-bottom: 68px;
  }

  .type5 .content3 {
    padding-bottom: 62px;
  }
}

/* type6 */
.type6 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type6 .img1 {
  width: 764px;
  height: 523px;
  object-fit: cover;
}

.type6 .content-container6 {
  width: 1200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.type6 .sub-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #ADADAD;
  margin-bottom: 12px;
  word-break: keep-all;
}

.type6 .title {
  width: 388px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.1em;
  color: #222222;
  word-break: keep-all;
}

.type6 .paragraph1 {
  width: 388px;
  margin-top: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #6E6E6E;
  word-break: keep-all;
}

/* 미디어쿼리 type6 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type6 .content-container6 {
    width: 872px;
  }

  .type6 .img1 {
    width: 444px;
  }

  .type6 .sub-title {
    font-size: 16px;
  }

  .type6 .title {
    font-size: 60px;
  }

  .type6 .paragraph1 {
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type6 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    display: block;
  }

  .type6 .content-container6 {
    width: 648px;
    display: block;
  }

  .type6 .img1 {
    width: 648px;
    height: 444px;
    margin-bottom: 44px;
  }

  .type6 .sub-title {
    font-size: 16px;
  }

  .type6 .title {
    font-size: 60px;
    line-height: 68px;
    width: 100%;
  }

  .type6 .paragraph1 {
    width: 100%;
    margin-top: 26px;
    font-size: 16px;
    margin-bottom: 130px;
  }
}

@media all and (max-width:767px) {
  .type6 {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding-top: 102px;
    display: block;
  }

  .type6 .content-container6 {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .type6 .img1 {
    width: 100%;
    height: 204px;
    margin-bottom: 52px;
  }

  .type6 .sub-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .type6 .title {
    width: 100%;
    font-size: 47px;
    line-height: 56px;
  }

  .type6 .paragraph1 {
    width: 100%;
    margin-top: 40px;
    font-size: 14px;
    margin-bottom: 130px;
  }
}

/* type7 */
.type7 {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.type7 .img1 {
  width: 764px;
  height: 523px;
  object-fit: cover;
}

.type7 .content-container7 {
  width: 1200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.type7 .sub-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #ADADAD;
  margin-bottom: 12px;
  word-break: keep-all;
}

.type7 .title {
  font-family: 'Noto Sans KR', sans-serif;
  width: 388px;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.1em;
  color: #222222;
  word-break: keep-all;
}

.type7 .paragraph1 {
  width: 388px;
  margin-top: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #6E6E6E;
  word-break: keep-all;
}

/* 미디어쿼리 type7 */
@media all and (min-width:992px) and (max-width:1200px) {
  .type7 .content-container7 {
    width: 872px;
  }

  .type7 .img1 {
    width: 444px;
  }

  .type7 .sub-title {
    font-size: 16px;
  }

  .type7 .title {
    font-size: 60px;
  }

  .type7 .paragraph1 {
    font-size: 16px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .type7 {
    padding-top: 54px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    display: block;
  }

  .type7 .content-container7 {
    width: 648px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .type7 .content1 {
    order: 2;
  }

  .type7 .content2 {
    order: 1;
  }

  .type7 .img1 {
    width: 648px;
    height: 444px;
    margin-bottom: 44px;
  }

  .type7 .sub-title {
    font-size: 16px;
  }

  .type7 .title {
    width: 100%;
    font-size: 60px;
    line-height: 68px;
  }

  .type7 .paragraph1 {
    width: 100%;
    margin-top: 26px;
    font-size: 16px;
    margin-bottom: 120px;
  }
}

@media all and (max-width:767px) {
  .type7 {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding-top: 102px;
    display: block;
  }

  .type7 .content-container7 {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .type7 .content1 {
    order: 2;
  }

  .type7 .content2 {
    order: 1;
  }

  .type7 .img1 {
    width: 100%;
    height: 204px;
    margin-bottom: 52px;
  }

  .type7 .sub-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .type7 .title {
    width: 100%;
    font-size: 47px;
    line-height: 56px;
  }

  .type7 .paragraph1 {
    width: 100%;
    margin-top: 40px;
    font-size: 14px;
    margin-bottom: 120px;
  }
}

/* video-page */
.video-page {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* 미디어쿼리 video-page */
@media all and (min-width:992px) and (max-width:1200px) {
  .conceptvideo {
    width: 872px;
    height: 524px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .conceptvideo {
    width: 100vw;
    height: 640px;
  }
}

@media all and (max-width:767px) {
  .conceptvideo {
    width: 100vw;
    height: 252px;
  }
}

/* designer-page */
.designer-page {
  max-width: 1200px;
  height: calc(100% + 72px);
  overflow: hidden;
  margin: auto;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.designer-page .img-container img {
  height: 488px;
  width: 327px;
  object-fit: cover;
}

.designer-page .content-container9 {
  width: 1200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

/* .designer-page .content2 {
  width: 821px;
} */

.info {
  margin-bottom: 50px;
}

.designer {
  display: inline-block;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
  color: #222222;
  margin-bottom: 12px;
  word-break: keep-all;
}

.major {
  display: inline-block;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #adadad;
  margin-left: 12px;
  word-break: keep-all;
}

.designer-introduction {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #6E6E6E;
  word-break: keep-all;
}

.contact {
  margin-bottom: 50px;
}

.title2 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #222222;
  margin-bottom: 8px;
  word-break: keep-all;
}

.designer-email {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #6E6E6E;
}

.interview1,
.interview2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.question {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #222222;
  margin-bottom: 8px;
}

.answer {
  width: 380px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6E6E6E;
  word-break: keep-all;
}

/* 미디어쿼리 designer-page */
@media all and (min-width:992px) and (max-width:1200px) {
  .designer-page {
    height: calc(100% + 118px);
  }

  .designer-page>.content-container9 {
    width: 872px;
    height: 600px;
    position: relative;
  }

  .designer-page>.content-container9>.content2 {
    position: absolute;
    left: 240px;
  }

  .designer-page>.content-container9>.content2>.content3 {
    position: absolute;
    left: -240px;
    top: 348px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 872px;
  }

  .designer-page .img-container img {
    width: 200px;
    height: 300px;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .designer-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
  }

  .designer-page>.content-container9 {
    width: 648px;
    height: 600px;
    position: relative;
  }

  .designer-page>.content-container9>.content2 {
    position: absolute;
    left: 240px;
  }

  .designer-page>.content-container9>.content2>.content3 {
    position: absolute;
    left: -240px;
    top: 348px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 648px;
  }

  .designer-page .img-container img {
    width: 200px;
    height: 300px;
  }

  .info {
    margin-bottom: 28px;
  }

  .designer {
    font-size: 36px;
  }

  .major {
    font-size: 18px;
  }

  .designer-introduction {
    font-size: 16px;
  }

  .title2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .designer-email {
    font-size: 16px;
    line-height: 20px;
  }

  .question {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .answer {
    font-size: 14px;
    width: 304px;
  }
}

@media all and (max-width:767px) {
  .designer-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding-top: 102px;
  }

  .designer-page .content-container9 {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .designer-page .img-container img {
    height: 444px;
    width: 100%;
    margin-bottom: 32px;
  }

  .info {
    margin-bottom: 32px;
  }

  .designer {
    font-size: 22px;
    line-height: 32px;
  }

  .major {
    font-size: 16px;
  }

  .designer-introduction {
    width: 100%;
    font-size: 14px;
  }

  .contact {
    margin-bottom: 32px;
  }

  .title2 {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 2px;
  }

  .designer-email {
    font-size: 14px;
    line-height: 20px;
  }

  .interview1,
  .interview2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
  }

  .interview1 {
    margin-bottom: 24px;
  }

  .interview2 {
    margin-bottom: 130px;
  }

  .question {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .answer {
    width: 100%;
    font-size: 14px;
  }
}

@media all and (min-width:992px) and (max-width:1200px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}

@media all and (max-width:767px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}

/* 다음으로 가는 화살표 (모바일) */
.mobile-whitebox {
  background-color: #fff;
  width: 100vw;
  height: 72px;
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
}

.page-nav {
  position: fixed;
  bottom: 0px;
  display: none;
  align-items: center;
  z-index: 3;
  justify-content: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  /* background-color: #fff; */
}

.page-nav1 {
  background-color: rgba(0, 0, 0, 0);
}

.next-page img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: fixed;
  right: 76.5px;
  bottom: 24px;
}

.prev-page img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: fixed;
  left: 76.5px;
  bottom: 24px;
}

.page-nav .design-process {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: transparent;
  margin-bottom: 0px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  width: 174px;
}

.page-nav .design-process1 {
  color: #fff;
}

.white {
  display: none;
}

@media all and (min-width:992px) and (max-width:1200px) {
  .page-nav {
    display: none;
  }
}

@media all and (min-width:768px) and (max-width:991px) {
  .page-nav {
    display: flex;
  }

  .mobile-whitebox {
    display: block;
  }

  .next-page img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: fixed;
    right: 273.5px;
    bottom: 24px;
  }

  .prev-page img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: fixed;
    left: 273.5px;
    bottom: 24px;
  }
}

@media all and (max-width:767px) {
  .page-nav {
    display: flex;
  }

  .mobile-whitebox {
    display: block;
  }
}
