/*
Title: Main CSS File
Theme Name: Ashoka
Author Name: GeeksLabs
Author URI: http://themeforest.net/user/geekslabs
Website: http://geekslabs.com

NOTE:
------
PLEASE DO NOT EDIT THIS CSS, IF YOU NEED USE "CUSTOM.CSS" FILE FOR WRITING YOUR CUSTOM CSS.
I WILL RELEASE FUTURE UPDATES SO IT WILL OVERWRITE THIS FILE IT'S BETTER USE "CUSTOM.CSS".

Table of Contents:
------------------

1. Basic Elements
2. Content
3. Logo 
4. Menu
5. Video background
6. About Section
7. Instagram Section
8. Clients Section
9. Separator Stats 
10. Team Section
11. Services Section
12. Separator Pramotion section
13. Portfolio Section
14. Testimonials Section
15. Pricing Option
16. Blog Post
17. Separator - LET'S TALK
18. Contact Form
19. Google Map
20. Footer Section
21. Social icons
22. Media Queries

----------------------------------*/
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR');



/* 1.Basic Styling
-------------------------------------------------------------- */

.maintxt{
	font-family:  'Noto Sans KR', sans-serif !important;
    font-size: 230px !important;
    letter-spacing: -1px !important;
    text-transform:none !important;
	text-shadow:#110 2px 0px 20px	!important;
	/*
	position: fixed;
	left:0; right:50%;
	*/
		}
		
.maintxt span{display:block; margin-top:-22px;}

.maintxt > img{width: 30%;}

html, body{
    overflow-x: hidden;
    -webkit-font-smoothing:antialiased;
}

body {
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 15px;
    font-weight: 400; 
    line-height: 1.628571;   
    color: #666666;
    background: #fff;
    width:100%;
    height:100%;    
    margin:0;
    padding:0;
    letter-spacing:-0.5px;
}

a{
    outline: none;
    opacity: 1;
    -webkit-transition: background 0.3s false;
    -moz-transition: background 0.3s false false;
    -o-transition: background 0.3s false false;
    transition: background 0.3s;
}
a:hover,a:focus {    
    text-decoration: none;
    outline: none;
    opacity: 1;    
}

ul{ list-style:none;
	margin-left:0;
	padding-left:0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans CJK KR', sans-serif;
    color: #333;
    /*text-rendering: optimizelegibility;*/
    line-height: 1.2em;
}
.text-light{
    color: #fff;
}

p{  
    font-family:'Noto Sans CJK KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.628571;   
    color: #666666;
    text-rendering: optimizelegibility;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}
strong{    
    font-weight: 700;
}
strong.colored{
    color: #029ece;
    font-weight: 500;
}
input[type=text], input[type=password], input[type=url], input[type=tel], input[type=number], input[type=email], textarea {
    width: 100%;
    font-family: 'Noto Sans KR', sans-serif ;
    height: 40px;
    display: block;
    font-size: 15px;
    padding-left: 6px;
    border-radius: 0;
    margin: 0 10px 10px 0;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

::selection {color:#fff;background-color: #029ece;}
::-moz-selection {color:#fff;background-color: #029ece;}

/*Pre Loader*/
#pre-loader {
    position:fixed;
    display: table;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    vertical-align: middle;
    background: #fff;
    z-index:99999;
}
.pre-loader-container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 3;
    text-align:center;
}

.back-logo {
    display:none;
    z-index:-1;
    color: #F4F4F4;
    position: absolute;
    top:600px;
    left:45%;
    font-size: 50px;
}

.loader {
  display:none;
  position: absolute;
  left: 50%;
  top: 350px;
  margin: -20px 0 0 -20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 0 6.66667px #141414;
  width: 40px;
  height: 40px;
}
.loader:before, .loader:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
}
.loader:before {
  background-color: #141414;
  -webkit-animation: expand 1.6s linear infinite both;
  -moz-animation: expand 1.6s linear infinite both;
  animation: expand 1.6s linear infinite both;
}
.loader:after {
  background-color: white;
  -webkit-animation: expand 1.6s linear 0.8s infinite both;
  -moz-animation: expand 1.6s linear 0.8s infinite both;
  animation: expand 1.6s linear 0.8s infinite both;
}


@-webkit-keyframes expand {
  0% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }

  100% {
    z-index: 1;
  }
}
@-moz-keyframes expand {
  0% {
    -moz-transform: scale(0);
  }

  50% {
    -moz-transform: scale(1);
  }

  100% {
    z-index: 1;
  }
}
@-o-keyframes expand {
  0% {
    -o-transform: scale(0);
  }

  50% {
    -o-transform: scale(1);
  }

  100% {
    z-index: 1;
  }
}
@keyframes expand {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    z-index: 1;
  }
}

.test{width:100%;
	height:5516px;
	display:block;
	overflow:hidden;
	background:url('../images/test.jpg');
	background-repeat: no-repeat;
	background-size:1917px auto;
	background-position:top center;
	}

/*custom button*/
.btn{
    font-family:'Noto Sans KR', sans-serif ;
    font-weight: 400;
    letter-spacing: 2px;
}
.btn-tr{
    background: transparent;
}
.btn-transparent{
    padding: 15px 40px;
    background: transparent;
    color: #fff !important;
    border-color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background 0.3s false;
    -moz-transition: background 0.3s false false;
    -o-transition: background 0.3s false false;
    transition: background 0.3s;
}
.btn-transparent:hover{
    background: rgba(255,255,255,0.3);
    border-color: #fff;
}
.btn-transparent-text-light{
    padding: 10px 20px;
    background: transparent;
    color: #333;
    border-color: #333;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background 0.3s false;
    -moz-transition: background 0.3s false false;
    -o-transition: background 0.3s false false;
    transition: background 0.3s;
}
.btn-transparent-text-light:hover{
    background: rgba(0,0,0,0.6);
    border-color: #333;
    color: #fff;
}
.btn-video-wr{
    padding: 15px 40px;
    background: #029ece;
    color: #fff;
    border-color: #029ece;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background 0.3s false;
    -moz-transition: background 0.3s false false;
    -o-transition: background 0.3s false false;
    transition: background 0.3s;
}
.btn-video-wr:hover{
    color: #fff;
}
.btn-default{
    background-color: transparent;
}

