@charset "UTF-8";
/* 오버레이 */
/* @import url('https://fonts.googleapis.com/css?family=Noto+Serif+KR:200,300'); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900");
ul, li {
  list-style-type: none;
}

/*/////////커스텀 컬러*/
/* 텍스트 이펙트 */
.visu-top {
  animation: top 1s ease-out 0s both;
}

.visu-top2 {
  animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  animation: top3 1s ease-out 0s both;
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}
@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

section.sub_visual {
  margin-top: 130px;
}
section.sub_visual .sub_visual_cont {
  width: 100%;
  height: 350px;
}
section.sub_visual .sub_visual_cont .cont_left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateX(-100%);
  transition: all cubic-bezier(0.04, 0.73, 0.02, 1) 0.5s 0.8s;
}
section.sub_visual .sub_visual_cont .cont_left .tex_wrap {
  box-sizing: border-box;
  padding-left: 20px;
  width: 750px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-100%);
  transition: all cubic-bezier(0.04, 0.73, 0.02, 1) 0.5s 1.2s;
}
section.sub_visual .sub_visual_cont .cont_left .tex_wrap .h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 42px;
  color: #19191a;
  margin-bottom: 30px;
}
section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #19191a;
}
section.sub_visual .sub_visual_cont .cont_left.active {
  opacity: 1;
  transform: translateX(0);
}
section.sub_visual .sub_visual_cont .cont_left.active .tex_wrap {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 1200px) {
  section.sub_visual {
    margin-top: 130px;
  }
  section.sub_visual .sub_visual_cont {
    height: 250px;
  }
  section.sub_visual .sub_visual_cont .cont_left {
    width: 60%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap {
    padding-left: 20px;
    width: 100%;
    height: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }
}
@media screen and (max-width: 992px) {
  section.sub_visual {
    margin-top: 50px;
  }
  section.sub_visual .sub_visual_cont {
    height: 200px;
  }
  section.sub_visual .sub_visual_cont .cont_left {
    width: 60%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap {
    padding: 0 20px;
    width: 100%;
    height: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section.sub_visual {
    margin-top: 50px;
  }
  section.sub_visual .sub_visual_cont {
    height: 200px;
  }
  section.sub_visual .sub_visual_cont .cont_left {
    width: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap {
    padding: 0 20px;
    width: 100%;
    height: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  section.sub_visual {
    margin-top: 50px;
  }
  section.sub_visual .sub_visual_cont {
    height: 230px;
  }
  section.sub_visual .sub_visual_cont .cont_left {
    width: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap {
    padding: 0 20px;
    width: 100%;
    height: 100%;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 14px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }
  section.sub_visual .sub_visual_cont .cont_left .tex_wrap .p br {
    display: none;
  }
}

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