/*reset.css*/
body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  height:100%; 
  scroll-behavior: smooth;
  position: relative;
}
body, html, input, textarea, select, button, table{ 
	font-family: 'playfair', 'pretendard', sans-serif;
	-webkit-font-smoothing:antialiased
 }
form, fieldset, h1, h2, h3, h4, h5, h6, p{ 
  margin:0; 
  padding:0; 
  word-break: keep-all;
}
form, fieldset, button{ 
  border:none;
}
ol, ul, li{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  word-break: keep-all;
}
img{ 
  max-width:100%; 
}
a{ 
  color:inherit; 
}
a, a:hover{ 
  text-decoration:none; 
}

.d-lg-none{ 
  display:none; 
}
.d-lg-block{ 
  display:block; 
}

#nc_container{
  z-index: 9999999999 !important;
}

/*header*/
header{ 
  position:absolute; 
  z-index:99999999; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s; 
}
header, header *{ 
  box-sizing:border-box; 
}

.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 4rem; 
  position: relative;
}
.hd-btn{
  position: absolute;
  z-index: 9999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #D8151B; 
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  cursor: pointer;
}
.hd-btn::before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: -6px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn::after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: 5px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn.act::before{
  transform:translate(-50%, 0) rotate(45deg);
  margin-top:0.5px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}
.hd-btn.act::after{
  transform:translate(-50%, 0) rotate(-45deg);
  margin-top:0.5px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:200px; 
  transition: .5s;
}
.mn{ 
  display:flex; 
  align-items:center; 
}

.hd-wrap{
  width: 100%;
  display: flex; 
  align-items: center;
  justify-content: space-between;
}
.hd-menu{
  display: flex; 
  align-items: center;
}

.hd-mem > ul{
  display: flex;
  align-items: center;
}
.hd-mem > ul > li{
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.hd-mem > ul > li::before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
  transition: .3s;
}
.hd-mem > ul > li::before:first-child{
  margin-left: 0;
  padding-left: 0;
}
.hd-mem > ul > li:nth-child(1)::before, .hd-mem > ul > li:nth-child(3)::before{
  display: none;
}
.hd-mem > ul > li > a{
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  transition: .3s;
}
.hd-mem > ul > li > a.log{
  color: #000;
  padding: 10px 1rem;
  background-color: #fff;
  border-radius: 12px;
}
.hd-mem > ul > li:hover > a.log{
  background-color:#D8151B;
  color: #fff;
}

/*gnb*/
.hd_bt{ 
  position:relative; 
  z-index:5; 
}
#gnb{ 
  position:relative; 
  z-index:5;
}
#gnb > ul{ 
  display:flex; 
  flex-flow:row wrap; 
  padding-left: 0; 
  margin-bottom: 0;
}
#gnb > ul > li{ 
  position:relative; 
  z-index:1; 
}
#gnb > ul > li > a{ 
  display:block; 
  padding:60px 20px; 
  font-size:18px; 
  font-weight:500; 
  transition: all .3s; 
  color: #fff; 
  position: relative;
}
#gnb > ul > li > a > .bubble{
  display: inline-block;
  height: 21px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 40px;
  right: 15px;
  transition: 0.3s;
  opacity: 0;
}
#gnb > ul > li > a:hover > .bubble{
  opacity: 1;
  top: 30px;
}
#gnb > ul > li > a > .bubble::before{
  font-size: 12px;
  font-weight: 300;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#gnb > ul > li > a > .bubble::after{
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 0px solid transparent;
  content: "";
  position: absolute;
  bottom: -5px;
  right: 10px;
}
#gnb > ul > li:nth-child(1) > a > .bubble{
  width: 62px;
}
#gnb > ul > li:nth-child(2) > a > .bubble{
  width: 62px;
}
#gnb > ul > li:nth-child(3) > a > .bubble{
  width: 80px;
}
#gnb > ul > li:nth-child(4) > a > .bubble{
  width: 105px;
}
#gnb > ul > li:nth-child(5) > a > .bubble{
  width: 62px;
}
#gnb > ul > li:nth-child(1) > a > .bubble::before{
  content: "샌디픽셀";
}
#gnb > ul > li:nth-child(2) > a > .bubble::before{
  content: "웹디자인";
}
#gnb > ul > li:nth-child(3) > a > .bubble::before{
  content: "쇼핑몰디자인";
}
#gnb > ul > li:nth-child(4) > a > .bubble::before{
  content: "프로그램사용안내";
}
#gnb > ul > li:nth-child(5) > a > .bubble::before{
  content: "제작사례";
}
#gnb > ul > li:last-child > a::after{
  display: none;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:100%; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 150px; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:25px 15px 25px; 
  text-align: center;  
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding:8px 0; 
  font-size:14px; 
  white-space:nowrap; 
  position: relative;
  color: #666;
}
#gnb > ul > li > ul > li > a::before{
  content: ""; 
  transition: .3s; 
  width: 0; 
  height: 1px; 
  background-color: #fff; 
  position: absolute; 
  left: 0; 
  bottom: 0;
}
#gnb > ul > li > ul > li:hover > a::before{
  width: 100%;
}
#gnb > ul > li > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:-10px; 
  left: calc(100% + 15px); 
  padding: 10px 0; 
  display:none; 
  min-width:150px; 
  box-shadow:0 12px 30px -2px rgba(0,0,0,.1); 
  background-color: #fafafa;
}
#gnb > ul > li > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 15px; 
  font-size:14px; 
}