.btn-a {
    background: none;
    color: #fff;
    border: 1px solid #333;
    color: inherit;
    cursor: pointer;
    display: inline-block;    
    outline: none;    
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-a:hover, .btn-a:active {
    color: #fff;
}
a.btn-a:hover, a.btn-a:active, a.btn-a:focus {
    color: #fff;
    text-decoration: none;
}


.btn-a:hover:after, .btn-a:active:after {
    width: 100%;
}

.btn-a:after {
    background: #333 !important;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 0%;
    z-index: -1;
}

.green, .success{color:#719A3F;}
.yellow, .warning{color:#F3C202;}
.red,.error{color:#F26C51;}

/* 2. Content
-------------------------------------------------------------- */
.container{background: transparent;}
#company .container{width: 100%;}
#business .container{width: 1200px;}
.container-fluid{
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
    position: relative;
    clear: both;
}
/*image mask*/
.image-mask{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/patterns/image-mask2.png) center center repeat;
    background-color: rgba(0,0,0,0.2);
    z-index: 2;
}

#main-wrapper{
    background-image: url(../images/grey_wash_wall.png);
	z-index:1001;
	position:relative;
}
.section{
    /* padding-top: 40px; */
}
.bg2000{background: url(../images/bg1c1.gif) center top no-repeat;margin: 120px 0 190px;width:100%;height: 965px;position: relative;}
.bg2000 .img01{position: absolute;margin:auto;top:0;bottom:0;left:0;right:0;}
.bg2001{background: url(../images/bg2c1.gif) center top no-repeat;margin: 0;width:100%;height: 1215px;position: relative;background-size:cover;}
.bg2001 .bg2001_in{
			background: url(../images/bg2c2.gif) center top no-repeat;
			width: 912px;
			height:280px;
			position: absolute;
			margin:auto;
			top:0;
			bottom:0;
			left:0;
			right:0;
			padding: 5px 50px;
			}
.bg2001 .img01{margin-top: -71px;}
.bg2001 .bg2001_in > ul > li {margin:35px 0 0 0;}
.bg2001 .bg2001_in > ul > .bg2001_img{margin-right: 24%;}
.bg2001 .bg2001_in > ul > li:first-child{margin:0;}
.bg2001 .bg2001_in .txt01{font-size:18px;font-weight: 600;line-height: 130%;}
.bg2001 .bg2001_in .txt02{letter-spacing:-1px}
.bg2002{background: url(../images/bg3c1.jpg) center top no-repeat;margin: 0;width:100%;height: 968px;position: relative;background-size:cover;}
.bg2002_in > ul{padding: 140px 4%;}
.bg2002_in > ul > li{float:left;width:33%;color:#fff;padding: 60px 30px;max-height: 226px;}
.bg2002_in > ul >.bgl01{background: url(../images/bg2002_bgl03.png) left top repeat-y;/* background: url(../images/bg2002_bgl01.png) left top no-repeat; */}
.bg2002_in > ul >.bgl02{background: url(../images/bg2002_bgl03.png) left top repeat-y;/* background: url(../images/bg2002_bgl02.png) left bottom no-repeat; */}
.bg2002_in > ul >.bgl03{background: url(../images/bg2002_bgl03.png) left top repeat-y;}
.bg2002_in > ul >.no_border{border-left:none;}
.bg2002_in > ul > li > h5{color:#fff;display:inline-block;padding: 8px 0;font-weight: 500;border-bottom: 1px solid #fff;position:relative;margin: 0;font-size: 14px;letter-spacing: 0.5px;}
.bg2002_h5_bul{margin: 0 auto 14px;display: block;}
.bg2002_in > ul > li > span{display:block;text-align:center;font-size: 11px;line-height: 170%;letter-spacing: 0px;}
.bg2002_in > ul > li >.slomini{display:block;height: 106px;}
.left{text-align:left;}
.center{text-align:center;}
.right{text-align:right;}
.bdr_a10{border:10px solid #999}
.mgt200{ margin:200px 0 0 0}
.pdbt40{ padding-bottom:40px;}
.pdtb40{ padding:70px 0 30px;}
.pdt290{padding:290px 0 0 0;}
.pdt150{padding:150px 0 0 0;}
.no_bg{background:none !important;}
.mgbt80{margin: 0 0 80px; overflow: hidden;}
.mgbt110{margin: 0 0 80px; overflow: hidden;}


.use_pc{display:block;}
.use_mo{display:none !important;}

.section-title {
    font-size: 30px;
    font-family: 'Noto Sans CJK KR', sans-serif;
    font-weight: 800;
    letter-spacing: 0px;
    padding: 7px 0;
    text-transform: uppercase;
    border-bottom: 2px #000 solid;
    border-top: 2px #000 solid;
    width: 350px;
    margin: 0 auto;
    color:#000;
}
.section-title-border{
	/* border: none !important; */
	/*border: 4px double #333;    */
	padding: 50px 0 0;
	width: 120px;
	display: none;
	margin: 0 auto;
	border-bottom: 4px #000 solid;
}

.section-title-border2{
	border: none !important;
    /*border: 4px double #333;    */
    padding: 5px 30px;    
}

.section-info{  
    padding: 10px 0px 0px 0px;
}
.section-info h3{
    font-family: "Noto Sans CJK KR" , sans-serif;
    margin: 12px 0px 50px;
    line-height: 36px;
    text-align: left;
    letter-spacing: -1px;
    /*text-transform: uppercase;*/
    font-weight: 800;
    color: #000;
}
.section-info p{
    font-family: "Noto Sans CJK KR" , sans-serif;
    font-size: 1.34em;
    /* max-width: 82rem; */
    margin: 0px 0;
    letter-spacing: -2px;
    font-weight: 500;
    word-break:keep-all;
    white-space:inherit;
    text-align: left;
    color: #000;
    line-height: 1.5em;
}
.text-center{
    text-align: center;
}
#services-listing-wrapper{margin:0 auto;}

/*hr*/
.hr{
    margin: 0;
    padding: 0;
    font-size: 0;    
    text-align: center;
}
ul.hr li {
    display: inline-block;        
}
ul.hr li.hr-line {
    width: 350px;
    height: 4px;
    margin-bottom: 6px;
    border-bottom: 1px solid #a9a9a9;
    border-top: 1px solid #a9a9a9;
}
ul.hr li.hr-icon {
    width: 10%;
    color: #a9a9a9;
    font-size: 28px;
    line-height: 1.5;
}
.circle-point {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: -7px;
    top: -7px;
    border: 1px solid #bfbfbf;
    background: #fff;
    z-index: 5;
}


.white_bg{ color:#373737;background: url(../images/bg001.jpg);}
.blk{color:#373737}
.com_list{
    margin: 70px 0;
}
.com_list p{display:block;font-size: 27px;padding-left: 15px;font-weight: 600;background: url(../images/bul00.png) left 13px no-repeat;margin: 25px 0;}
.com_list p span{display:block;font-size: 18px;font-weight: 500;letter-spacing: -1px;color: #505050;margin: 0;padding: 0;line-height: 130%;}
.com_list p span:first-child {margin:10px 0 0 0;}
/* 3. Logo
-------------------------------------------------------------- */
.logo-wrapper{z-index: 1000;left: 0;position:  absolute;/* float: left; */}
.logo-wrapper2{    position: relative;    z-index: 1000;    left: 0;    float: left; display:none;}
.logo-wrapper3{    position: relative;    z-index: 1000;    left: 0;    float: left;}
.logo{    font-family: 'Noto Sans KR', sans-serif; font-weight: 200; color: #fff; margin-top: 18px;}
a .logo:hover{    text-decoration: none;}
.logo img{    margin-top: -10px; width:75%; }

/* 4. Menu
-------------------------------------------------------------- */
#wrapper .header{
    position: fixed;
    z-index: 1002;
    top: 0;
    /* background-color: rgba( 0, 0, 0, 0.8 ); */
    opacity: 1;
    text-transform:uppercase;
    width: 100%;
    }
.bgst{
    left: auto !important;
    background-color: rgba(255, 255, 255, 1);
    width: 100% !important;
    border-bottom:none !important;
    border-bottom: 1px solid #f5f5f5 !important;
	}
.bgst_sub{
    left: auto !important;
    background-color: rgba(255, 255, 255, 1);
    width: 100% !important;
    border-bottom:none !important;
    border-bottom: 1px solid #f5f5f5 !important;
	}
.bgst > .inner_wrap > .navmenu > ul > li a{color:#777878;}
.bgst > .inner_wrap > .navmenu > ul > li a:hover{color:#000;}
.bgst > .inner_wrap > .navmenu > ul > li .active{color:#000;}

.bgst_sub > .inner_wrap > .navmenu > ul > li a{color:#777878;}
.bgst_sub > .inner_wrap > .navmenu > ul > li a:hover{color:#000;}
.bgst_sub > .inner_wrap > .navmenu > ul > li .active{color:#000;}

.inner_wrap{display:  block;width: 97%;height: 72px;margin:  0 auto;position:  relative; /*border-bottom: 1px solid #fff;*/}

.navbar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    /*background: rgba(2, 158, 206, 0.95);*/
	background:#89c144;
}
.navmenu-open{
    position: fixed;
    z-index: 1002;
    top: 20px;
    right: 15px;
	display:none;
}
.navmenu{right:  0;position:  absolute;}
.navmenu > ul {}
.navmenu > ul > li {float:left;position:relative;margin-left: 86px;}
.navmenu > ul > li a{display:block;position:relative;z-index:1;height: 83px;font-size:14px;line-height: 83px;color:#fff;letter-spacing:0;text-align:center;}
.navmenu ul a{font-size:15px;/*font-family:"Raleway",Arial,sans-serif;*/font-weight:700;}
.navmenu ul a:hover{color:#fff;}


#trigger-navbar:hover{
    text-decoration: none;
}
#trigger-navbar span{
    padding: 2px;
    background: rgba(0,0,0,0.2);
    font-size: 3em;    
    color: #FFF;
}

/* Overlay closing cross */
.navbar .navbar-close {     
    position: absolute;
    right: 40px;
    top: 10px;
    overflow: hidden;
    text-indent: 200%;
    font-size: 3em;
    color: #FFF;
    outline: none;
    z-index: 100;
}
.navbar .navbar-close:hover{
    text-decoration: none;
}
.navbar .nav-logo {
    top: 0px;
    position: relative;
    padding-top: 0px;
    text-align: center;
}
.navbar nav {   
    position: relative; 
    top: 40%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.navbar ul li {
    display: block;
    height: 20%;
    height: calc(100% / 5);
    min-height: 54px;
}

.navbar ul li a {
    font-family: 'Noto Sans KR', sans-serif ;
    font-weight: 800;
    display: block;
    text-transform: uppercase;  
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.navbar ul li a .primary {    
    font-size: 35px;
    line-height: 22px;
    color: rgba(255,255,255,0.8);        
    padding-top: 20px;    
}
.navbar ul li a .secondary {
    font-size: 15px;
    visibility:hidden;
    color: rgba(255,255,255,0.6);    
    margin-bottom: 5px;
    letter-spacing: 2px;    
}
.navbar ul li a .primary, .navbar ul li a .secondary {
    display: block;
}
.navbar ul li a:hover,
.navbar ul li a:focus {
    color: #fff;
    text-decoration: none;    
}

.navbar ul li a:hover .secondary{
    color: #fff;
    visibility: visible;
}
/* Effects */
.navbar-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

.navbar-hugeinc.open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.navbar-hugeinc nav {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.navbar-hugeinc nav ul {
    opacity: 0.4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.navbar-hugeinc.open nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.navbar-hugeinc.close nav ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg);
}
.navbar footer .nav-footer{
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: right;
}
.navbar footer .nav-footer ul{
    list-style: none;
}
.navbar footer .nav-footer ul li{
    display: inline-block;
    min-height: 0px;
    padding-bottom: 10px;
}
.navbar footer .nav-footer ul li a span{        
    text-decoration: none;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;  
    padding: 6px;
}
.navbar footer .nav-footer ul li a:hover span{        
    color: #029ece;
    background-color: #fff;
    text-decoration: none;    
    border-radius: 50%;  
    padding: 6px;
}
.navbar footer .nav-footer-copy{
    font-size: 12px;
    color: #fff;
}


.navbar .heading-sep {
    width: 25px;
    height: 2px;
    margin: 2px auto !important;
    background: #ffffff;
}

/* 5. Video background
-------------------------------------------------------------- */
.presenation{
    height: 100%;
    width: 100%;
    top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto 0px;
}

/**
* light-slider-demo-1 
* dark-slider-demo-6
*********************/
#bg-slider{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    text-align: center;
    top: 0px;
}

/**
* light-video-demo-2
* dark-video-demo-7
*********************/
#bg-video {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    text-align: center;
    top: 0px;
}

/**
* light-image-demo-3
********************/
#bg-light-image{
    background-image: url(../images/backgrounds/bg-image-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

/**
* light-patterns-demo-4
**********************/
#bg-light-patterns{
    background-image: url(../images/patterns/light/hoffman.png);
    background-repeat: repeat;        
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}
.light-patterns #main-wrapper{
    background-image: url(../images/patterns/light/subtle_grunge.png);
}
.light-patterns .home-text h3,.light-patterns .home-text h2,.light-patterns .home-carousel-caption p,.light-patterns .logo{
    color: #333;
}
.light-patterns .home-carousel-caption hr{
    border-top: 4px double #333;
}

/**
* light-simple-demo-5
**********************/
#bg-light-simple{
    background-color: #fff;    
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}
.light-simple #main-wrapper{
    background-color: #fff;
    background-image: none;
}

.light-simple .home-text h3,.light-simple .home-text h2,.light-simple .home-carousel-caption p,.light-simple .logo{
    color: #333;
}
.light-simple .home-carousel-caption hr{
    border-top: 4px double #333;
}

/**
* dark-image-demo-8
********************/
.dark-image #bg-dark-image{
    background-image: url(../images/backgrounds/bg-image-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0%;

    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

/**
* bg-dark-patterns-demo-9
**********************/
#bg-dark-patterns{
    background-image: url(../images/patterns/dark/pinstriped_suit.png);
    background-repeat: repeat;        
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}
.dark-patterns #main-wrapper{
    background-image: url(../images/patterns/dark/grey_wash_wall.png);
}
.dark-patterns .home-text h3,.dark-patterns .home-text h2,.dark-patterns .home-carousel-caption p,.dark-patterns .logo{
    color: #fff;
}
.dark-patterns .home-carousel-caption hr{
    border-top: 4px double #fff;
}


/**
* dark-simple-demo-10
**********************/
#bg-dark-simple{
    background-color: #333;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}
.dark-simple #main-wrapper{
    background-color: #333;
    background-image: none;
}

.dark-simple .home-text h3,.dark-simple .home-text h2,.dark-simple .home-carousel-caption p,.dark-simple .logo{
    color: #fff;
}
.dark-simple .home-carousel-caption hr{
    border-top: 4px double #fff;
}

/**
* light-slider-patterns-demo-11
**********************/
.light-pattern-1 #main-wrapper{
    background-image: url(../images/patterns/light/paven.png);
}
/**
* light-video-patterns-demo-12
**********************/
.light-pattern-2 #main-wrapper{
    background-image: url(../images/patterns/light/sativa.png);
}
/**
* light-image-patterns-demo-13
**********************/
.light-pattern-3 #bg-light-image{
    background-image: url(../images/backgrounds/bg-image-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.light-pattern-3 #main-wrapper{
    background-image: url(../images/patterns/light/graphy.png);
}
/**
* light-patterns-demo-14
**********************/
.light-pattern-4 #bg-light-patterns{
    background-image: url(../images/patterns/light/skulls.png);
}
.light-pattern-4 #main-wrapper{
    background-image: url(../images/patterns/light/ricepaper_v3.png);
}
/**
* light-simple-patterns-demo-15
**********************/
.light-pattern-5 #bg-light-simple,.light-pattern-5 #main-wrapper{
    background-image: url(../images/patterns/light/gridme.png);
}

/**
* dark-slider-patterns-demo-16
**********************/
.dark-pattern-1 #main-wrapper{
    background-image: url(../images/patterns/dark/tweed.png);
}
.dark-pattern-1 .dark-bg-odd {
    background: rgba(85, 85, 85, 0.5);
}
.dark-pattern-1 #request-pro{
    background: rgba(85, 85, 85, 0.8);
}

/**
* dark-video-patterns-demo-17
**********************/
.dark-pattern-2 #main-wrapper{
    background-image: url(../images/patterns/dark/grey_wash_wall.png);
}
.dark-pattern-2 .dark-bg-odd {
    background: rgba(85, 85, 85, 0.5);
}
.dark-pattern-2 #request-pro{
    background: rgba(85, 85, 85, 0.8);
}

