/*
 * Copyright inpleworks, Co.
*/


/* ------------------------------------------------------------------------------------------------------------------ */
/* CUSTOM RESPONSIVE
/* ------------------------------------------------------------------------------------------------------------------ */
/* Extra small devices  (Phones 319px 이하) 
---------------------------------------------------------------------------- */
@media (max-width: 319px) {			
	.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
	  width: 100%;
	}
	h1 {
	  	font-size: 32px;
	}
	h2 {
	  	font-size: 26px;
	}
	h3 {
	  	font-size: 22px;
	}
	h4 {
	  	font-size: 18px;
	}
}

/* Extra small devices  (Phones 768px 이하)
---------------------------------------------------------------------------- */
@media (max-width: 767px) {		
	h1 {
	  	font-size: 36px;
	}
	h2 {
	  	font-size: 28px;
	}
	h3 {
	  	font-size: 24px;
	}
	h4 {
	  	font-size: 20px;
	}
	h5 {
	  	font-size: 16px;
	}
	h6 {
	  	font-size: 14px;
	}	
}

/* Small devices (tablets, 768px 이상)
---------------------------------------------------------------------------- */
@media (min-width: 768px) {
	
	/* page top */
	.xet-page-top > div {
		height: 250px;
	}
	
	/* TOP SCROLL BUTTON
	-------------------------------------- */ 
	#xet-top-scroll { 
		width: 50px; 
		height: 50px; 
		line-height: 50px;
	}
	#xet-top-scroll a { 
		background-size: 24px;
	}
	
	/* Push */
	.xet-push-left {
		width: 320px;
	    left: -320px;
	}
	.xet-push-right {
		width: 320px;
	    right: -320px;
	}
	.push-toright {
	    left: 320px !important;
	}
	.push-toleft {
	    left: -320px !important;
	}
	
}

/* Medium devices (desktops, 992px 이상)
---------------------------------------------------------------------------- */ 
@media (min-width: 992px) {	
	
	/* HEADER
	-------------------------------------- */ 
	#xet-header {
		height: 80px;
	}	
	.xet-logo {
		width: auto;
		height: 80px;
		line-height: 80px;
		margin-right: 30px;
	}
	.xet-logo a img {		
		height: 40px;
		margin-top: 20px;
	}	
	#xet-header .xet-nav-ul > li { 
		height: 80px;
		line-height: 80px;
	}
	#xet-header .xet-nav-ul > li > a,
	#xet-header .xet-nav-ul > li > button { 
		height: 80px;
		line-height: 80px;
	}
	/* 아이콘 버튼 */
	.xet-nav-ul > li.li-btn > button {
		width: 50px;
	}
	/* Hover color NAV 1차 */
	.xet-nav-ul > li.li-btn:hover > button {
		
	}
	#xet-xs-login {
		position: relative;
		margin-left: 20px;
	}
	
	/* 슬라이더 ON */
	#xet-header.fixed { 
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100px;
		border-bottom: 1px  solid rgba(255, 255, 255, 0.2);
		background: transparent;
	}
	#xet-header.fixed .xet-logo {
		height: 100px;
		line-height: 100px;
	}
	#xet-header.fixed .xet-logo a {
		color: #fff;
	}
	#xet-header.fixed .xet-logo a img {		
		height: 50px;
		margin-top: 25px;
	}	
	#xet-header.fixed .xet-nav-ul > li > a,
	#xet-header.fixed .xet-nav-ul > li > button { 
		height: 100px;
		line-height: 100px;
		color: #fff;
	}
	#xet-header.fixed .xet-logo a .logo-img-w {
		display: block;
	}
	#xet-header.fixed .xet-logo a .logo-img-b {
		display: none;
	}
	
	
	/* scroll to fixed */
	#xet-header.scroll-fixed { 
		position: fixed;
		top: 0;
		left: 0;
		right: 0;		
		-webkit-animation-name: animationFade;
	    -moz-animation-name: animationFade;
	    -o-animation-name: animationFade;
	    animation-name: animationFade;
	    -webkit-animation-duration: 1s;
	    -moz-animation-duration: 1s;
	    -o-animation-duration: 1s;
	    animation-duration: 1s;
	    -webkit-animation-fill-mode: both;
	    -moz-animation-fill-mode: both;
	    -o-animation-fill-mode: both;
	    animation-fill-mode: both;
	}
	@-webkit-keyframes animationFade {
	    from {
	        opacity: 0;
	        -webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	    }
	    to {
	        opacity: 1;
	        -webkit-transform: none;
	        transform: none;
	    }
	}
	@-moz-keyframes animationFade {
	    from {
	        opacity: 0;
	        -webkit-transform: translate3d(0, -100%, 0);
	        -moz-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	    }
	    to {
	        opacity: 1;
	        -webkit-transform: none;
	        -moz-transform: none;
	        transform: none;
	    }
	}
	@-o-keyframes animationFade {
	    from {
	        opacity: 0;
	        -webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	    }
	    to {
	        opacity: 1;
	        -webkit-transform: none;
	        -o-transform: none;
	        transform: none;
	    }
	}
	@keyframes animationFade {
	    from {
	        opacity: 0;
	        -webkit-transform: translate3d(0, -100%, 0);
	        -moz-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	    }
	    to {
	        opacity: 1;
	        -webkit-transform: none;
	        -moz-transform: none;
	        -o-transform: none;
	        transform: none;
	    }
	}
	#xet-header.scroll-fixed,
	#xet-header.scroll-fixed .xet-logo a,
	#xet-header.scroll-fixed .xet-nav-ul > li { 
		height: 80px;
		line-height: 80px;
	}
	#xet-header.scroll-fixed .xet-logo a img {
		height: 40px;
		margin-top: 20px;
	}	
	
	/* Section - Slider
	-------------------------------------- */ 
	.xet-slider .xet-slider-container {		
	    height: calc(100vh);
	}
	
	/* Section - Feature
	-------------------------------------- */ 
	.xet-feature .xet-icon-box {
		min-height: 200px;
	}
		
	/* Section - chain
	-------------------------------------- */ 
	.xet-chain-item .chain-img-inner a {
		font-size: 18px;
		margin: 0 5px;
	}
	
	/* page top */
	.xet-page-top > div {
		height: 250px;
	}
	
	
	/* BTN
	-------------------------------------- */ 
	.xet-btn-theme,
	.xet-btn-bg-theme { 	
		padding: 15px 40px;
	}
}

/* Large devices (large desktops, 1200px 이상)
---------------------------------------------------------------------------- */ 
@media (min-width: 1200px) {	
	.xet-container-fluid {
    	padding: 0 30px;
  	}
}
