@import url(/common/css/font.css);
@import url(/common/css/animate.css);

/* 애니메이션 재정의 */
/* swing */
@-webkit-keyframes swing {
	20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
	20% { -webkit-transform: rotate(6deg); }	
	40% { -webkit-transform: rotate(-4deg); }
	60% { -webkit-transform: rotate(2deg); }	
	80% { -webkit-transform: rotate(-2deg); }	
	100% { -webkit-transform: rotate(0deg); }
}

@keyframes swing {
	20% { transform: rotate(6deg); }	
	40% { transform: rotate(-4deg); }
	60% { transform: rotate(2deg); }	
	80% { transform: rotate(-2deg); }	
	100% { transform: rotate(0deg); }
}

/* fadeInLeft */
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-10%, 0, 0);
		transform: translate3d(-10%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* fadeInRight */
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(10%, 0, 0);
		transform: translate3d(10%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* fadeInUp */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* 애니메이션 추가 */
/* ScaleOut*/
.scaleOut {
	animation-name: scaleOut;
}

@keyframes scaleOut {
	0% {transform: scale(0.1);}
	85% {transform: scale(1.1);}
	100% {transform: scale(1);}
}

.scaleOut.animated {
	animation-fill-mode:both;
	animation-duration:0.5s;
}


* {
	font-family: 'Nanum Gothic', sans-serif;
	font-size: 12px;
}

@media screen and (max-width: 767px) {
	body, html {
		line-height: 1;
	}
	.title, .intro {
		font-size: 5px;
	}
	.slides-navigation {
		display: none;
	}
	.footer p {
		font-size: 1em;
	}
}

@media screen and (min-width: 768px) and (max-width: 959px) {
	.slides-navigation {
		display: none;
	}
}
/*
@media screen and (min-width: 960px) {
}
*/

::selection {
	color: #ffffff;
	background: #1d436f;
}

body, html {
	height: 100%;
	min-height: 100%;
	color: #ffffff;
	background-color: #ededed;
}

a:hover, a:active, a:focus {
	border: none;
	outline: none;
	text-decoration: none;
}

header {
	padding: 0;
	margin-top: 0;
	text-align: center;
	width: 100%;
	top: 10px;
	position: absolute;
	z-index: 20;
}

section {
	padding:  0;
	margin: 0;
}

h1 {
	font-size: 4.3em;
	font-weight: 700; 
}

h2 {
	font-size: 3.8em;
	font-weight: 700; 
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 1.5em;
}

h5 {
	font-size: 1.1667em;
}

h6 {
	font-size: 1em;
}

p {
	font-size: 1.33em;
	line-height: 1.5em;
}

span, li {
	font-size: 1em;
}

td, li {
	color: #000000;
}

a.accordion-toggle {
	font-size: 1em;
}

/* 네비게이션 */
.navbar-brand {
	color: #8f96cb;
	font-weight: 700;
	text-shadow: 1px 1px 1px black; 
}
.navbar-brand:hover,
.navbar-brand:focus {
	color: #bc90c1;
}
.navbar-nav > li > a {
	color: #f08590;
	font-weight: 700;
	text-shadow: 1px 1px 1px black; 
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
	color: #fac18a;
	background-color: transparent;
}
.nav .active a {
	color: #fac18a;
}
/*네비게이션고정*/
.navbar-collapse.in>.nav>li {
	background-color: #333;
	z-index: 3;
}
.navbar-toggle {
	background-color: #666;
	color: #333;
}
.navbar-toggle .icon-bar {
	background-color: #333;
}
@media(max-width:767px) {
	.navbar-fixed-top {
		opacity: 0.8;
		background-color: #333
	}
}
@media(min-width:768px) {
	.navbar-custom {
		padding: 20px 0;
		border-bottom: 0;
		letter-spacing: 1px;
		background: 0 0;
		-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
		-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
		transition: background .5s ease-in-out,padding .5s ease-in-out;
	}
	.navbar-custom.top-nav-collapse {
		padding: 0;
		border-bottom: 1px solid rgba(255,255,255,.3);
		background: #333;
	}
}
.contrast {
	background: rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 23px 5px rgba(0, 0, 0, 0.4);
	-pie-box-shadow: 0 0 23px 5px rgba(0, 0, 0, 0.4);
	border-radius: 3px;
}

/* 부트스트랩 여백 제거 */
.container-fluid {
	padding: 0;
}

.row {
	margin: 0;
}

@media screen and (max-width: 767px) {
	#page-3_2_1.container {
		padding-left: 0;
		padding-right: 0;
	}
	#page-3_2_2.container {
		padding-left: 0;
		padding-right: 0;
	}
	#page-4_2_1.container {
		padding-left: 0;
		padding-right: 0;	
	}
	#page-4_2_2.container {
		padding-left: 0;
		padding-right: 0;	
	}
	#page-6_1_1.container {
		padding-left: 0;
		padding-right: 0;	
	}
}