/**
* dark-image-patterns-demo-18
**********************/
.dark-pattern-3 #bg-dark-image{
    background-image: url(../images/backgrounds/bg-image-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.dark-pattern-3 #main-wrapper{
    background-image: url(../images/patterns/dark/stardust.png);
}
.dark-pattern-3 .dark-bg-odd {
    background: rgba(85, 85, 85, 0.5);
}
.dark-pattern-3 #request-pro{
    background: rgba(85, 85, 85, 0.8);
}

/**
* dark-patterns-demo-19
**********************/
.dark-pattern-4 #bg-dark-patterns{
    background-image: url(../images/patterns/dark/bo_play_pattern.png);
}
.dark-pattern-4 #main-wrapper{
    background-image: url(../images/patterns/dark/tex2res4.png);
}

.dark-pattern-4 .dark-bg-odd {
    background: rgba(85, 85, 85, 0.5);
}
.dark-pattern-4 #request-pro{
    background: rgba(85, 85, 85, 0.8);
}

/**
* dark-simple-patterns-demo-20
**********************/
.dark-pattern-5 #bg-dark-simple,.dark-pattern-5 #main-wrapper{
    background-image: url(../images/patterns/dark/wild_oliva.png);
}
.dark-pattern-5 .dark-bg-odd {
    background: rgba(85, 85, 85, 0.5);
}
.dark-pattern-5 #request-pro{

    background: rgba(85, 85, 85, 0.8);
}

.overly-mask{
	display: none;
    background: url(../images/patterns/overly-mask.png) center center repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.home-text{
	display: none;
    color: #fff;
    position:fixed;
    text-align: center;
    width: 100%;
    max-width: 100%;
    z-index:100;
    top: 32% !important
}

.home-text h3{    
    font-family:'Noto Sans KR', sans-serif ;
    font-size: 4em;
    letter-spacing: 2px;    
    color: #fff;
    font-weight: 400;
    line-height: 1;    
    text-transform: uppercase;
}
.home-text h2{
    font-family:  'Noto Sans KR', sans-serif ;
    font-size: 92px;
    letter-spacing: -4px;
    color: #fff;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    text-shadow: #112 1px 1px 1px;
}
.home-carousel-caption p{
    font-family: 'Noto Sans KR', sans-serif ;
    width: 100%;
    font-size: 2em;
    color: #fff;
    letter-spacing: 2px;
    text-align:center;
    text-transform: uppercase;    
}
.home-carousel-caption hr{
    border-top: 4px double #fff;
    margin: 0 auto;
    width: 50%;
}
#home-text-slider .owl-controls{
    display: none !important;
}

