html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, linkquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
header, footer, menu, nav, section, article, aside {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	text-decoration:none;
	list-style:none;
	vertical-align: baseline;
	display:block;
}
:focus {outline: 0;}
ol, ul {list-style: none;}
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {text-align: left;font-weight: normal;}
linkquote:before, linkquote:after,
q:before, q:after {content: "";}
linkquote, q {quotes: "" "";}

/***************************/

*,
*:before,
*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

html{
	height:100%;
}

body{
	background:rgba(0, 0, 0, 1);
	font-family: 'Dancing Script', cursive;
	width:100%;
	height:100%;
	overflow:hidden;
}

/******* CT MOBILE ALERT *******/

.ct-mobile-alert{
	width:100%;
	height:100%;
}

.ct-mobile-alert p{
	width:100%;
	height:100%;
	text-align:center;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

/******* CT LOADER *******/

.ct-loader{
	background:rgba(0, 0, 0, 0.5);
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	display:none;
	z-index:9;
}

.ct-loader.active{
	display:block;
}

.ct-loader-circle{
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-moz-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}

.loader-circle{
	width:100px;
	height:100px;
	border:2px solid #fff;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	position:relative;
}

.active .loader-circle{
	-webkit-animation:moveRotate 2s linear infinite;
	-moz-animation:moveRotate 2s linear infinite;
	animation:moveRotate 1s linear infinite;
}

.loader-circle:before{
	content:'';
	width:80px;
	height:80px;
	border:2px solid #ffeb3b;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	position:absolute;
	top:0;
	left:8px;
}

.active .loader-circle:before{
	-webkit-animation:moveRotate 2s linear infinite;
	-moz-animation:moveRotate 2s linear infinite;
	animation:moveRotate 1s linear infinite;
}

.loader-circle:after{
	content:'';
	width:68px;
	height:68px;
	border:2px solid #fff;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	position:absolute;
	top:10px;
	left:14px;
}

@-webkit-keyframes moveRotate{
	0%{
		-webkit-transform:rotate(0deg);
	}
	100%{
		-webkit-transform:rotate(360deg);
	}
}

@-moz-keyframes moveRotate{
	0%{
		-moz-transform:rotate(0deg);
	}
	100%{
		-moz-transform:rotate(360deg);
	}
}

@keyframes moveRotate{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}

/******* CT CONTENT *******/

.ct-content{
	width:100%;
	height:100%;
	opacity:0;
	-webkit-transition:opacity 1s ease;
	-moz-transition:opacity 1s ease;
	transition:opacity 1s ease;
}

.ct-content.active{
	opacity:1;
}

/******* CT HEADER *******/

.ct-header{
	background:rgba(0, 0, 0, 0.5);
	width:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:10;
	overflow:hidden;
}

.ct-logo{
	color:#fff;
	font-size:32px;
	padding:20px;
	float:left;
}

.ct-logo span{
	color:#ffeb3b;
	display:inline;
}

/******* Menu *******/

.ct-menu{
	width:calc(100% - 147.65px - 135px);
	height:79px;
	float:left;
	text-align:center;
}

.ct-menu ul{
	height:100%;
	display:inline-block;
}

.link-menu{
	height:100%;
	color:#fff;
	float:left;
	border-top:5px solid transparent;
	-webkit-transition:color 0.5s ease, border 0.5s ease;
	-moz-transition:color 0.5s ease, border 0.5s ease;
	transition:color 0.5s ease, border 0.5s ease;
}

.link-menu.current{
	color:#ffeb3b;
	border-top:5px solid #ffeb3b;
}

.link-menu.not-current:hover{
	color:#ffeb3b;
}

.link-menu a{
	color:inherit;
	width:100%;
	padding:20px;
	font-size:32px;
}

.link-header{
	background:#fff;
	color:#e65100;
	padding:10px 20px;
	position:absolute;
	top:50%;
	right:20px;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-border-radius:25px;
	-moz-border-radius:25px;
	border-radius:25px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

/******* SLIDES *******/

.ct-slides{
	height:100%;
	min-height:100%;
	float:left;
	-webkit-transition:transform 0.5s ease, width 0.5s ease;
	-moz-transition:transform 0.5s ease, width 0.5s ease;
	transition:transform 0.5s ease, width 0.5s ease;
}

.ct-slides.half{
	width:50%;
}

.ct-slides.wide{
	width:55.5555%;
}

.ct-slides.small{
	width:44.4444%;
}

.ct-section{
	background:no-repeat center center / cover #fff;
	width:100%;
	height:100%;
	position:relative;
}

.ct-section.text{
	background:no-repeat center center / cover;
	background-image:url(../img/bkg/bkg-article.jpg);
}

.ct-article{
	height:100%;
	padding:140px 40px 40px;
	position:absolute;
	top:0;
	overflow:hidden;
}

.slide-left .ct-article{
	right:0;
}

.slide-left .full{
	background:no-repeat right center / cover;
}

.slide-right .full{
	background:no-repeat left center / cover;
}

.ct-article h1{
	font-size:64px;
	padding:0 0 40px;
}

.ct-article h2{
	font-size:32px;
	padding:0 0 40px;
}

.ct-article p{
	font-size:24px;
	padding:0 0 40px;
}

.ct-article span{
	color:#f9a825;
	font-weight:bold;
	display:inline;
}

.ct-article .text-center{
	text-align:center;
}

.ct-article ul{
	font-size:24px;
	text-align:center;
}

.ct-article ul li{
	margin-bottom:20px;
}