/*부트스트랩 기타 */
span.accordion-toggle {
	cursor: pointer;
}



#page-6_4.col-sm-12 {
	padding: 0;
}

.info-small {
	font-size: 1em;
	color: #666666;
}

.copyright {
	color: #666666;
	background-color: #101010;
	text-align: center;
}

/* 최초 로딩시 fade in 효과 */
.loading {
	background: url('/common/img/loading/loading16.gif') no-repeat center center;
}

.loading > #opw {
	opacity: 0;
	visibility: hidden;
}

.loaded > #opw {
	opacity: 1;
	transition: opacity 300ms ease-out;
	visibility: visible;
}

.bcg {
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	height: 100%;
	width: 100%;
}

.bcg-mobile {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
}

.headline-small {
	font-family: Gill Sans, Verdana;
	font-size: 11px;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold;
}

.headline-large {
	font-family: times, Times New Roman, times-roman, georgia, serif;
	color: #444;
	margin: 0;
	padding: 0px 0px 6px 0px;
	font-size: 51px;
	line-height: 60px;
	letter-spacing: -2px;
	font-weight: bold;
}

/* 페이지 #1 : 인트로 & 페이드 아웃 */
/*
.slides-navigation {
}
*/

.slides-pagination {
	position: absolute;
	bottom: 25%;
}

.slides-pagination a {
	width: 30px;
	height: 5px;
	border-color: #ffffff;
	background-color: #ffffff;
	opacity: 0.5;
	box-shadow: 0 1px 1px black;
}

.slides-pagination a:hover {
	opacity: 1;
	border-color: #bc90c1;
	background-color: #bc90c1;
}
.slides-pagination a.current {
	border-color: #f08590;
	background-color: #f08590;
}

#slides {
	z-index: 10;  /* 마우스 이벤트 처리를 위하여... */
}

#page-1 .intro {
	width: 90%;
	padding-left: 10%;
	position: absolute;
	text-align: center;
	top: 45%;
}
.intro h1 {
	color: #ffffff;
	text-shadow: 5px 5px 5px black;
	opacity: 0;
}
.intro h2 {
	color: #ffffff;
	text-shadow: 5px 5px 5px black;
	opacity: 0;
}
.outro h1 {
	color: #ffffff;
	text-shadow: 5px 5px 5px black;
}
.outro h2 {
	color: #ffffff;
	text-shadow: 5px 5px 5px black;
	opacity: 0;
}

.page-white {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
}

.page-smart_1 {
	background-color: #50536e;
	width: 100%;
	height: 100%;
}

.page-smart_2 {
	background-color: #ededed;
	width: 100%;
	height: 100%;
}

.page-smart_3 {
	background-color: #fff9c7;
	width: 100%;
	height: 100%;
}

.page-smart_4 {
	background-color: #d8c2ab;
	width: 100%;
	height: 100%;
}

.page-smart_5 {
	background-color: #69acdf;
	width: 100%;
	height: 100%;
}

/* 페이지 #2 */
#page-2 {
	position: relative;
}

#page-2 .bcg,
#page-2 .bcg-mobile {
	background: none;
	height: 250px;
	text-align: center;
}

#page-2_1 {
	background-color: #ffffff;
	z-index: 2;
}

#page-2_1_1 a {
	display: inline-block;
	padding-top: 10px;
	width: 10%;
}

#page-2_1_1 img {
	width: 80%;
	height: 80%;
}

#page-2_1_1 a div {
	padding-top: 10px;
	font-size: 1em;
	color: #ffffff;
}


@media screen and (max-width: 767px) {
	#page-2_1_1 a {
		display: inline-block;
		width: 25%;
		height: auto;
	}
	#page-2_1_1 img {
		width: 70px;
		height: 70px;
	}

}



/* 페이지 #3 */
#page-3 {
	position: relative;
}

#page-3_1.bcg,
#page-3_1.bcg-mobile {
	background-image:url('/img/basic/about.jpg');
	text-align: center;
}

#page-3_1 {
	height: 250px;
}

#page-3_2 {
	padding-left: 0;
	padding-right: 0;
	color: #ffffff;
}

#page-3_2 p {
	color: #000000;
}

