* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

@font-face {
    font-family: 'NotoSansCJKkr-Medium';
    font-style: 'normal';
    font-weight: 'normal';
    src: url('../../font/NotoSansKR-Bold.woff2');
}
@font-face {
    font-family: 'NotoSansCJKkr-Medium';
    font-style: 'normal';
    font-weight: 'normal';
    src: url('../../font/NotoSansKR-Medium.woff2');
}
@font-face {
    font-family: 'NotoSansCJKkr-Regular';
    font-style: 'normal';
    font-weight: 'normal';
    src: url('../../font/NotoSansKR-Regular.woff2');
}
@font-face {
    font-family: 'NotoSansCJKkr-Light';
    font-style: 'normal';
    font-weight: 'normal';
    src: url('../../font/NotoSansKR-Light.woff2');
}

body, html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden
}

.main {
    width: 100%;
    height: 800px;
    background: url(../../img/works/work1/main_bg_1.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    background-blend-mode: multiply;
    overflow: hidden
}
.opac {
    width: 100%;
    height: 100%;
    background: rgb(104,224,207);
    background: -webkit-linear-gradient(top left, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    background: -o-linear-gradient(top left, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    background: linear-gradient(to bottom right, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    opacity: 0.6;
    background-blend-mode: multiply;
}


.header_wrap {
    width: 80%;
    position: absolute;
    left: 50%;
    margin-left: -40%;
    top: 50px;
    z-index: 10
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center
}
h1.logo {
    width: 150px;
}
h1.logo a {
    width: 100%;
}
h1.logo a img {
    width: 100%;
    object-fit: contain;
}

.header_menu {
    width: 45%;
}
.header_menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.header_menu li a {
    color: #fff;
    font-size: 1.25em;
    font-family: 'NotoSansCJKkr-Light';
    position: relative;
    line-height: 2em;
}
.header_menu li a:before {
    content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #E85320;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: .25s linear;
    display: inline-block
}
.header_menu li a.active {
    font-family: 'NotoSansCJKkr-Medium';
}
.header_menu li a.active:before, .header_menu li a:hover:before, .header_menu li a:focus:before {
    visibility: visible;
    transform: scaleX(1);
}

.hamburger {
    padding: 15px 15px;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff; 
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

.arrow_down {
    width: 50px;
    object-fit: contain;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -25px;
    -webkit-animation-name: arrow; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
    -webkit-animation-iteration-count: infinite;
    animation-name: arrow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes arrow {
  0% {bottom: 30px;}
  50% {bottom: 50px;}
  100% {bottom: 30px;}
}

/* Standard syntax */
@keyframes arrow {
  0% {bottom: 30px;}
  50% {bottom: 50px;}
  100% {bottom: 30px;}
}

.main_tit {
    position: absolute;
    width: 80%;
    left: 50%;
    margin-left: -40%;
    top: 35%;
}
img.plLogo {
    width: 200px;
    object-fit: contain;
    margin-bottom: 30px;
}
span.wo_sub {
    font-family: 'NotoSansCJKkr-Regular';
    font-size: 1.15em;
    color: #fff;    
    display: block;
    margin-left: 100px;
}
h2.wo_tit {
    font-family: 'NotoSansCJKkr-Bold';
    font-size: 2.75em;
    color: #fff;
    margin: 15px 0 15px 100px;
}
.pl_cate {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0 0 100px;
}
.pl_cate li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 50px;
}
.pl_cate li img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 15px;
}
.pl_cate li span {
    font-family: 'NotoSansCJKkr-Light';
    color: #fff;
    font-size: 1.15em;
}

.pw_link {
    font-family: 'NotoSansCJKkr-Regular';
    font-size: 1.25em;
    padding: 10px 40px;
    border-radius: 3em;
    color: #fff;
    display: block;
    width: 20%;
    margin: 25px 0;
    margin-left: 100px;
    background: rgb(104,224,207);
    background: -webkit-linear-gradient(top left, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    background: -o-linear-gradient(top left, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    background: linear-gradient(to bottom right, rgba(104,224,207,1) 0%, rgba(32,156,255,1) 100%);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
}
.pw_link::before {
      content: '';
      z-index: -1;
      position: absolute;
      bottom: 100%;
      right: 100%;
      width: 1em;
      height: 1em;
      border-radius: 50%;
      background-color: #209CFF;
      transform-origin: center;
      transform: translate(50%, 50%) scale(0);
      transition: transform 0.2s ease-in-out;
}
.pw_link:hover {
    cursor: pointer;
    color: #0B2847;
}
.pw_link:hover::before {
    transform: translate(50%, 50%) scale(50);
}


img.pl_mu {
    width: 90%;
    object-fit: contain;
    position: absolute;
    right: -30%;
    bottom: -225px;
    max-height: 770px;
}


    /* 콘텐츠 */

.cont {
    margin-top: 150px;
}

.intro {
    width: 90%;
    max-width: 1336px;
    float: left;
}
.titBox {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}
.tit_line {
    width: 100%;
    height: 1px;
    background: #FF3300;
    position: absolute;
    bottom: 0;
    left: 0;
}
h3 {
    font-family: 'NotoSansCJKkr-Medium';
    font-size: 1.5em;
    margin-left: 10%;
    position: relative;
    display: inline-block;
    line-height: 2em;
}
h3:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #FF3300;
    display: inline-block
}
.intro_box {
    width: 90%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center
}
.intro_txt {
    width: 35%;
}
.intro_txt p {
    font-family: 'NotoSansCJKkr-Regular';
    font-size: 1.15em;
    line-height: 2em;
}
.intro_sl {
    width: 520px; 
    height: 750px;
    overflow: hidden;
    border-radius: 5px;
}
.intro_sl>div {
    width: 100%;
    height: 100%;
    float: left;
    text-align: center
}
.intro_sl>div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


    /* 서비스 특징 */

.char {
    margin-top: 150px;
    width: 90%;
    max-width: 1336px;
    float: right;
}
.char h3 {
    position: absolute;
    bottom: 0;
    right: 10%;
}
.key_sl {
    width: 960px;
    margin: 0 auto;
    height: 540px;
    overflow: hidden;
    box-shadow: 0px 0px 8px #999999;
    margin-bottom: 50px;
    margin-top: 50px;
}
.key_container {
    width: 100%;
    height: 100%;
}
.key_wrapper {
    width: 100%;
    height: 100%;
}
.key_slide {
    float: left;
    width: 100%;
    height: 100%;
    text-align: center
}
.key_slide img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.key_point {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}
.key_point ul {
    width: 42.5%;
}
.key_point li {
    padding-bottom: 30px
}

p.key_tit {
    font-family: 'NotoSansCJKkr-Medium';
    font-size: 1.25em;
    padding-bottom: 10px;
}
p.key_det {
    font-family: 'NotoSansCJKkr-Light';
    font-size: 1.15em;
    line-height: 2em;
}


    /* 다음 비즈니스모델 이동 */

.pagi {
    width: 80%;
    float: left;
    margin: 0 10%;
    margin-top: 100px;
}
.pagi li {
    width: 50%;
    height: 250px;
    overflow: hidden;
    float: left;
}



.pagi li:nth-child(1) a {
    display: block;
    background: url(../../img/works/work6.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: all .5s; 
	-moz-transition: all .5s; 
	-o-transition: all .5s; 
	transition: all .5s;
    position: relative
}
.pagi li:nth-child(1) a .webOpac {
    width: 100%;
    height: 100%;
    background: #007843;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .2s; 
	-moz-transition: all .2s; 
	-o-transition: all .2s; 
	transition: all .2s;
}

.pagi li:nth-child(2) a {
    display: block;
    background: url(../../img/works/work2.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: all .5s; 
	-moz-transition: all .5s; 
	-o-transition: all .5s; 
	transition: all .5s;
}
.pagi li:nth-child(2) a .webOpac {
    width: 100%;
    height: 100%;
    background: #A13622;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .2s; 
	-moz-transition: all .2s; 
	-o-transition: all .2s; 
	transition: all .2s;
}
.pagi p {
    font-family: 'NotoSansCJKkr-Medium';
    font-size: 2em;
    color: #fff;
    position: absolute;
    width: 70%;
    left: 50%;
    margin-left: -35%;
    bottom: 100px;
    -webkit-transition: all .2s; 
	-moz-transition: all .2s; 
	-o-transition: all .2s; 
	transition: all .2s;
}
.pagi .webButton {
    width: 20%;
    position: absolute;
    right: 15%;
    bottom: 50px;
    -webkit-transition: all .2s; 
	-moz-transition: all .2s; 
	-o-transition: all .2s; 
	transition: all .2s;
}
.pagi .webButton img {
    width: 100%;
    object-fit: contain;
}
.pagi li a:hover .webOpac {
    opacity: 0.8
}
.pagi li a:hover p {
    font-size: 2em;
}
.pagi li a:hover .webButton {
    transform: scale(1.5)
}


.pagi li:nth-child(1) p {
    text-align: right;
}
.pagi li:nth-child(1) .webButton {
    left: 15%;
}




    /* FOOTER */

.footer {
    margin-top: 200px;
    width: 100%;
    background: #202020;
    float: left;
}
.footer_wrap {
    width: 80%;
    max-width: 1088px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    box-sizing: border-box
}
a.footerLogo {
    width: 150px;
}
a.footerLogo img {
    width: 100%;
    object-fit: contain
}
.footer_info {
    width: 50%;
}
.footer_info p {
    font-family: 'NotoSansCJKkr-Light';
    font-size: 1.125em;
    color: #aaaaaa;
    line-height: 1.6em;
}
.footer_info p.copyright {
    padding-top: 30px;
}

a.footer_download {
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 40px;
    border-radius: 3em;
    font-family: 'NotoSansCJKkr-Light';
    font-size: 1.15em;
     overflow: hidden;
    transition: color 0.2s ease-in-out;
    z-index: 1;
    outline: none;
    position: relative
}
.footer_download::before {
      content: '';
      z-index: -1;
      position: absolute;
      bottom: 100%;
      right: 100%;
      width: 1em;
      height: 1em;
      border-radius: 50%;
      background-color: #fff;
      transform-origin: center;
      transform: translate(50%, 50%) scale(0);
      transition: transform 0.2s ease-in-out;
}
.footer_download:hover {
    cursor: pointer;
    color: #133453;
    font-family: 'NotoSansCJKkr-Medium';
}
.footer_download:hover::before {
    transform: translate(50%, 50%) scale(50);
}





    /* 햄버거 메뉴 */

.hamburger {
    z-index: 999
}
.hb_menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0; 
    right: 0%;
    background: rgba(19, 52, 83, 0.9);
    z-index: 9;
    display: none;
}
.hb_menu.is-active {
    display: block
}
.sub_logo {
    width: 30%;
    margin: 0 auto;
    margin-top: 100px;
    display: block;
}
.sub_logo img {
    width: 100%;
    object-fit: contain
}
.hb_menu ul {
    margin-top: 100px;
}
.hb_menu li {
    padding: 50px 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #999;
}
.hb_menu li a {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'NotoSansCJKkr-Regular';
    font-size: 1.5em;
    color: #fff;
}











/* Mobile */

@media only screen and (max-width: 640px) {
    
    
    .hamburger {
        display: block;
    }
    .header_menu {
        display: none;
    }
    
    .sub {
        font-size: 0.75em
    }
    .workTit {
        font-size: 1.15em;
    }
    
}

/* Tablet */

@media only screen and (min-width: 641px) and (max-width: 1023px) {
    h2.tit {
        width: 80%;
    }
    .header_wrap {
        width: 90%;
        margin-left: -45%;
    }
    .footer {
        margin-top: 100px;
    }
    .footer_wrap {
        width: 96%
    }
    .hamburger {
        display: block;
    }
    .header_menu {
        display: none;
    }
    
    
    .main_tit {
        width: 90%;
        margin-left: -45%;
    }
    .main_tit h2 {
        font-size: 2.8em;
    }
    .main_tit span.acc {
        font-size: 1.25em;
    }
    img.pl_mu {
        bottom: -125px;
    }
    .intro, .char {
        width: 100%;
    }
    .intro_box {
        width: 96%;
        margin: 0 2%;
    }
    .intro_txt {
        width: 40%;
    }
    .pagi {
        width: 90%;
        margin: 0 5%;
        margin-top: 100px;
    }
    .pagi p {
        width: 80%;
        margin-left: -40%;
    }
    
}

/* Large Screen */

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .main {
        height: 650px;
    }
    h2.tit {
        width: 80%;
    }
    .main1 img {
        left: 40%;
    }
    .header_wrap {
        width: 90%;
        margin-left: -45%;
    }
    .main_cont {
        margin-top: 100px;
    }
    .footer {
        margin-top: 100px;
    }
    .footer_wrap {
        width: 96%
    }
    
    .main_tit {
        width: 90%;
        margin-left: -45%;
    }
    .main_tit h2 {
        font-size: 2.8em;
    }
    .main_tit span.acc {
        font-size: 1.25em;
    }
    img.pl_mu {
        bottom: -125px;
    }
    .intro, .char {
        width: 100%;
    }
    .intro_box {
        margin: 0 5%;
    }
    .pagi {
        width: 90%;
        margin: 0 5%;
        margin-top: 100px;
    }
    .pagi p {
        width: 80%;
        margin-left: -40%;
    }
    

    
    
}

/* XLarge screen (Default) */

@media only screen and (min-width: 1440px) {
    /* basic */
}

/* XXLarge screen */

@media only screen and (min-width: 1920px) {
    
    
    
}