#home div.scroll
{
    position:absolute;
    bottom:15px;
    left:50%;
    z-index: 100;
    margin-left:-24.5px
}
#home div.scroll,.footer-text span {
    -webkit-animation: fadein 1s ease-in alternate infinite;
    -moz-animation: fadein 1s ease-in alternate infinite;
    animation: fadein 1s ease-in alternate infinite;
}

@-webkit-keyframes fadein
{
    0%
    {
        opacity:.3
    }
    100%,90%
    {
        opacity:1
    }
}

@-moz-keyframes fadein
{
    0%
    {
        opacity:.3
    }
    100%,90%
    {
        opacity:1
    }
}
@keyframes fadein
{
    0%
    {
        opacity:.3
    }
    100%,90%
    {
        opacity:1
    }
}
#home div.scroll span.scroll-down
{
    color:#FFF;
    display:block;
    font-size:42px;
    width:16px;
    height:30px;
    border:2px solid #FFF;
    position:relative;
    margin:0 auto 5px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px
}
#home div.scroll span.scroll-down:before
{
    content:'';
    display:block;
    position:absolute;
    top:8px;
    width:2px;
    height:4px;
    background:#FFF;
    left:50%;
    margin-left:-1px;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px
}
#home div.scroll .scroll-text
{
    text-transform:uppercase;
    font-weight:400;
    font-size:12px;
    text-align:center;
    float:left;
    color:#FFF;
    letter-spacing:1px
}

#bg-video video{
    position: fixed !important
}

/*embed responsive video*/
.responsive-video-embed {
    height: 0;
    padding-top: 25px;
    padding-bottom: 47.5%;
    margin-bottom: 10px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}
.responsive-video-embed.vimeo {
    padding-top: 0;
}
.responsive-video-embed.widescreen {
    padding-bottom: 57.25%;
}
.responsive-video-embed embed, .responsive-video-embed iframe, .responsive-video-embed object, .responsive-video-embed video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
/* Responsive */
@media (max-width: 767px) {
    .responsive-video-embed {
        padding-top: 0;
    }
}

/* 6. About Section
-------------------------------------------------------------- */

#about-listing .listing-wrapper{
    border-right: 1px dashed #bfbfbf;    
}
.co_pils{
    width: 1200px;
    text-align: center;
    margin: 30px auto 0;
    position:relative;
    overflow: hidden;
}
.co_pil{
    font-family: 'Noto Sans KR', sans-serif;
    position: relative;
    width: 100%;
    vertical-align:top;
    text-align: left;
    color: #7b7b7b;
    margin: 20px 0 0;
    display: inline-block;
    font-size: 16px;
    line-height: 170%;
}
.co_pils ul > li {
     float:left;
     width: 44%;
     overflow:hidden;
     margin: 2% 3%;
     height: 310px;
     /*background-color: rgb(255, 255, 255, 0.8);*/
     padding: 50px 15px;
     letter-spacing:-1px;
}
.co_pils ul > li img{display:block;overflow:hidden;margin:10px auto;}
.co_pils ul > li span{font-size:14px;line-height: 180%; color: #fff;}
.co_pils ul > li span > img{display: none;}
.co_pils .phil_icon{position:absolute;right: 0;top: 0;left: 0;bottom: 0;margin: auto;}
.co_pil01{border-bottom-right-radius: 50px;}
.co_pil02{border-bottom-left-radius: 50px;}
.co_pil03{border-top-right-radius: 50px;}
.co_pil04{border-top-left-radius: 50px;}
.co_pil img{
    float:  left;
    margin: 10px 0 0 0;
}
.co_pil span{
    margin: 10px 0;
    display: block;
    font-weight: bold;
    font-size: 16px;
}
.listing-wrapper-last{
    border: none;
}
.single-title{

    font-size: 2.2em;
    text-transform: uppercase;
    font-family: 'Noto Sans KR', sans-serif ;
    font-weight: 800;
    letter-spacing: 2px;
    color: #029ece;
}
.post-list {
    position: relative;
    width: 100%;    
    overflow: hidden;
    padding: 20px 40px;
    text-align: left;
}
.post-list:hover {
    background: rgba(240, 240, 240, 0.1);
    -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.post-thinkers:before {
    content: "\e007";
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 5.0em;    
    position:absolute;
    bottom:0px;
    right:10px;
    color:#eeeeee;    
}

.post-dremers:before {
    content: "\77";
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 5.0em;    
    position:absolute;
    bottom:0px;
    right:10px;
    color:#eeeeee;    
}

.post-researchers:before {
    content: "\e029";
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 5.0em;    
    position:absolute;
    bottom:0px;
    right:10px;
    color:#eeeeee;    
}
.post-researchers:hover:before,.post-dremers:hover:before,.post-thinkers:hover:before {
    color:rgba(0,0,0,0.1);    
}
.about-text{
    padding: 80px;
    text-align: center;
    font-weight: 600;
}


/* 7. Instagram Section
-------------------------------------------------------------- */

#intagram-feed .section-info{
    padding: 10px 0 20px 0;
}

.instagram-listing {
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
        transform: translateZ(0);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    right:0;
    bottom:0;
    left: 0;
    padding:20px;
    color: white;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);

    transition: -webkit-transform .35s ease-out;
    transition: -ms-transform .35s ease-out;
    transition:transform .35s ease-out;
}

.instagram-listing:hover .instagram-overlay {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
}

.instagram-overlay-title {    
    -webkit-transform: translateY( -webkit-calc(-100% - 10px) );
    -ms-transform: translateY( -ms-calc(-100% - 10px) );
            transform: translateY( calc(-100% - 10px) );

    transition: -webkit-transform .35s ease-out;
    transition: -ms-transform .35s ease-out;
    transition: transform .35s ease-out;
}

.instagram-listing:hover .instagram-overlay-title {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
            transform: translateY(0);
}
.instagram-listing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    transition: background .35s ease-out;
}

.instagram-listing:hover::before {
    background: #029ECE;
    opacity: 0.8;
}
.instagram-caption{
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 18px;
    color: #fff;
}
.instagram-listing .social_instagram_square{
    position: absolute;
    bottom: 20px;
    font-size: 24px;
}
.instagram-likes{
    position: absolute;
    bottom: 20px;
    right: 20px;
}


/* 8. Clients Section
-------------------------------------------------------------- */
.client{ text-align:center;}
.client h2{font-size: 35px;font-weight: bold;display:  block;width: 140px;margin:  0 auto;padding: 100px 0 0;}
.client span{font-size: 18px;font-weight:  bold;display:  block;margin: 40px 0 100px;letter-spacing: -0.5px;font-family: 'Noto Sans KR', sans-serif;line-height: 150%;}
.client span strong{display:block;font-size:22px;color: #000;}

.client-listing-1 {
    border-right: 1px dashed #d6d6d6;
    border-bottom: 1px dashed #d6d6d6;    
}
.client-listing-2 {
    border-right: 1px dashed #d6d6d6;
    border-bottom: none;    
}
.client-listing-last-1{
    border-right: none;
    border-bottom: 1px dashed #d6d6d6;
}
.client-listing-last-2{
    border-right: none;
    border-bottom: none;
}
.client-listing a{
    display: block;
    text-align: center;
}
#clients-listing-wrapper a{
    opacity: 1;
    transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
}
#clients-listing-wrapper .brand-img{
    display: inline-table;
    text-align: center;
    padding: 10px;    
}
#clients-listing-wrapper a:hover{
    opacity: 0.8;
}

/* 9. Separator- Stats
-------------------------------------------------------------- */
#stats{
    text-align: center;
    background:#029ECE;
    color: #fff;  
    padding-top: 0px;  
}
#stats h2{
    font-family: 'Noto Sans KR', sans-serif ;
    font-size: 5.0em;
    font-weight: 600;
}
#stats p{
    font-weight: 600;    
    font-family: 'Noto Sans KR', sans-serif ;
    color: #fff;
    text-transform: uppercase;
}
.stats-project,.stats-clients,.stats-tweets,.stats-coffee{
    background:#029ECE;
    min-height: 140px;
    webkit-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    -moz-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.40);
    border: 6px solid #029ECE;
}

/* 10. culture Section
-------------------------------------------------------------- */
.cont_culture_01{position:relative;width: 1200px;overflow: hidden;margin: 150px auto 0;height: 740px;}
.cont_culture_01 .cultureDiv {
	width: 296px;
	height: 257px;
	position:absolute;
	overflow: hidden;
}

.cont_culture{background: url(../images/bg_culture.jpg) top 50px center no-repeat;padding: 130px 0 0;}