#page-3_2_1 {
	overflow: hidden;
	background-color: #ffffff;
	padding-top: 1em;
	padding-bottom: 2em;
}

@media screen and (max-width: 768px) {
	#page-3_2_1 {
		padding-top: 0;	
	}
}

#responsive {
	overflow: hidden;
	position: relative;
	height: 250px;
	background: #d8c2ab;
}

#responsive-earth {
	position: absolute;
	left: 0;
}

#responsive-notebook {
	position: absolute;
	left: 10%;
	bottom: -50%;
}

#responsive-pad {
	position: absolute;
	left: 20%;
	bottom: -100%;
}

#responsive-phone {
	position: absolute;
	left: 30%;
	bottom: -100%;
	bottom: 0;
}

#sky {
	overflow: hidden;
	position: relative;
	height: 130px;
	background: #4a4a4a;
}

#sky-inner {

}


#sky-stars {
	position: absolute;
	top: 10%;
	left: 12%;
}

#sky-moon {
	position: absolute;
	top: 10%;
	left: 80%;
}

#sky-sun {
	position: absolute;
	top: 100%;
	left: 5%;
}

#page-3_2_2 {
	background-color: #ffffff;
	padding-top: 2em;
	padding-bottom: 2em;
}


/* 페이지 #4 */
#page-4 {
	position: relative;
}

#page-4_1.bcg,
#page-4_1.bcg-mobile {
	background-image:url('/img/basic/cloud_1.jpg');
	text-align: center;
}

#page-4_1 {
	height: 250px;
}

#page-4_2 {
	padding-left: 0;
	padding-right: 0;
}

#page-4_2 p {
	color: #000000;
}

#page-4_2_1 {
	background-color: #ffffff;
}

#ani-aws-title {
	text-align: center;
}

#ani-aws-title h3 {
	color: #1d436f;
	font-weight: 900;
}

#page-4_2_2 {
	background-color: #ffffff;
}

#browser {
	overflow: hidden;
	position: relative;
	height: 250px;
	background: #fff9c7;
}

#browser-ie {
	position: absolute;
	width: 50%;
	left: 40%;
	top: 80%;
}

#browser-chrome {
	position: absolute;
	width: 60%;
	left: 60%;
	top: 50%;
}

#browser-firefox {
	position: absolute;
	width: 15%;
	left: 10%;
	top: 50%;
}

#browser-safari {
	position: absolute;
	width: 25%;
	left: 55%;
	top: 90%;
}

#browser-opera {
	position: absolute;
	width: 18%;
	left: 20%;
	top: 40%;
}

#design h1, #develop h1, #deploy h1{
	color: #333333;
	font-weight: 900;
}


/* 페이지 #5 : 배경색 에니메이션 */
#page-5 {
	position: relative;
}

#page-5_1.bcg,
#page-5_1.bcg-mobile {
	background-image:url('/img/basic/pricing.jpg');
	text-align: center;
}

#page-5_1 {
	height: 250px;
}

#page-5_2 {
	background-color: #8bc7e0;
}


#page-5_1_1 .list-group-item.active {
	color: #ffffff;
	background-color: #dddddd;
	border-color: #dddddd;
}

#page-5_1_1 li {
	font-size: 2em;
}

#page-5_2_1 {
	background-image: url('/img/basic/balloon2.png');
	background-repeat: no-repeat;
	background-position: 0px 100px;
}

#ani-pricing_1 {
	background-image: url('/img/basic/pricing_info_1.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: 400px;
}
#ani-pricing_2 {
	background-image: url('/img/basic/pricing_info_2.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: 400px;
}
#ani-pricing_3 {
	background-image: url('/img/basic/pricing_info_3.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: 400px;
}
#ani-pricing_4 {
	background-image: url('/img/basic/pricing_info_4.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: 400px;
}

.pricing h3, .princing h5 {
	font-weight: 600;
	line-height: 0;
}

#pricing_1 .pricing {
	position: absolute;
	padding-top: 105px;
	margin-left: -50%;
	left: 100%;
	height: 400px;
	width: 150px;
}

#pricing_2 .pricing {
	position: absolute;
	padding-top: 150px;
	margin-left: -77%;
	left: 100%;
	height: 400px;
	width: 300px;
	text-align: center;
}

#pricing_3 .pricing {
	position: absolute;
	padding-top: 60px;
	margin-left: -77%;
	left: 100%;
	height: 400px;
	width: 300px;
	text-align: center;
}

#pricing_4 .pricing {
	position: absolute;
	padding-top: 105px;
	margin-left: -77%;
	left: 100%;
	height: 400px;
	width: 150px;
}


