<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

 

/* 애니메이션 제거  */

.popupVideo:hover .card-img-top{
  width:80px;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
/* .popupVideo:hover .content{
  opacity:1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
} */

.popupVideo:hover .card-title::after {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s, opacity 0.35s;
  -webkit-transform: translate3d(1%,0,0);
  transform: translate3d(1%,0,0);
} 

.card-title::after {
    opacity:0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: black;
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s, opacity 0.35s;
    -webkit-transform: translate3d(-160%,0,0);
    transform: translate3d(-160%,0,0);
} 



.content{
  background-size: 100% 100%;
  width:100%;
  height:240px;
  display:table;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.video_sub_div{
  display:table-cell;
  vertical-align: middle;
}

.mdl_card {
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin: 0 auto;
  height:400px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

}

.card-title{
  display:table;
  font-size: 17px;
  color: #111111;
  font-weight: bold;
  padding : 20px 0px 0px 0px;
  position:relative;
  line-height: 25px;
  margin: -10px 10px 0 10px;

  font-family: "KoPubWorld M" !important;
}

.card-reg{
  font-size: 17px;
  color: #111111;
  float:left;
  line-height: 20px;
  text-align: left;
  padding:10px 10px 35px 10px;
}

.card-img-top{
  width:50px;
  margin:0 auto;
  opacity: 0.7;
}

.video-wrapper{
  height: calc(28vw);
}

.video-popup.reveal .video-popup-closer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9 
} 

.video-popup.reveal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index:9;

  background-color: rgba(50, 50, 50, 0.6);
  }

.video-popup .video-wrapper {
  position: relative;
  z-index: 10;
}

.video-popup .video-wrapper iframe {
  width:58vw; 
  height: 65vh;
}

@media(max-width:900px ){
  .video-popup .video-wrapper iframe {
    width:100vw; 
    height:40vh;
  }    
} 

.container{
  width: 1400px;
}

@media (min-width: 1200px){
  .col-lg-4 {
    width: 33.33%;
  }

  
}

@media(max-width:1200px ){
  /* .content{
    height:300px;
  } */

  .container{
    width: 100%;
  }

  .mdl_card {
    /* box-shadow:none; */
    height:100%;
  } 
}
@media(max-width: 765px){
  /* .content{
    height:39vw;
  } */
}
  
@media(max-width:400px){
  .card-title{
    font-size:16px;
  }
  .card-reg{
    font-size:14px;
  }

}

.card__one {
  transition: transform .5s;
}

.card__one::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 2s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
  content: '';
  opacity: 0;
  z-index: -1;
}

.card__one:hover, .card__one:focus {
  transform: scale3d(1.006, 1.006, 1);
}
.card__one::after {
    opacity: 1;
}

</pre></body></html>