.cultureDiv img { /* 두개의 이미지 위치를 똑같이 맞춰줘야 합니다.*/
	width: 296px;
	height: 257px;
	position: absolute;
	left: 0;
	top: 0;
}
.cul_img01{top:0;left: 0;}
.cul_img02{top: 130px;left: 226px;}
.cul_img03{top: 0;left: 0;right: 0;margin: auto;}
.cul_img04{top: 130px;right: 226px;}
.cul_img05{top:0;right: 0;}

 /* 이미지 오버 시 트랜지션 */
.cultureDiv > .over {  opacity: 0;	transition: opacity 0.3s}
.cultureDiv:hover > .over {opacity: 1;} 									

/* 다각형 */
.hexagon {
    position: relative;
    width: 296px;
    height: 200px;
    background-color: #b54f4f;
    margin: 100px 0;
    /* border-left: solid 2px #b6b6b6; */ /* 외곽라인 두께및 색상 */
    border-right: solid 2px #b6b6b6; /* 외곽라인 두께및 색상 */
    float:left;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 210px;
    height: 210px;
    -webkit-transform: scaleY(0.5774) rotate(-45deg);
    -ms-transform: scaleY(0.5774) rotate(-45deg);
    transform: scaleY(0.6774) rotate(-45deg);
    background-color: #ddd;
    left: 43px;
}

.hexagon:before {
    top: -106px;
    /* border-top: solid 1.4142px #b6b6b6; */ /* 외곽라인 두께및 색상 */
    /* border-right: solid 1.4142px #b6b6b6; */ /* 외곽라인 두께및 색상 */
}

.hexagon:after {
    bottom: -106px;
    /* border-bottom: solid 1.4142px #b6b6b6; */ /* 외곽라인 두께및 색상 */
    /* border-left: solid 1.4142px #b6b6b6; */ /* 외곽라인 두께및 색상 */
}

/* 11. Services Section
-------------------------------------------------------------- */

/* General grid styles */
.service-list {
    list-style: none;
    /*padding: 0 0 50px 0;*/
    margin: 0;
}
 
/* grid item */
.service-list .service-box {
    height: 400px;
    text-align: center;
}
.service-box-1{
    border-right: 1px dashed #d6d6d6;
    border-bottom: 1px dashed #d6d6d6;
}
.service-box-2{
    border-right: 1px dashed #d6d6d6;
    border-bottom: none;
}

.service-box-last-1{
    border-right: none;
    border-bottom: 1px dashed #d6d6d6;
}
.service-box-last-2{
    border-right: none;
    border-bottom: none;
}

