@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap");
.bg {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bg .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: 40% 60%;
}

.top {
  position: relative;
  height: 100vh;
}

.top-slogan {
  position: sticky;
  top: calc(100vh - 100px);
  color: #fff;
  font-size: 26px;
  text-shadow: black 0 0 0.5em;
  line-height: 1.5em;
  text-align: center;
  z-index: 2;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.top-slogan.show {
  -moz-transform: translateY(-75px);
  -ms-transform: translateY(-75px);
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
}

.block {
  position: relative;
  margin: 300px 0;
}
.block:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: -20px;
  left: 50%;
  margin: 0 0 0 7.5px;
  background: #333;
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.process {
  position: relative;
  width: 60%;
  margin: 100px auto;
}
.process-team {
  position: relative;
  border: solid 1px #333;
}
.process-box {
  position: relative;
  width: 60%;
  margin: 0 auto;
  color: #fff;
  background: #000;
}
.process-box:before, .process-box:after {
  position: absolute;
  width: 5px;
  height: 50px;
  left: calc(50% + 8.5px - 2px);
  background: #333;
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.process-box:before {
  top: -100px;
}
.process-box:after {
  bottom: -100px;
}
.process-box.movin:before, .process-box.movin:after {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.process-info {
  position: relative;
}
.process-info:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 0;
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.movin .process-info:before {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.process-img {
  position: absolute;
  width: 100%;
  height: -webkit-fill-available;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  opacity: 1;
  -webkit-filter: saturate(0.4);
  filter: saturate(0.4);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.process-photo {
  position: relative;
  width: 100%;
  height: 22vw;
  top: 0;
  left: 0;
  background-position: 0 65%;
  background-size: cover;
  -webkit-filter: saturate(0.4);
  filter: saturate(0.4);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.process-photo:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.movin .process-photo:before {
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.process-in {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 50px;
}
.process-in:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.process-in.show:before {
  width: 0;
}
.process-title {
  line-height: 1.5;
  padding: 0 0 10px 0;
  display: flex;
  align-items: flex-end;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.movin .process-title {
  mix-blend-mode: difference;
}
.process-inner {
  padding: 0 0 0 51px;
  line-height: 1.8;
  -moz-transition: all 0.6s 0.2s;
  -o-transition: all 0.6s 0.2s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.2s;
  transition: all 0.6s 0.2s;
}
.movin .process-inner {
  mix-blend-mode: difference;
}
.process-inner .remark {
  line-height: 1.5;
  color: #aaa;
  margin: 0 0 0 12px;
}
.process-inner .remarkin {
  font-size: 15px;
  margin: 0 0 0 26px;
}
.process-consult {
  display: block;
  padding: 7px 8px 5px;
  margin: 0 0 0 30px;
  color: #666;
  font-size: 12px;
  background: #000;
  border: solid 1px #666;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.process-consult:hover {
  color: #fff;
}

@-moz-keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.mo {
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s 0.1s;
  -o-transition: opacity 0.6s, -o-transform 0.6s 0.1s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0s, 0.1s;
  transition: opacity 0.6s, transform 0.6s 0.1s;
}
.mo.mov {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 1300px) {
  .process, .process-box {
    width: 80%;
  }
}
@media screen and (min-width: 901px) {
  .process-team {
    width: calc(50% - 15px);
  }
  .process-team:nth-child(odd) {
    padding: 15px 15px 15px 0;
    margin: -15px 0 0 7.5px;
    border-left: unset;
  }
  .process-team:nth-child(odd) .process-info {
    box-shadow: 1px 2px 2px #000;
  }
  .process-team:nth-child(odd) .process-info:before {
    -moz-transform-origin: right 50%;
    -ms-transform-origin: right 50%;
    -webkit-transform-origin: right 50%;
    transform-origin: right 50%;
  }
  .process-team:nth-child(even) {
    padding: 15px 0 15px 15px;
    margin: -15px 0 0 calc(50% - 7.5px);
    border-right: unset;
  }
  .process-team:nth-child(even) .process-info {
    box-shadow: -1px 2px 2px #000;
  }
  .process-team:nth-child(even) .process-info:before {
    -moz-transform-origin: left 50%;
    -ms-transform-origin: left 50%;
    -webkit-transform-origin: left 50%;
    transform-origin: left 50%;
  }
  .process-team:first-child {
    border-top: unset;
    margin: 0 0 0 7.5px;
  }
  .process-team:last-child {
    border-bottom: unset;
  }
  .process-info {
    padding: 50px 30px;
    min-height: 10vw;
    overflow: hidden;
  }
  .process-rect {
    position: absolute;
    height: -webkit-fill-available;
    top: 0;
    right: -30px;
    color: #aaa;
    text-align: center;
    writing-mode: vertical-lr;
  }
  .process-boxin1:before, .process-boxin1:after {
    content: "";
  }
  .process-boxin1 .process-title {
    padding: 0;
  }
  .process-boxin1 .process-inner {
    width: calc(100% - 60px);
  }
  .process-boxin1 .process-rect {
    display: none;
  }
  .process-boxin2:before {
    content: "";
  }
  .movin .process-img {
    opacity: 0.15;
    -webkit-filter: saturate(0.4) contrast(1.2);
    filter: saturate(0.4) contrast(1.2);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }
  .process-title span:first-child {
    width: 45px;
    font-size: 20px;
  }
  .process-title span:last-child {
    display: block;
    width: 15px;
    height: 1px;
    margin: 0 0 8px;
    background: #fff;
  }
}
@media screen and (max-width: 900px) {
  .block:before {
    display: none;
  }

  .process {
    margin: 60px auto 86px;
  }
  .process-team {
    width: 100%;
    border: unset;
  }
  .process-team:nth-child(odd) {
    margin: 0 0 60px 0;
  }
  .process-team:nth-child(even) {
    margin: 0 0 60px 0;
  }
  .process-info {
    display: flex;
    flex-flow: wrap;
    align-items: center;
  }
  .process-info:before {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .process-info:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 35vw);
    bottom: 0;
    right: 0;
    background: #000;
    z-index: 1;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
  }
  .process-info.show:after {
    width: 0;
  }
  .process-rect {
    color: #aaa;
    line-height: 2;
    letter-spacing: 2px;
    text-align: end;
  }
  .process-boxin1 .process-in {
    flex-flow: row-reverse;
  }
  .process-boxin1 .process-rect {
    position: absolute;
    top: calc(-35vw - 26px);
    right: 0;
  }
  .process-boxin2 .process-in {
    justify-content: center;
  }
  .process-in {
    padding: 0;
    align-items: center;
  }
  .process-in:before {
    right: 0;
    left: unset;
  }
  .process-img {
    position: relative;
    height: 35vw;
  }
  .process-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .movin .process-img {
    opacity: 1;
  }
  .movin .process-img:before {
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  .process-photo {
    height: 35vw;
  }
  .process-title {
    padding: 0 50px;
  }
  .process-title span:first-child {
    width: fit-content;
  }
  .process-title span:last-child {
    display: block;
    width: 1px;
    height: 24px;
    margin: 0 0 0 8px;
    background: #fff;
  }
  .process-inner {
    width: calc(100% - 225px);
    padding: 30px 0;
  }
}
@media screen and (max-width: 720px) {
  .process, .process-box {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 640px) {
  .block {
    margin: 100px 0;
  }

  .process-info {
    flex-flow: column;
  }
  .process-inner {
    width: calc(100% - 60px);
    padding: 30px;
  }
  .process-boxin1 .process-in {
    flex-flow: column-reverse;
  }
  .process-boxin1 .process-rect {
    top: calc(-55vw - 26px);
  }
  .process-boxin2 .process-in {
    text-align: center;
    flex-flow: column;
  }
  .process-info:after {
    height: calc(100% - 55vw);
  }
  .process-img {
    height: 55vw;
  }
  .process-photo {
    height: 55vw;
  }
  .process-title {
    width: calc(100% - 60px);
    padding: 30px 30px 0;
  }
  .process-title span:first-child {
    border-bottom: solid 1px #ccc;
  }
  .process-title span:last-child {
    width: 2px;
    height: 2px;
  }
  .process-consult {
    margin: 0 0 30px;
  }
}