@media screen and (max-width: 767px) {
	#ani-pricing_1 {
		height: 270px;
		background-size: cover;
	}
	#ani-pricing_2 {
		height: 270px;
		background-size: cover;
	}
	#ani-pricing_3 {
		height: 270px;
		background-size: cover;
	}
	#ani-pricing_4 {
		height: 270px;
		background-size: cover;
	}
	#pricing_1 .pricing {
		padding-top: 30px;
		margin-left: -60%;
		height: 270px;
	}
	#pricing_2 .pricing {
		padding-top: 75px;
		margin-left: -88%;
		height: 270px;
		width: 200px;
	}
	#pricing_3 .pricing {
		padding-top: 10px;
		margin-left: -88%;
		height: 270px;
		width: 200px;
	}
	#pricing_4 .pricing {
		padding-top: 25px;
		margin-left: -88%;
		height: 270px;
	}
}



/* 페이지 #6 : 배경색 에니메이션 */
#page-6 {
	position: relative;
}

#page-6_1 {
	height: 400px;
	background-color: #8bc7e0;
	padding-left: 0;
	padding-right: 0;
}

#page-6_1_1 .clouds-1 {
	background: url('/img/basic/clouds_1.png') repeat-x 100px 0;
	height: 354px;
	position: absolute;
	/*top: 100px;*/
	width: 100%;
	z-index: 1;
	bottom: 0;
}

#page-6_1_1 .clouds-2 {
	background: url('/img/basic/clouds_2.png') repeat-x 200px 0;
	height: 389px;
	position: absolute;
	/*top: 100px;*/
	width: 100%;
	z-index: 1;
	bottom: 0;
}

#page-6_1_1 h2 {
	color: #69acdf;
}

#contact {
	position: absolute;	
	top: 50%;
	height: 50%;
	width: 100%;
	z-index: 1;
}

#page-6_2.bcg {
	background-color: #8bc7e0;
}

#page-6_2.bcg-mobile {
	display: block;
	background-color: #8bc7e0;
}

#page-6_2_1 {
	background-image: url('/img/basic/balloon.png');
	background-repeat: no-repeat;
	background-position: right 0px 100px;
}

@media screen and (max-width: 767px) {
	#page-6_2_1 {
		background-image: none;
	}
}

#post-contact-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

#post-contact label {
	font-size: 1em;
}

#ani-form_5_1 {
	text-align: center;
}

#page-6_3.bcg {
	background-image:url('/img/basic/end.jpg');
	/*position: fixed; - 프로그램으로 해결함. */
	bottom: 0;
	left: 0;
	opacity: 0;
}

#page-6_3.bcg-mobile {
	display: block;
	background-image:url('/img/basic/end.jpg');
}

#page-6_3_1 {
	vertical-align: middle;
}

#page-6_4.bcg {
	background: none;
	/*position: fixed; - 프로그램으로 해결함. */
	bottom: 0;
	left: 0;
	opacity: 0;
}

#page-6_4.bcg-mobile {
	display: block;
	background: none;
	background-color: #69598f;
}

#url {
	z-index: 2;
}

#bubble {
	position: absolute;
	top: 20%;
	left: -10px;
	width: 376px;
	height: 376px;
	background: black;
	border-radius: 376px;
	text-align: center;
	z-index: 1;
}

#tel {
	padding-top: 60px;
	padding-right: 17px;
	padding-left: 17px;
}

@media screen and (max-width: 767px) {
	#bubble {
		top: 60%;
		width: 200px;
		height: 200px;
		background: black;
		border-radius: 200px;
	}
	#bubble h4 {
		font-size: 1em;
	}
	#bubble h2 {
		font-size: 1.5em;
	}

	#tel {
		padding-top: 20px;
		padding-right: 17px;
		padding-left: 17px;
	}
}



/* 폼 */
.form label {
	text-align: left;
}

#post-contact {
	position: relative;
	/*opacity: 0.1;*/
	z-index: 10;  /* 입력을 받기 위하여... */
}

/* footer */
.prefooter {
	height: 66%;
}

.footer {
	position: absolute;
	bottom: 0;
	color: #999999;
	background-color: #000000;
	padding-top: 10px;
}

#tel h4, #tel h2{
	color: #ffffff;
	opacity: 1;
}

#remote {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 30px;
	right: 30px;
	background-image: url('/img/basic/remote.png');
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color: #f29eb7;
	border-radius: 50%;
	opacity: 0;
	z-index: 10000;
}

/* 기본 구조 - opw: one page web */
.opwContainer {
	display: table;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.opwContent {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