/* anchor style */
.service-list .service-box > a {
    display: block;
    height: 100%;
    color: #333;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}
 
/* the icon with pseudo class for icon font */
.service-icon {
    padding: 80px 0 0;
    display: block;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
 
.service-icon:before {
    font-size: 6em;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
} 
 
/* title element */
.service-list .service-title {
    margin: 20px 0 10px 0;
    padding: 0 0 0 0;
    font-size: 2.2em;
    font-weight: 800;
    letter-spacing:-1px;
    position: relative;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
 
.service-list .service-title:before {
    /*
	content: '';
    position: absolute;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    width: 160px;
    height: 4px;
    top: 0px;
    left: 50%;
    margin: 0px 0 0 -80px;
    -webkit-transition: margin-top 0.2s;
    -moz-transition: margin-top 0.2s;
    transition: margin-top 0.2s;
	*/
}
 
.service-list .service-category {
    padding: 0 33px;
    display: block;
    font-size: 14px;
    color: #4c4c4c;
    word-break: keep-all;
    white-space: normal;
    font-weight:  bold;
    -webkit-transform: translateY(10px);
    -moz-transform: -moz-translateY(10px);
    -ms-transform: -ms-translateY(10px);
    transform: translateY(10px);
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    -webkit-transition: transform 0.3s, opacity 0.2s;
}
 
.service-list .service-box:hover .service-category,
.touch .service-list .service-box .service-category {

    opacity: 1;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
	color: #fff;
}
 
.icon_g{padding: 175px 0;display: block;}

.service-list .service-box .service-icon .ic_off{
	opacity:1;
	display: inline-block;
}
.service-list .service-box .service-icon .ic_on{
	opacity:0;
	display: none;
}

/* Hover styles */
 
.service-list .service-box > a:hover {
    background: #89c144;
    text-decoration: none;
}
 
.service-list .service-box > a:hover .service-icon {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
 
.service-list .service-box > a:hover .service-icon:before,
.service-list .service-box > a:hover .service-title {
    color: #fff;
}
 
.service-list .service-box > a:hover .service-title {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
 
.service-list .service-box > a:hover .service-title:before {
    background: #333;
    margin-top: 0;
}

.service-list .service-box > a:hover .service-icon > .ic_off{
	opacity:0;
	display:none;
}
.service-list .service-box > a:hover .service-icon > .ic_on{
	opacity:1;
	display:inline-block
}

/* 12. Separator Pramotion section
-------------------------------------------------------------- */
#request-pro{
    background-color: #EEF2F3;
    padding: 58px 0px 80px 0;
}
.request-text{
    font-size: 2.2em;
    text-transform: uppercase;
    font-family: 'Noto Sans KR', sans-serif ;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
    color: #333;
}
.request-text span{
    color: #029ECE;
}

/* 13. Portfolio Section
-------------------------------------------------------------- */
.grid-gallery ul {
    list-style: none;
    margin: 0;
    padding: 0;    
}
 
.grid-gallery figure {
    margin: 0;
}
 
.grid-gallery figure img {
    display: block;
    width: 100%;
    opacity: 0.8;
    display: block;
    overflow: hidden;    
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}
.grid-gallery figure img:hover {
    opacity: 1;
    /*-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);*/
}
.grid-gallery figcaption h3 {
    font-size: 1.2em;
    font-family: 'Noto Sans KR', sans-serif ;
    font-weight: 600;
    color: #029ece;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 0.5em;
    word-break: keep-all;
    white-space: normal;
}
 
.grid-gallery figcaption p {
    margin: 0;
}
 
/* Grid style */
.grid-wrap {
    max-width: 100%;
    margin: 0 auto;
}
 
.grid {
    margin: 0 auto;
}
 
.grid li {
    width: 25%;
    float: left;
    cursor: pointer;
}
 
.grid figure {    
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
 
.grid li:hover figure {
    opacity: 0.8;
}
 
.grid figcaption {    
    border-right: 1px dashed #d6d6d6;
    padding: 20px 30px;
    background-color: #EEF2F3;
	height:110px;
}
.grid figcaption.last {
    border: none;
}

.btn_detail{padding:12px;
	margin:120px auto 0;
	text-align:center;width:100%;
	background: url(../images/bg_btn_dot.jpg) center center repeat-x;
}

/* Slideshow style */
.slideshow {
    position: fixed;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}
 
.slideshow-open .slideshow {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
 
.slideshow ul {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translate3d(0,0,150px);
    transform: translate3d(0,0,150px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}
 
.slideshow ul.animatable li {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}
 
.slideshow-open .slideshow ul {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
 
.slideshow li {
    width: 660px;
    height: 600px;
    position: absolute;
    top: 60%;
    left: 50%;
    margin: -345px 0 0 -330px;
    visibility: hidden;
}
 
.slideshow li.show {
    visibility: visible;
}
 
.slideshow li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.8);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
 
.slideshow li.current:after {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
    transition: opacity 0.3s, visibility 0s 0.3s;
}
 
.slideshow figure {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 50px solid #fff;
    overflow: hidden;
}
 
.slideshow figcaption {
    padding-bottom: 20px;
}
 
.slideshow figcaption h3 {
    font-weight: 300;
    font-size: 200%;
}

#filters{ text-align:center; margin:0 0 30px;}


.selectBox02 {position:relative;display:inline-block;width:180px;height: 55px;background:url('../images/ico_select_arrow.png') right center no-repeat;background-color:#fff;background-position-x:150px;}
.selectBox02 .txt {display:block;width:180px;height: 55px;padding-left:15px;line-height: 55px;border:1px solid #ccc;text-align:left;font-size:18px;}
.selectBox02 label {overflow:hidden;position:absolute;width:0;height:0;line-height:0;text-indent:-9999px}
.selectBox02 select {position:absolute;left:0;top:0;display:block;width:180px;padding-left:10px;height:50px;opacity:0;filter: alpha(opacity=0);z-index:10;cursor:pointer;
	appearance:none; /* ê¸°ë³¸ ìŠ¤íƒ€ì¼ ì—†ì• ê¸° */
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none
}

.selectBox02.focus {border: 1px solid #66afe9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); 
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6) /* focusíš¨ê³¼*/
}


/* Navigation */
.slideshow nav span {
    position: fixed;
    z-index: 1000;
    color: #59656c;
    text-align: center;
    padding: 3%;
    cursor: pointer;
    font-size: 2.2em;
}
 
.slideshow nav span.nav-prev,
.slideshow nav span.nav-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #FFF;
}
 
.slideshow nav span.nav-next {
    right: 0;
}
 
.slideshow nav span.nav-close {
    top: 90px;
    left: 50%;
    margin-left: 270px;
    padding: 0.5em 1em;
    color: #FFF;
}
 
.icon:before,
.icon:after {
    font-family: 'Noto Sans KR', sans-serif ;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
span.nav-prev:before {
    font-family: 'Noto Sans KR', sans-serif ;
    content: "\23";
}
 
span.nav-next:before  {
    font-family: 'Noto Sans KR', sans-serif ;
    content: "\24";
}
 
span.nav-close:before {
    font-family: 'Noto Sans KR', sans-serif ;
    content: "\4d";
    float: left;
}
 
/* Info on arrow key navigation */
.info-keys {
    position: fixed;
    bottom: 10px;
    left: 48%;
    width: 60px;
    font-size: 8px;
    padding-top: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
}
 
.info-keys:before,
.info-keys:after {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
}
 
.info-keys:before {
    left: 10px;
    font-family: 'Noto Sans KR', sans-serif ;
    content: "\23";
}
 
.info-keys:after {
    right: 10px;
    font-family: 'Noto Sans KR', sans-serif ;
    content: "\24";
}

#portfolio .container ul{overflow:hidden;margin-left:-1%;}
#portfolio .container ul li{float:left;width: 20%;margin-left: 0;height:auto;overflow:hidden;margin-bottom: 0;text-align:center;}
#portfolio .container ul li a{display:block;color:  #3A3A3A;}
#portfolio .container ul li a span{display:block;margin-bottom:0;height:21px;line-height:21px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:16px; font-weight:400;}
#portfolio .container ul li a:hover{ color:#ea5809;}
#portfolio .container ul li a .img{height:300px;/*border:1px solid #ddd;*/overflow:hidden;/* margin-bottom:10px; */}
#portfolio .container ul li a .img img{width:100%; min-height:300px}
#portfolio .container ul li a .img2 img{width:100%;}
#portfolio .container ul li a p{font-family: 'Noto Sans KR', sans-serif ; color:#3A3A3A; font-size:14px;}

#portfolio .paging{text-align:center;padding:30px 0}
#portfolio .paging a{display:inline-block;width:34px;height:34px;line-height:34px;border:1px solid #c4c4c0;font-size:12px;text-align:center;color:#777}
#portfolio .paging a:hover{display:inline-block;border:1px solid #000;text-align:center;color:#000;}
#portfolio .paging a:focus{display:inline-block;border:1px solid #000;text-align:center;color:#000;}
#portfolio .paging a.on{display:inline-block;border:1px solid #000;text-align:center;color:#000;}
#portfolio .paging strong{display:inline-block;width:34px;height:34px;line-height:34px;border:1px solid #000;font-size:12px;text-align:center;color:#000;}
#portfolio .paging a.btn{border:0;vertical-align:top}
#portfolio .paging a.btn:hover{background:none;}

#portfolio .container .search_area { text-align:center; margin:0 0 20px;}


#portfolio .portfolio_view{position:  relative;margin-bottom: 60px;}
#portfolio .portfolio_view ul{width:100%;margin: 20px 5px 10px;}
#portfolio .portfolio_view .tit_area{display:  block;overflow:  hidden;width: 100%;}
#portfolio .portfolio_view .tit_area p{text-align:right;font-size:14px;color: #666;line-height: 16px;margin: 0 0 5px;}
#portfolio .portfolio_view .tit_area h3{text-align:center;padding: 30px;background:#f4f4f4;font-size: 30px;color:#ea5809;margin: 0;font-weight:  bold;}
#portfolio .portfolio_view .cont_area{}
#portfolio .portfolio_view .cont_area ul li{float:none;width:  100%;text-align:  center;margin-left: 0;}
#portfolio .portfolio_view .cont_area .txt{display:  block; position:  relative; padding:0 10px;}
#portfolio .portfolio_view .cont_area .txt li{display:block;text-align: left;width: 100%;margin:  0;}
#portfolio .portfolio_view .cont_area .txt li h2{font-size:18px;font-weight:bold;color:#000;display:  inline-block;width: 80px;vertical-align: top;margin: 5px 0;}
#portfolio .portfolio_view .cont_area .txt li span{font-size:18px;font-weight:400;color:#666;padding-left: 20px;display:  inline-block;margin:  0;}
#portfolio .portfolio_view .cont_area .img{display:block;}


#portfolio .container{
    background: transparent;
    width:auto;
}

/* 14. Recruit
-------------------------------------------------------------- */
.bg_recruit{background: url(../images/bg_recruit.jpg) top center repeat;}
.bg_recruit02{background: url(../images/bg_recruit02.png) top center repeat-x ;}
.bg_recruit03{background: url(../images/bg_recruit03.png) top 103px center repeat-x;}
.title_sub{display:block;text-align: center;padding: 20px 0;}
.title_sub > h4{padding:0;margin: 0;font-weight: 600;font-size: 22px;}
.title_sub > span{font-size: 17px;}
.pd30{padding: 30px;}
.pd20{padding: 20px;}
.bg_title01{background: url(../images/bg_btn_dot.jpg) top center repeat-y;display: block;}
.bg_title02{display: block;border-right: 1px #000 solid;width: 1px;padding: 40px 0;margin: 0 auto;}
.cont_recruit{position:relative;width:auto;margin:0 auto;text-align: center;overflow: hidden;}
.cont_recruit_01{width: 1090px;margin: 0 auto;}
.cont_recruit_01 > ul{background: url(../images/bg_btn_dot.jpg) center center repeat-x;padding: 1px 0 0 0;}
.cont_recruit_01 > ul > li{float:left;width:25%;background: url(../images/linebg01.gif) top center no-repeat;padding: 30px 0 0;}
.cont_recruit_01 > ul > li > strong{display:block; color:#000; font-size:18px}
.cont_recruit_01 > ul > li > span{display:block;font-size:13px;color: #000;}
.cont_recruit_02{width:auto;margin: 70px auto;overflow: hidden;}
.cont_recruit_02 > img{display:inline-block}
.cont_recruit_02 > ul > li{float:left;width: 20%;margin: 0px 2.5%;border: 2px solid #000;border-radius:10px;padding:15px;}
.cont_recruit_02 > h3{padding:0;margin: 0;font-weight: 600;font-size: 22px;}
.cont_recruit_02 > span{margin:0 0 40px; display:block}
.cont_benefit{}
.cont_benefit_01{ position:relative; width:1180px; margin:0 auto;}
.cont_benefit_01 > ul{background: url(../images/bg_btn_dot.jpg) top center repeat-y;display: block;}
.cont_benefit_01 > ul > li{padding:30px;border:1px solid #ddd;background:#fff;text-align:center;margin: 0px 0px 10px;}
.cont_benefit_01 > ul > li > p{}
.cont_benefit_01 > ul > li > p > strong{ font-weight:700; font-size:20px; color:#000;}
.cont_benefit_01 > ul > li > p > img{display:block;overflow:hidden;margin:10px auto;}
.cont_benefit_01 > ul > li > p .sub_txt{font-size: 12px;font-weight: 400;color: #333;padding-top: 5px;}
.cont_benefit_01 > ul > li > p > span{display: block;font-size:14px;color: #000;font-weight: 500;	word-break: keep-all;}
.cont_benefit_01 > ul > li > div > ul {overflow: hidden;width: 936px;margin: 0 auto;}
.cont_benefit_01 > ul > li > div > ul > li {float:left;margin: 0 20px;font-size: 12px;}



/* 17. Separator - Get Connected
-------------------------------------------------------------- */
#address{
    background-color: #029ECE;
    padding: 58px 0px 80px 0;
   
}
.lts-talk{
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-no{
    color: #333;
    font-weight: 800;
    letter-spacing: 2px;
}
.full-address,.email-add a{
    color: #fff;
}
.contact-no,.email-add,.full-address{
    margin-bottom: 5px;
}
.email-add{
    margin-top: 0px;
}

.conset{width: 100%;font-size:13px;background: #454545;color: #fff;}
.conset ul li{/*color:#c0c0c0;*/}
.conset ul li span{font-weight: bold;}
.con00{width:33.33333333333333%; float:left;}
.con01{width:45%; float:left;}
.con02{width:40%; float:left;}
.con03{width:15%; float:left;}
.con04{margin: 0 auto;width: 1200px; text-align:center; padding:0 0 140px;}
.con04 > h3{padding: 0 0 20px;color: #fff;letter-spacing: -1px;font-size: 24px;font-weight:600;
border-bottom: 1px solid #fff;margin: 150px 0 0;display: inline-block;}
.con04 > span{color: #fff;display:block;font-size: 18px;margin: 30px 0 100px;}
.con04 > span{color: #fff;display:block;}
.con04 > .ic_location{margin:10px 0 0;overflow: hidden;font-size: 18px;}
.con04 > .ic_location > ul > li{float:left;padding: 0 36px; width:20%;border-left: solid #fff 1px;min-height: 110px;;}
.con04 > .ic_location > ul > li:first-child{border-left:none;}


/* 18. Contact Form
-------------------------------------------------------------- */
#comments {    
    height: 100px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    resize:none;
    background: transparent;

}
#contactform input[type=text]{
    padding-left: 20px;
    background: transparent;
}
#contactform input#email{
    width: 96%;
    background: transparent;
    margin-right:4%;
}
#contactform input#phone{
    width: 96%;
    background: transparent;
    margin-left:4%;
}
#contactform input[type=text]:focus,#contactform input#email:focus,#contactform input#phone:focus,#comments:focus{
    background-color: #fff;    
}
.form-control{
    border: none;
    border-bottom: 1px solid #333;
}

/* 19. Google Map
-------------------------------------------------------------- */
.area_map{position:relative;}
.area_map > img{position:absolute; margin:auto; right:0; left:0; z-index:1;}
#map {
    width: 100%;
    height: 350px;
    /*filter: grayscale(100%);    
    filter: gray;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);    
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;*/
    background:#F3F3F3;
    border-top: solid 5px #454547;
    margin: 150px 0 0;
}

#map:hover{
    filter: none;
    -webkit-filter: grayscale(0%);
}
/* 20. Footer Section
-------------------------------------------------------------- */
#footer{
    padding: 5px;
}
#footer .move-up{
    text-align: center;
    margin-top: 10px;
}
#footer .move-up a{
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    border: 4px double #fff;
    padding: 2px;
    -webkit-transition: background 0.3s false;
    -moz-transition: background 0.3s false false;
    -o-transition: background 0.3s false false;
    transition: background 0.3s;
}
#footer .move-up a:hover{
    background: rgba(255,255,255,0.3);
    border-color: #fff;
}
.footer-logo h3{
    margin-top: 11px;
    margin-bottom: 11px;
    font-family: 'Noto Sans KR', sans-serif ;
}
.footer-text a{
    color: #fff;
}
.footer{
	background: #fff;
	position:relative;
	overflow:hidden;
	border-top: 2px #f5f5f5 solid;
	color:#fff;
	font-size:12px;
	padding:0;
	clear:both;
	z-index:9;
	word-break: keep-all;
	}
.footer-logo{}
.footer > .footer_in .branch{float: left;font-size:12px}
.footer > .footer_in .branch  span{font-weight:600}
.footer > .footer_in .branch .txt_s{font-size: 12px;font-weight:100}
.footer > .footer_in .footer-text{float: right;line-height: 250%;}
.footer > .footer_in{background:#454547; padding:40px; overflow:hidden;}



/* 21. Social icons
-------------------------------------------------------------- */
.soc-item{
    padding: 10px;    
}
.soc-item a{
    color: #fff;
    text-align: center;
    font-size: 3em;    
    display: block;
    text-decoration: none;
}
.soc-item .count{
    color: #fff;
    text-align: center;
    font-size: 0.4em;
    display: block;
}
#social .facebook:hover,#social .twitter:hover,#social .linkedin:hover,#social .google:hover{
    opacity: 0.9;
}
#social .facebook{
    background: #3B5998;
    webkit-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    -moz-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.40);
    border: 6px solid #3B5998;
}
#social .twitter{
    background: #55acee;
    webkit-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    -moz-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.40);
    border: 6px solid #55acee;
}
#social .linkedin{
    background: #0976b4;
    webkit-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    -moz-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.40);
    border: 6px solid #0976b4;
}
#social .google{
    background: #dd4b39;
    webkit-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    -moz-box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 0.40);
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.40);
    border: 6px solid #dd4b39;
}
 