/* .scr */


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}

/*footer*/
#footer{
  padding: 50px 0;
  background-color: #000;
}
.ft_con{
  width: 100%;
  padding: 0 4rem;
}
.ft-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-box{
  display: flex;
  align-items: center;
}
.ft-logo{
  display: flex;
  margin-right: 20px;
}
.ft-logo img{
  width: 100%;
  max-width: 200px;
}
#fnb > ul{
  display: flex;
}
#fnb > ul > li{
  padding: 0 10px;
}
#fnb > ul > li > a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: .3s;
}

.ft-info{
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 100%;
}
.ft-info > h5{
  font-size:14px; 
  color: #eee;
  font-weight: 400;
}
.ft_txt{ 
  font-size:14px; 
  color: #eee; 
  font-weight:400; 
  word-break:keep-all; 
  line-height: 1.6;
  text-align: center;
}

/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }
  .d-lg-flex{ 
    display:flex; 
  }

  .hd-btn{
    display: none;
  }
  .hd-mem.mo{
    display: none;
  }
  .lg{
    margin-right: 30px;
  }

  .mo_mn_mn{
    display: none;
  }

  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: -100%; 
    left: 0; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mt-menu.mt-open{
    top: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mt-menu > .mt-ul{width: 100%; max-width: 1230px; display: flex; justify-content: center;}
  .mt-menu > .mt-ul > li{flex: 1 0 auto; margin-right: 1.5rem;}
  .mt-menu > .mt-ul > li:last-child{margin-right: 0;}
  .mt-menu > .mt-ul > li > a{color: #000; font-size: 22px; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; display: block; border-bottom: 1px solid #8FC31F; transition: .4s;}
  .mt-menu > .mt-ul > li > ul > li{margin-bottom: 12px;}
  .mt-menu > .mt-ul > li > ul > li:last-child{margin-bottom: 0;}
  .mt-menu > .mt-ul > li > ul > li > a{color: #666; font-size: 16px; transition: .4s;}
  .mt-logo{margin-bottom: 4rem; text-align: center;}
  .mt-logo img{display: inline-block; width: 300px;}
  
}


@media(max-width:1366px){ 
  .hd_con{
    padding: 0 30px;
  }
  .ft_con{ 
    padding: 0 30px;
  }

}
@media(max-width:1199px){ 
  header.scr{
    position: fixed;
  }
  .hd_con{ 
    padding:0 15px; 
  }
  .ft_con{ 
    padding:0 15px; 
  }
  .ft-wrap{
    flex-direction: column;
  }
  .ft-box{
    flex-direction: column;
  }
  .ft-logo{
    margin-right: 0;
    margin-bottom: 30px;
  }
  .ft-box:last-child{
    margin-top: 20px;
  }
  .lg > a{ 
    padding:15px 0; 
  }
  .lg > a > img{ 
    max-width:200px; 
  }
  .mn{ 
    display:none; 
  }
  .hd-mem{ 
    display:none; 
  }

  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
  }

  .hd-mem.mo{
    display: block;
  }
  .hd-mem > ul{
    flex-direction: column;
  }
  .hd-mem > ul > li{
    margin-left: 0;
    margin-bottom: 10px;
  }
  .hd-mem > ul > li:last-child{
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .hd-mem > ul > li > a.log{
    border-radius: 6px;
    background-color: #000;
    color: #fff;
  }
  .hd-mem > ul > li > a{
    color: #000;
  }

  .hd-btn{
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
  }
  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -101%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
  }
  .mt-menu.mt-open{
    right: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 5rem 15px 2rem;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:15px 0px; 
    font-size:18px; 
    font-weight:500; 
    border-bottom: 1px solid #f2f2f2; 
  }
  .mo_mn_mn > li > ul{ 
    display:none; 
    background-color:#fafafa; 
    padding: 10px 0;
  }
  .mo_mn_mn > li > ul > li > a{ 
    display:block; 
    padding:8px 15px; 
    font-size:15px; 
    font-weight:400; 
    color: #818181;
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    background-color: #8FC31F; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #8FC31F; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  .menu-toggler{
    top: 16px; 
    right: 15px;
  }
  header.scr .bar{
    background-color: #000;
  }
  header.scr .open .bar{
    background-color: #000;
  }

  .open .bar{
    background-color: #000;
  }
  .open .bar.top{
    background-color: #000;
  }
  .open .bar.bottom{
    background-color: #000;
  }
}

@media(max-width:700px){
  .lg > a > img{
    max-width: 150px;
  }
  .ft-box:last-child #fnb > ul{
    flex-direction: column;
    align-items: center;
  }
  .ft-box:last-child #fnb > ul > li{
    padding: 0;
    margin-bottom: 5px;
  }
  .ft-box:last-child #fnb > ul > li:last-child{
    margin-bottom: 0;
  }
  #fnb > ul > li{
    padding: 0 6px;
  }
  .ft-logo img{
    max-width: 150px;
  }
}

@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}