/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* --------------------------------

font *Noto Sans KR (korean) http://www.google.com/fonts/earlyaccess*

-------------------------------- */
@font-face {
	font-family: 'Noto Sans KR'; font-style: normal; font-weight: 100;
	src: url(/font/NotoSansKR-Thin.woff2) format('woff2'),
	url(/font/NotoSansKR-Thin.woff) format('woff'),
	url(/font/NotoSansKR-Thin.otf) format('opentype'); }

@font-face {
	font-family: 'Noto Sans KR'; font-style: normal; font-weight: 300;
	src: url(/font/NotoSansKR-Light.woff2) format('woff2'),
	url(/font/NotoSansKR-Light.woff) format('woff'),
	url(/font/NotoSansKR-Light.otf) format('opentype'); }

@font-face {
	font-family: 'Noto Sans KR'; font-style: normal; font-weight: 500;
	src: url(/font/NotoSansKR-Medium.woff2) format('woff2'),
	url(/font/NotoSansKR-Medium.woff) format('woff'),
	url(/font/NotoSansKR-Medium.otf) format('opentype'); }

@font-face {
	font-family: 'Noto Sans KR'; font-style: normal; font-weight: 800;
	src: url(/font/NotoSansKR-Bold.woff2) format('woff2'),
	url(/font/NotoSansKR-Bold.woff) format('woff'),
	url(/font/NotoSansKR-Bold.otf) format('opentype'); }


@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,500,700');

/* --------------------------------

text-style

-------------------------------- */

.mt100 { margin-top: 100px; }
.mt50 { margin-top: 50px; }
.mt40 { margin-top: 40px; }
.mt30 { margin-top: 30px; }
.mt20 { margin-top: 20px; }
.mt10 { margin-top: 10px; }
.ml30 { margin-left: 30px; }
.point { font-weight: 700; color: #252D69!important; }
.point2 { font-weight: 500; color: #0c469c!important; }
.point3 { font-weight: 700; color: #c6ddff!important; }
.point4 { font-weight: 500; color: #ff470a!important; }
.point5 { font-size: 24px; font-weight: 500; margin-bottom: 10px; font-family: "Roboto"; }
.text-w { color: #fff!important; }
.text-w-6 { color: rgba(255,255,255,0.6); }
.point-tip { font-size: 13px; }

/* --------------------------------

button

-------------------------------- */
.btn-view { border: solid 1px #232323; padding: 10px 20px; color: #232323; display: inline-block; border-radius: 1px; }
.btn-view:hover { background-color: #000; color: #fff; }
.btn-view2 { border: solid 1px #fff; padding: 10px 20px; color: #fff; display: inline-block; border-radius: 1px; opacity: 0.6; }
.btn-view2:hover { opacity: 1; }
/* --------------------------------

margin

-------------------------------- */
.mt50 { margin-top: 50px; }
.mt40 { margin-top: 40px; }
.mt30 { margin-top: 30px; }
.mt20 { margin-top: 20px; }
.mt10 { margin-top: 10px; }
.ml30 { margin-left: 30px; }

/* --------------------------------

Animations

-------------------------------- */

.fromTopIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,0);
	opacity: 1.0;
}

.fromTopOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,-10px);
	opacity: 0.0;
}

.fromBottomIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,0);
	opacity: 1.0;
}

.fromBottomOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,10px);
	opacity: 0.0;
}

.fromLeftIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,0);
	opacity: 1.0;
}

.fromLeftOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(-10px,0);
	opacity: 0.0;
}

.fromRightIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(0,0);
	opacity: 1.0;
}

.fromRightOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: translate(10px, 0);
	opacity: 0.0;
}

.scaleUpIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: scale(1.0,1.0);
	opacity: 1.0;
}

.scaleUpOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: scale(1.3,1.3);
	opacity: 0.0;
}

.scaleDownIn
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: scale(1.0,1.0);
	opacity: 1.0;
}

.scaleDownOut
{
	transition: transform 1.0s ease, opacity 1.0s ease;

	transform: scale(0.7,0.7);
	opacity: 0.0;
}