/* 22. Media Queries
-------------------------------------------------------------- */

/* Menu Media Queries*/ 
@media screen and (max-height: 30.5em) {
    .navbar nav {
        height: 70%;
        font-size: 34px;
    }
    .navbar ul li {
        min-height: 34px;
        height: 15%;
    }
}

/* Portfolio Media Queries*/ 
@media screen and (max-width: 60em) {    
    .grid li {
        width: 33.3%;
    }
 
    .slideshow li {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
    }
 
    .slideshow li figure img {
        width: auto;
        margin: 0 auto;
        max-width: 100%;
    }
 
    .slideshow nav span,
    .slideshow nav span.nav-close {
        font-size: 1.8em;
        padding: 0.3em;
        color: #31373a;
    }
    .slideshow nav span.nav-close {
        font-size: 1.8em;
        padding: 0.3em;
        top: 0;
        left: 0;
        padding: 0.5em 1em;
        color: #31373a;
    } 
    .info-keys {
        display: none;
    }
 
}
 
@media screen and (max-width: 35em) {
    .grid li {
        width: 50%;
    }
}
 
@media screen and (max-width: 24em) {
    .grid li {
        width: 100%;
    }
}


/* Media Queries for Standard Devices
 ---------------------------------------------*/
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    .navbar ul li a .primary {    
        font-size: 60px;
        line-height: 62px;
    }
}

/* iPads (portrait and landscape) ----------- */
@media all and  (max-width:1200px){  
	.logo-wrapper{left:10px;}
	.logo-wrapper2{left:10px;} 
	.logo-wrapper3{left:10px;} 
	.navmenu-open{
		display:block
	}
	.navmenu{
		display:none;
	}

    h2{
        font-size: 24px;
    }
    h3{
        font-size: 22px;
    }
    p{
        font-size: 15px;
    }

    .container{
    width:100%;
	margin-bottom:0;
    } 

    .navbar nav{
        font-size: 34px;
    }
    .navbar ul li a .primary {    
        font-size: 30px;    
        line-height: 18px;
        padding-top: 18px;
        padding-bottom: 5px;
    }
    .navbar ul li .secondary{
        color: #fff;
        font-size: 15px;
        display: block;
        visibility: hidden;
        line-height: 15px;
    }
    .navbar ul li a:hover .secondary{
        color: #fff;
        visibility: visible;
        font-size: 15px;
    }
    h2.section-title,h2.single-title,h2.work-title,.services-info h2{
        font-size: 2.5em;
    }    
    .grid-gallery figcaption h3{
        font-size: 1em;
    }
    .home-text h2{
        font-size: 4.5em;
    }
    .instagram-caption{    
        font-size: 14px;    
    }
    .section-info h3{
        font-size: 20px;
        padding: 0 12px;
        margin: 12px 0 20px;
    }
    .service-list .service-title {
        font-size: 1.6em;
    }
    .com_list{margin:0 10px;}
    .section-info p{
        font-size: 18px;
        padding: 0 12px;
    }
    .btn-video-wr,.btn-transparent{
        padding: 12px 30px;
        font-size: 18px;
    }
	
	.icon_g{display:none;}
	.service-box-last-1{    
    border-right: 1px dashed #d6d6d6;
    border-bottom: 1px dashed #d6d6d6;
	}
    .co_pils{width:90%;/* margin-left:-4% */}
    .co_pil{width:100%}
    .co_pil img{    /* width: 80%; */ }
	.circle-point{
		display:none;
	}
	
	.conset{width: 100%;height: auto; font-size:12px;padding:0 10px 50px;margin: 0;}
	.con00, .con01, .con02, .con03, .con04{width:100%;padding:10px}
	.con04 > .branch{font-size:12px;}
	
	#portfolio .container ul li{width:49%;}
	
	#business .container{width:100%;}	
	#business .container ul li{width:49%;}
	
	#portfolio .portfolio_view .tit_area h3{margin:0; font-size:24px}
	#portfolio .portfolio_view .cont_area .txt li span{font-size: 16px;padding-left: 0;}
	#portfolio .portfolio_view .cont_area .txt li h2{font-size: 17px;}
	#portfolio .portfolio_view {margin: 0 10px;}
	#portfolio .portfolio_view ul{margin: 20px 0 10px;}
	#portfolio .portfolio_view .cont_area .img img{width:100%;}
}

@media all and (max-width : 900px){ 
.bg2001 .bg2001_in{width:auto;background-size:98% 100%;}
.cont_recruit_01 > img{width:98%}
}

