/***************************
  ## 카피라이터
***************************/
#sclass3 { position:relative; background-color:#fff; }
#sclass3 .wrap-content { position:relative; width:100%; }

#sclass3 .wrap-content .cont1 {
  position:relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 450px;
  transition: all 0.3s ease;
  font-size: 1.8rem; color: #fff; text-align: center; line-height: 2.4rem; overflow: hidden;
}

#sclass3 .wrap-content .cont1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./img/bg1.jpg);
  background-size: cover;
  background-position: center;
  transform: scale(1.1); /* 시작: 크게 */
  animation:  5s ease-out forwards;
}
#wrap_sclass3_copyright.active .wrap-content .cont1::before { animation-name: zoomOut}

#sclass3 .wrap-content .quick-bottom {
  position: relative; display: block; transition: 0.3s ease;
}

@keyframes zoomOut {
  to {
    transform: scale(1); /* 끝: 정상 크기 */
  }
}

@media (max-height:  950px) {
  #sclass3 .wrap-content .cont1  { height:250px }
}


@media (max-height:  800px) {
  #sclass3 .wrap-content .cont1  { height:150px }
  #sclass3 .wrap-content .cont1 div { display:none }
}

@media (max-height:  650px) {
  #sclass3 .wrap-content .quick-bottom { height:0px }
}