@media all and (max-width : 740px){ 
	.use_pc{display:none;}
	.use_mo{display:block;}
	#main-wrapper{/* padding:0 10px */}
	#company, #business, #portfolio, #contact{padding: 290px 0 0;}
	.pdt290{padding:290px 0 0 0}
	
    .home-text h2 img{width:80%;}
	.bg2001 .img01{margin: 100px 0 50px;}
	.img01{width:90%;}
	
	.con04 > .ic_location > ul > li{width: 32.3%;padding: 0 0;margin: 2px;overflow: hidden;}
	.con04 > .ic_location > ul > li img{margin: 0 auto;width: auto;padding: 10px;}
	.bg2001{background: url(../images/bg2c1_mobile.gif) center top 126px no-repeat;margin: 10px 0 0 0;width: 100%;height: auto;position: relative;background-size: inherit;}
	.bg2001 .bg2001_in{
			height: auto;
			position: relative;
			margin: 22px 0 0;
			top:0;
			bottom:0;
			left:0;
			right:0;
			padding: 0 20px;
			}
	.bg2001 .bg2001_in > ul > .bg2001_img{display:none;}
	.bg2001 .bg2001_in .txt02{letter-spacing: -1.5px;font-size: 13px;text-align: right;}
	.bg2002{background: url(../images/bg3c1_mobile.gif) center top repeat-x; height: auto;}
	.bg2002 .bg2002_in_mo{margin-top:30px;padding-top: 200px;}
	.bg2002 .bg2002_in_mo h5, .bg2002 .bg2002_in_mo li{color:#fff;}
	.bg2002 .bg2002_in_mo h5{font-size: 13px;border-bottom: 2px #fff solid;width: auto;line-height: 200%;display: inline-block;letter-spacing: -0.5px;}
	.bg2002_in_mo li > span{font-size:12px;display: inline-block;word-break: keep-all;}
	.bg2002 .bg2002_in_mo ul {overflow:hidden;}
	.bg2002 .bg2002_in_mo ul > li{
	float:left;
	width: 49.56%;
	padding:0 15px;
	/* height:200px; */
	background: url(../images/bgdot_2002.png) left top 23px no-repeat;
	margin-bottom: 20px;
	}
	.title_sub > h4{font-size:22px;white-space:normal;word-break:keep-all;margin-bottom:10px;line-height: 28px;}
	.title_sub > span{font-size:15px;white-space:normal;word-break:keep-all;line-height: 14px;}
	.cont_recruit_01 > img, .cont_recruit_02 > img{width:100%}
	.cont_benefit_01{width:100%}
	.cont_benefit_01 > ul > li{padding:30px 10px}
	.cont_benefit_01 > ul > li > div > ul{width: 340px;overflow:hidden;margin: 0 auto;}
	.cont_benefit_01 > ul > li > div > ul > li{width: 145px;text-align: left;margin: 0 0 0 20px;}
	.cont_culture_01{width:100%;height: auto;}
	.cont_culture_01 > img{width:100%;margin: 0 auto;}
	.cont_culture_01 .cultureDiv{width: 296px;position: relative;margin: 0 auto;}
	.cultureDiv img{width: auto;position: relative;}
	.cul_img01{top:0;left: 0;}
	.cul_img02{top: 0;left: 0;}
	.cul_img03{top: 0;left: 0;right: 0;margin: auto;}
	.cul_img04{top: 0;right: 0;}
	.cul_img05{top:0;right: 0;}
	.con04 > span{margin: 30px;}
	.bdr_a10{border:none;}
	.client h2{padding:50px 0 0;}
	.client span{margin:20px 0 30px;font-size: 15px;}
	.client span strong{font-size: 18px;}
	#company .tab_bg{padding-top: 10px;background: url(../images/bg_tab00.png) left top repeat-x;}

}


/* Smartphones (portrait and landscape) ----------- */
@media all and (max-width : 480px) {
    .section-title{width:auto}
    h2{
        font-size: 20px;
    }
    h3{
        font-size: 18px;
    }
    p{
        font-size: 14px;
    }

    .container{
    width:100%;
    }
    h1.logo {
        font-size: 30px;
    }
    .logo img {
        margin-top: -10px;
        width: 130px;
    }
    .navmenu-open, .navbar, .navbar-close{
        /*top: 10px;*/
        right: 10px;
    }
    .navbar nav{
        font-size: 24px;
    }
    h2.section-title,h2.single-title,h2.work-title,.services-info h2{
        font-size: 32px;
    }
    .home-text h2{
        font-size: 3em;
    }
    .home-text h3{
        font-size: 2.6em;
    }
    .home-carousel-caption p{
        font-size: 1.2em;
    }
    #testimonial blockquote{
        font-size: 1.2em;   
    }
    .section-info h3{
        font-size: 18px;
        padding: 12px;
        word-break: keep-all;
        white-space: normal;
        margin: 0;
    }
    .section-info p{
        font-size: 16px;
        padding: 12px;
        margin: 0 10px;
    }
    .com_list p span{
    	font-size: 14px;

    }
    .com_list p span:first-child {margin:5px 0 0 0;}
    .service-list .service-title {
        font-size: 1.2em;
    }
    .btn-video-wr,.btn-transparent{
        padding: 8px 20px;
        font-size: 16px;
    }
    .navbar ul li a .primary {
        font-family: 'Noto Sans KR', sans-serif ;
        font-size: 22px;
        color: rgba(255,255,255,0.8);
        line-height: 22px;
        padding-top: 5px;
    }
    .navbar ul li a .secondary {
        font-size: 12px;
        color: rgba(255,255,255,0.6);        
        letter-spacing: 2px;    
    }
    .slideshow nav span.nav-prev,.slideshow nav span.nav-next{
        color: #333;
    }
    #work .work-carousel-caption{
        text-align: center;
        right: 0;
        padding: 20px;
    }
    #work .work-content, #work .work-list,#work .work-carousel-caption a{
        display: none;
    }
    #contactform{
        padding: 10px;
    }
    #contactform input#email{
        width: 100%;
        margin-right:0%;
    }
    #contactform input#phone{
        width: 100%;
        margin-left:0%;
    }

    #contactform #comments{
        margin: 0px 0px 10px 0px;
    }
    /*hide theme customizer in mobile*/
    #theme-customizer{
        display: none;
    }
	
	.img01{width:auto;}
	.service-box-2{    
    border-right: 1px dashed #d6d6d6;
    border-bottom: 1px dashed #d6d6d6;
	}
	
	#portfolio .container ul li{width:100%;}
	#bo_gall #gall_ul>li{width:100%;} /*ê·¸ëˆ„ë³´ë“œ ê°¤ëŸ¬ë¦¬ ê²Œì‹œíŒ ëª©ë¡*/
	#portfolio .selectBox02{width:auto; margin:5px 0 0}
	#portfolio .selectBox02 .txt{ font-size:14px;}
	#portfolio .portfolio_view .tit_area p{font-size:12px;}
	#portfolio .portfolio_view .tit_area h3{margin:0; font-size:18px}
	#portfolio .portfolio_view .cont_area .txt li span{font-size: 13px;padding-left: 0;}
	#portfolio .portfolio_view .cont_area .txt li h2{font-size: 14px;}

    .co_pils{width: 100%;/* margin-left:-5%; */background: #000;padding-bottom: 30px;}
    .co_pils ul > li{width:100%;background:none;height: auto;float: none;padding: 20px 20px 0;}
    .co_pils ul > li > img{position:absolute}
    .co_pils ul > li > span{position:relative;text-align:left;overflow: hidden;}
    .co_pil{width:100%;margin: 0 20px;}
    .co_pil img{width: 20%; }
    .co_pils .phil_icon{display:none;}
    .bg2000{background-size: 800px;margin: 90px 0 0;height: 300px;}
    .bg_pers, .bg_pers2{background-size: 400px;height: 100px;margin: 30px 0;}
	
	.con04 > .branch{font-size:12px;}
	.con04 > p{font-size:14px;margin: 20px 0;}
	.con04 > .ic_location > ul > li{width: 48%;margin: 2px;overflow: hidden;border-left: none;}
	.con04 > .ic_location > ul > li:nth-child(1) img, .con04 > .ic_location > ul > li:nth-child(3) img{}
	.pdt150{padding:0}
	.footer > .footer_in .footer-text{font-size:12px;text-align:center;float: none;}
	.footer > .footer_in{padding:10px}
	#map{margin:0;}
}

/* iPhone 4 ----------- */
@media all and (-webkit-min-device-pixel-ratio : 1.5) and (min-device-pixel-ratio : 1.5) {
    h1.logo {
        font-size: 30px;
    }
    .logo img {
        margin-top: -10px;
       
    }
}