/* Table of contents
	Basic tmeplate	
		 1 BASIC
		 2 TYPOGRAPHY
		 3 PRELOADER
		 4 INTRO
		 
	Background
		 5 CUSTOM BACKGROUND
		 
	Sections
		 6 HOME
		 7 CONTACT
		 8 SUBSCRIBE
		 9 COUNTDOWN
		 10 SERVICE
		 11 ABOUT
		 12 BLOG
		 
	Other class
		 13 COLUMN
		 14 FORM
		 15 NAVIGATION
		 16&17 HIDE + ANIMATION
*/
/*======================== BASIC ========================*/
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, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;

}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	background: transparent;
}
a ,a:hover, a:active, a:focus ,object, embed {
	outline: 0;
	text-decoration: none;
}
svg:not(:root) {
	overflow: hidden;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	
}
html {

	font-family: roboto;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-size: 16px;
	word-spacing: normal;
	height: 100%;
	min-height: 100%;
	color: #fff;
	
	background-size: 100% 100%;
	margin: 0;
	overflow:hidden;
}
section{
	overflow:hidden;
}
a img {
	border: 0
}
a {
	color: #fff;
	text-decoration: none;
}
a:active, a:focus, a:hover {
	outline: 0;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover {
	text-decoration: none;
}
img {
	border: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
}
form {
	margin: 0;
}
button, input, textarea {
	border-radius: 0;
	font-size: 14px;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
button, input {
	line-height: normal;
}
button, input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
textarea {
	overflow: auto;
	vertical-align: top;
}

.clearfix {
	clear: both;
	float: none;
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
	content: '';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.row {
	position: relative;
	width:100%;
	max-width:970px;
	margin: 0 auto;
	text-align: center;
}
/*======================== TYPOGRAPHY ========================*/
h1, h2, h3, h4 {
	color: #fff;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 20px;
	position:relative;
	text-transform: uppercase;
}
h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 3.5rem;
}
h3 {
	font-size: 2.0rem;
}
h4 {
	font-size: 2rem;
}
b, strong {
	font-weight: 700;
}
p{
	opacity:0.7;
	font-size: 1rem;
	line-height: 1.5;
}
/* ==================== PRELOADER ==================== */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
    width:100%;
    height:100%;
	background-color:#000; 
    z-index:9999;
}
.loading {
  position: absolute;
  top: 30%;
  left: 50%;
  background-color:black;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%)
}
.loader{
	width: 150px;
	height: 150px;
	border-radius: 80%;
	border: 3px solid transparent;
	border-top-color: #0FB196;
	-webkit-animation: rotate 2s linear infinite;
	-moz-animation: rotate 2s linear infinite;
	-ms-animation: rotate 2s linear infinite;
	-o-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
}
.loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #3498db;
	-webkit-animation: rotate 3s linear infinite;
	-moz-animation: rotate 3s linear infinite;
	-ms-animation: rotate 3s linear infinite;
	-o-animation: rotate 3s linear infinite;
	animation: rotate 3s linear infinite;
}
.loader:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #2ecc71;
	-webkit-animation: rotate 1.5s linear infinite;
	-moz-animation: rotate 1.5s linear infinite;
	-ms-animation: rotate 1.5s linear infinite;
	-o-animation: rotate 1.5s linear infinite;
	animation: rotate 1.5s linear infinite;
}
/*======================== INTRO ========================*/
#sections{
	z-index:20
}
section{
	-ms-overflow-style:none !important;
	-ms-scroll-limit: 0 0 0 0;
	overflow:hidden!important;
}
.intro {
	height: 100%;
	display: table;
	top: 0;
	left: 0;
	right: 0;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	overflow: hidden;
}
.center {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
	padding: 5rem 0;
}

#home .container{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	margin: 0;
	width: 100%;
	height: auto;
}
.middle {
	width: 90%;
	max-width:90%;
	position: absolute;
	left: 50%;
	top: 68%;
	text-align:center;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#textslider{
	height: 250px!important;
	margin-top:5px;
}
.container {
	text-align: center;
	position: absolute;
	overflow:auto;
	margin:0;
	width:100%;
	height:100%;
overflow-x: hidden; 
}
.header{
	padding: 0;
}
.header h2:before{
	position: absolute;
	content: '';
	width: 100px;
	border-bottom: 2px solid rgba(255,255,255,0.4);
	bottom: -10px;
	left: 50%;
	margin-left: -50px;
}
h1 span,h2 span,h3 span{
	color:#0FB196;

}
/*======================== CUSTOM BACKGROUND ========================*/
#star {
	background:url(../media/space1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
}
.cover{
	background-color:rgba(0, 0, 0, 0.4)
}
.cover,
#star{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
/*======================== HOME ========================*/
#home .intro{
	margin: 0;
}
#logo{
	width: 100%;
	position: relative;
	margin-top:100px;
	text-transform: uppercase;
	color: white;
	line-height: normal;
}
#logo h1{
	font-size:4.5rem;
	font-weight:bold;
	margin:0;
	line-height:100%;
}
#logo p{
	font-weight:300;
}
#textslider{
	height:300px;
}
#textslider h1{
	font-size:6rem;
	font-weight:bold;
	margin:0
}
#textslider .container {
	text-align: center;
	-moz-transform: translateX(-50%) translateY(-50%);
	margin: 0 auto;
	width: 100%;
}
.description{
	width: 240px;
	margin: 0 auto;
	position: relative;
}
.description p {
	opacity:1;
	letter-spacing: 0.2rem;
	margin: 0;
	text-transform: uppercase;
}
.description p span {
	border-color: #FFFFFF;
	border-right: 0 none;
	border-style: solid;
	border-width: 1px 0px 0px;
	display: inline-block;
	margin: 6px 10px;
	width: 250px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.description p.jump{
	cursor:pointer
}
.description p.jump:hover span{
	border-color:#18BCF9
}
.description p.jump:hover i:before{
	content:"\f077"
	margin-right:3px;
}
.description p.jump:hover i{
	-webkit-animation: floating 0.5s linear infinite;
	-moz-animation: floating 0.5s linear infinite;
	-ms-animation: floating 0.5s linear infinite;
	-o-animation: floating 0.5s linear infinite;
	animation: floating 0.5s linear infinite;
}
.description i {
	color: red;
}
.breath{
	-webkit-animation: breath 1s ease infinite;
	-moz-animation: breath 1s ease infinite;
	-ms-animation: breath 1s ease infinite;
	-o-animation: breath 1s ease infinite;
	animation: breath 1s ease infinite;
}
/*======================== CONTACT ========================*/
.contact-detail{
	margin: 20px auto;
	padding: 0;
	display: block;
	width: 80%;
}
.contact-detail i{
	font-size: 25px;
	padding: 10px;
	border-radius: 100%;
	width: 45px;
	height: 45px;
}
.contact-detail i.color{ 
	background: #18BCF9;
}
/*======================== SUBSCRIBE ========================*/
.social{
	display: block;
	position: relative;
	margin: 1rem 0;
}
.social-icon {
    display: inline-block;
    line-height: 0.8em;
    margin: 0;
    position: relative;
	width: 40px;
	height:40px;
	padding-top:0px;
	padding-bottom:0px;
}
.social-icon:after {
    border: 1px solid white;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
    content: "";
    display: block;
    height: 40px;
    left: 0;
    position:absolute;
    top: 0;
    width: 40px;
}
.social-icon:hover:after {
	-webkit-transform: scale(1.5);
	-moz-transform:    scale(1.5);
	-o-transform:      scale(1.5);
	transform:         scale(1.5);
	-webkit-transition-duration: .5s;
	-moz-transition-duration:    .5s;
	-o-transition-duration:      .5s;
	transition-duration:         .5s;
	opacity:0
}
.social-icon i {
    box-shadow:0px 0px 0px 2px white inset;
	-moz-box-shadow:0px 0px 0px 2px white inset;
	-webkit-box-shadow:0px 0px 0px 2px white inset;
	background:none;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
    color: #FFFFFF;
    cursor: pointer;
    height: 40px;
    left: 0;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 0;
	transition:all 0.3s ease-in-out 0s;
	-webkit-transition:all 0.3s ease-in-out 0s;
	-moz-transition:all 0.3s ease-in-out 0s;
	-o-transition:all 0.3s ease-in-out 0s;
    width: 40px;
}
.social-icon.color i{
	background-color: #18BCF9;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
}
.social-icon.color:after {
	border: 1px solid #18BCF9;
}
.large-icon {
	margin: 40px auto 20px;
	padding: 0;
	display: block;
	font-size: 70px;
}
/*======================== COUNTDOWN ========================*/
.countdown {
	line-height: 1.4;
	padding: 20px 0;
	font-size:25px;
	width:100%;
	color:white;
	font-weight:500;
	margin:20px 0
}
.ce-days,
.ce-hours,
.ce-minutes,
.ce-seconds,
.ce-dseconds,
.ce-mseconds {
	font-size: 5rem;
	line-height: 79px;
	font-weight: 700;
	font-family: sans-serif;
}
.ce-days-label,
.ce-hours-label,
.ce-minutes-label,
.ce-seconds-label,
.ce-dseconds-label,
.ce-mseconds-label {
	display: block;
	text-transform: uppercase;
	text-align: center;
	font-size: 1rem;
	margin-bottom: 10px;
	margin-top: 10px;
}
/*======================== SERVICE ========================*/
#service .two-column{
	padding-left:20px;
}
#service .two-column:first-child{
	padding-right:20px;
	padding-left:0;
}
.rtl {
	text-align: right;
	direction: rtl;
}
.rtl .content {
	text-align: right;
	direction: rtl;
}
.rtl .icon i {
	margin-left: 15px;
	margin-right: 0;
}
.iconbox {
	text-align: left;
	margin-top: 2rem;
	display: table;
}
.iconbox h3 {
	font-weight: 600;
	font-size: 19px;
	line-height: 2.25rem;
	margin:0
}
.iconbox div {
	display: table-cell;
	vertical-align: top;
	overflow: hidden;
}
.iconbox .icon {
	padding-top: 15px;
}
.iconbox i {
	margin-right: 15px;
	margin-top:10px;
	font-size: 50px;
	padding: 15px;
	color: #18BCF9;
}

/*======================== ABOUT ========================*/
.team{
	margin-top: 2rem;
	position:relative;
}
.team .entry-image img{
	width: 100%;
	height: 100%;
}
.team:hover .content-team,.team:hover .entry-team{
	opacity:1;
}
.team .entry-team{
	position:absolute;
	top:0;
	left:0;
	
	width:100%;
	height:100%;
	opacity:0.9;
	transition:all 0.3s ease-in-out 0s;
	-webkit-transition:all 0.3s ease-in-out 0s;
	-moz-transition:all 0.3s ease-in-out 0s;
	-o-transition:all 0.3s ease-in-out 0s;
}
.team .content-team{
	position:absolute;
	margin-top:200px;
	top:0;
	left:0;
	width:100%;
	top: -15%;
	left: 50%;
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	padding: 2rem;
	opacity:0.7;
	transition:all 0.3s ease-in-out 0s;
	-webkit-transition:all 0.3s ease-in-out 0s;
	-moz-transition:all 0.3s ease-in-out 0s;
	-o-transition:all 0.3s ease-in-out 0s;
	cursor: default;
}
.team h3{
	font-size: 1.7rem;
	line-height: normal;
	margin: 1rem;
}
.team h4{ 
	color:#ffffff;
	font-size: 1rem;
	line-height: normal;
	margin: 1rem;
}

/*======================== BLOG ========================*/
.blogpost{
	border-bottom: solid 1px #f0f0f0;
	padding-bottom: 1rem;
	padding-top: 1rem;
}
.blogpost:last-child{
	border:none;
}
.blogpost h4 a{
	color:red;
}
#blog-more{
	width: 100%;
	display: block;
	margin: 2rem 0 0;
}

/*======================== COLUMN ========================*/
.two-column {
	display: inline-block;
	width: 75%;
	vertical-align: top;
}
.two-column:first-child {
	margin-right: 1%;
}
.three-column{
	display: inline-block;
    margin-right: 1%;
    width: 32%;
	vertical-align: top;
}
.three-column:last-child {
	margin: 0%;
}
.four-column {
	display: inline-block;
	padding-bottom: 20px;
	padding: 0 20px;
	border-right: 1px solid rgba(255,255,255,.5);
	width: 24%;
}
.four-column:last-child{
	border-right:none
}
/*======================== FORM ========================*/
form {
	margin: 20px auto;
	padding: 0;
	display: block;
}
input{
	width: 100%;
	border: 2px solid white;
	line-height: 30px;
	padding: 5px 5px;
	background: none;
	border-radius: 5px;
	margin:5px;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	height: 45px;
	color: #fff;
}
textarea{
	width: 100%;
	border: 2px solid white;
	line-height: 30px;
	padding: 5px 5px;
	background: none;
	border-radius: 5px;
	margin:5px;
	height:155px;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
} 
input:hover,
textarea:hover{
	border-color:rgba(255,255,255,0.5);
}
input:focus ,
textarea:focus{
	-webkit-animation: glow 800ms ease-out infinite alternate;
	-moz-animation: glow 800ms ease-out infinite alternate;
	-o-animation: glow 800ms ease-out infinite alternate;
	-ms-animation: glow 800ms ease-out infinite alternate;
	animation: glow 800ms ease-out infinite alternate;
}
.submit{
	width: auto;
	border: 2px solid white;
	line-height: 30px;
	padding: 5px 35px;
	border-radius: 5px;
	text-transform: uppercase;
	background:none;
	font-weight: bold;
	margin:0.5rem;
	position:relative;
	color:#fff;
	cursor: pointer;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom:0;
}
.submit:hover{
	color:#000
}
.submit:hover:after,
.submit:active:after {
	height: 100%;
}
.submit:after {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #fff;
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.hide{
	display:none
}
.message{
	margin: 20px auto;
	text-transform:uppercase
}
.message h1 {
	margin:0px;
	font-weight:bold
}
.waiting{
	margin:20px auto;
	border-radius: 60px;
	border: 3px solid #fff;
	height: 50px;
	width: 50px;
	position: relative;
	overflow:hidden;
	display:none;
}
.arrow_sec {
	position: absolute;
	height: 15px;
	width: 2px;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -1px;
	background: #666;
	-webkit-animation: clockwise 1s linear 0s infinite;
	-moz-animation: clockwise 1s linear 0s infinite;
	animation: clockwise 1s linear 0s infinite;
	-webkit-transform-origin: center bottom;
	-moz-transform-origin: center bottom;
	transform-origin: center bottom;
}

.arrow_min {
	position: absolute;
	height: 10px;
	width: 2px;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -1px;
	background: #666;
	-webkit-animation: clockwise 6s linear 0s infinite;
	-moz-animation: clockwise 6s linear 0s infinite;
	animation: clockwise 6s linear 0s infinite;
	-webkit-transform-origin: center bottom;
	-moz-transform-origin: center bottom;
	transform-origin: center bottom;
}
#contact form{
	width:90%;
	margin: 20px auto 0;
}
#SEO-synlighet-optimalisering form{
	width:100%;
}
#SEO-synlighet-optimalisering .description{
	width:auto;
	max-width:360px;
}
/*======================== NAVIGATION ========================*/
/*right*/
.nav.left{
	display: table;
	height: 100%;
	background:transparent;
	width: 40px;
	z-index: 9;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	left: 0px;
	top: 0px;
}
.nav.left .arrow,
.nav.right .arrow{
	display:table-cell;
	vertical-align: middle;
}
.nav.left a{
	background: none;
	text-align: center;
	position: relative;
	width: 30px;
	display: block;
	height:145px;
	overflow: hidden
}
.nav.left a i{
	font-size: xx-large;
	right: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 30px;
	height: 125px;
	line-height: 130px !important;
	text-align: center;
}
.nav.left a:hover i{
	right:40px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav.left a span{
	right: 20px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	width: 125px;
	height: 30px;
	top: 47px;
	line-height: 30px;
}
.nav.left a:hover span{
	right:-47px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background:rgba(255,255,255,0.5);
	color:#fff;
}
/*right*/
.nav.right{
	display: table;
	height: 100%;
	background:transparent;
	width: 30px;
	z-index: 9;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	right: 0px;
	top: 0px;
}
.nav.right a{
	background: none;
	text-align: center;
	position: relative;
	width: 30px;
	display: block;
	height:150px;
	overflow: hidden
}
.nav.right a i{
	font-size: xx-large;
	right: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 30px;
	height: 125px;
	line-height: 130px !important;
	text-align: center;
}
.nav.right a:hover i{
	right:-40px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav.right a span{
	left: -20px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	width: 125px;
	height: 30px;
	top: 70px;
	line-height: 30px;
}
.nav.right a:hover span{
	left:-47px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background:rgba(255,255,255,0.5);
	color:#fff;
}
/*bottom*/
.nav.bottom .arrow,
.nav.top .arrow{
	position: relative;
	margin: 0 auto;
	width: 125px;
}
.nav.bottom{
	display: block;
	height: 30px;
	background: transparent;
	width: 100%;
	z-index: 9;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	right: 0px;
	bottom: 0px;
	text-align: center;
}
.nav.bottom a{
	background: none;
	text-align: center;
	position: relative;
	height: 30px;
	display: block;
	width:125px;
	overflow: hidden
}
.nav.bottom a i{
	font-size: xx-large;
	bottom: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 125px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	left: 0px;
}
.nav.bottom a:hover i{
	bottom:-40px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav.bottom a span{
	left: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	width: 125px;
	height: 30px;
	top: 47px;
	line-height: 30px;
}
.nav.bottom a:hover span{
	left:0px;
	top:0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background:rgba(255,255,255,0.5);
	color:#fff;
}
/*top*/
.nav.top{
	display: block;
	height: 30px;
	background: transparent;
	width: 100%;
	z-index: 9;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	right: 0px;
	top: 0px;
	text-align: center;
}
.nav.top a{
	background: none;
	text-align: center;
	position: relative;
	height: 30px;
	display: block;
	width:125px;
	overflow: hidden
}
.nav.top a i{
	font-size: xx-large;
	top: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 125px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	left: 0px;
}
.nav.top a:hover i{
	top:-40px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav.top a span{
	left: 0px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	width: 125px;
	height: 30px;
	bottom: 47px;
	line-height: 30px;
}
.nav.top a:hover span{
	left:0px;
	bottom:0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background:rgba(255,255,255,0.5);
	color:#fff;
}
/*======================== HIDE ========================*/
#logo img,
#logo h1,
#logo p,
#textslider,
.description p,
.right .arrow a,
.left .arrow a,
.bottom .arrow a{
	opacity:0
}
/*======================== ANIMATION ========================*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/*fadeInUp*/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*fadeInRight*/
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
      color: lime;
}
.fadeInRight:hover {
      color: white;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/*fadeInLeft*/
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
      color: lime;
}
.fadeInLeft:hover {
      color: white;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/*fadeInDown*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*rotate*/
@keyframes rotate{
	0% {transform:rotate(0deg);}
	100% {transform:rotate(360deg);}
}
@-webkit-keyframes rotate{
	0% {-webkit-transform:rotate(0deg);}
	100% {-webkit-transform:rotate(360deg);}
}
@-moz-keyframes rotate{
	0% {-moz-transform:rotate(0deg);}
	100% {-moz-transform:rotate(360deg);}
}
@-o-keyframes rotate{
	0% {-o-transform:rotate(0deg);}
	100% {-o-transform:rotate(360deg);}
}
@-ms-keyframes rotate{
	0% {-ms-transform:rotate(0deg);}
	100% {-ms-transform:rotate(360deg);}
}
/*floating*/
@keyframes floating {
	0% {transform: translateY(0%)  scale(1.5);}
	50% {transform: translateY(8%)  scale(1.5);}	
	100% {transform: translateY(0%)  scale(1.5);}			
}
@-webkit-keyframes floating {
	0% {-webkit-transform: translateY(0%)  scale(1.5);}
	50% {-webkit-transform: translateY(8%)  scale(1.5);}	
	100% {-webkit-transform: translateY(0%)  scale(1.5);}			
}
@-moz-keyframes floating {
	0% {-moz-transform: translateY(0%)  scale(1.5);}
	50% {-moz-transform: translateY(8%)  scale(1.5);}	
	100% {-moz-transform: translateY(0%)  scale(1.5);}			
}
@-o-keyframes floating {
	0% {-o-transform: translateY(0%)  scale(1.5);}
	50% {-o-transform: translateY(8%)  scale(1.5);}	
	100% {-o-transform: translateY(0%)  scale(1.5);}			
}
@-ms-keyframes floating {
	0% {-ms-transform: translateY(0%)  scale(1.5);}
	50% {-ms-transform: translateY(8%)  scale(1.5);}	
	100% {-ms-transform: translateY(0%)  scale(1.5);}			
}
/*breath*/
@keyframes breath {
	0% {transform: translateY(0% ) scale(0.9);}
	15% {transform: translateY(8%)  scale(1.2);}
	30% {transform: translateY(8%)  scale(0.9);}	
	100% {transform: translateY(0%)  scale(1.5);}			
}
@-webkit-keyframes breath {
	0% {-webkit-transform: translateY(0% ) scale(0.9);}
	15% {-webkit-transform: translateY(8%)  scale(1.2);}
	30% {-webkit-transform: translateY(8%)  scale(0.9);}	
	100% {-webkit-transform: translateY(0%)  scale(1.5);}			
}
@-moz-keyframes breath {
	0% {-moz-transform: translateY(0% ) scale(0.9);}
	15% {-moz-transform: translateY(8%)  scale(1.2);}
	30% {-moz-transform: translateY(8%)  scale(0.9);}	
	100% {-moz-transform: translateY(0%)  scale(1.5);}			
}
@-o-keyframes breath {
	0% {-o-transform: translateY(0% ) scale(0.9);}
	15% {-o-transform: translateY(8%)  scale(1.2);}
	30% {-o-transform: translateY(8%)  scale(0.9);}	
	100% {-o-transform: translateY(0%)  scale(1.5);}			
}
@-ms-keyframes breath {
	0% {-ms-transform: translateY(0% ) scale(0.9);}
	15% {-ms-transform: translateY(8%)  scale(1.2);}
	30% {-ms-transform: translateY(8%)  scale(0.9);}	
	100% {-ms-transform: translateY(0%)  scale(1.5);}			
}
/*clockwise*/
@keyframes clockwise{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}
@-webkit-keyframes clockwise{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}
@-moz-keyframes clockwise{
    0%{-moz-transform:rotate(0deg);}
    100%{-moz-transform:rotate(360deg);}
}
@-o-keyframes clockwise{
    0%{-o-transform:rotate(0deg);}
    100%{-o-transform:rotate(360deg);}
}
@-ms-keyframes clockwise{
    0%{-ms-transform:rotate(0deg);}
    100%{-ms-transform:rotate(360deg);}
}
/*glow*/
@-webkit-keyframes glow {
    0% {
		border-color: #62c6ea;
		box-shadow: 0 0 5px rgba(0, 187, 255,.2), inset 0 0 5px rgba(0, 187, 255,.1)
		}	
    100% {
		border-color: #18BCF9;
		box-shadow: 0 0 20px rgba(0, 187, 255,.6), inset 0 0 10px rgba(0, 187, 255,.4)
		}
}
@-moz-keyframes glow {
    0% {
		border-color: #62c6ea;
		box-shadow: 0 0 5px rgba(0, 187, 255,.2), inset 0 0 5px rgba(0, 187, 255,.1)
    }	
    100% {
		border-color: #18BCF9;
		box-shadow: 0 0 20px rgba(0, 187, 255,.6), inset 0 0 10px rgba(0, 187, 255,.4)
    }
}
@-o-keyframes glow {
    0% {
		border-color: #62c6ea;
		box-shadow: 0 0 5px rgba(0, 187, 255,.2), inset 0 0 5px rgba(0, 187, 255,.1)
    }	
    100% {
		border-color: #18BCF9;
		box-shadow: 0 0 20px rgba(0, 187, 255,.6), inset 0 0 10px rgba(0, 187, 255,.4)
    }
}
@-ms-keyframes glow {
    0% {
		border-color: #62c6ea;
		box-shadow: 0 0 5px rgba(0, 187, 255,.2), inset 0 0 5px rgba(0, 187, 255,.1)
    }	
    100% {
		border-color: #18BCF9;
		box-shadow: 0 0 20px rgba(0, 187, 255,.6), inset 0 0 10px rgba(0, 187, 255,.4)
    }
}
@keyframes glow {
    0% {
		border-color: #62c6ea;
		box-shadow: 0 0 5px rgba(0, 187, 255,.2), inset 0 0 5px rgba(0, 187, 255,.1)
    }	
    100% {
		border-color: #18BCF9;
		box-shadow: 0 0 20px rgba(0, 187, 255,.6), inset 0 0 10px rgba(0, 187, 255,.4)
    }
}
.fff {
	background: none;
	text-align: center;
	position: relative;
	width: 35px;
	display: block;
	height:145px;
	left:40px;

	position: absolute;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	width: 35px;
	height: 100px;
	top: 180px;
	line-height: 30px;
}
/*NEW MENU*/
.webskapernav
{
   background: #000000;
   border-bottom:5px solid #000000;
   margin:0 auto;
   position: relative;
   z-index: 499;
}

ul.webskaperhmenu a, ul.webskaperhmenu a:link, ul.webskaperhmenu a:visited, ul.webskaperhmenu a:hover 
{
   outline: none;
   position: relative;
   z-index: 11;
}

ul.webskaperhmenu, ul.webskaperhmenu ul
{
   display: block;
   margin: 0;
   padding: 0;
   border: 0;
   list-style-type: none;
}

ul.webskaperhmenu li
{
   position: relative;
   z-index: 5;
   display: block;
   float: left;
   background: none;
   margin: 0;
   padding: 0;
   border: 0;
}

ul.webskaperhmenu li:hover
{
   z-index: 10000;
   white-space: normal;
}

ul.webskaperhmenu:after, ul.webskaperhmenu ul:after
{
   content: ".";
   height: 0;
   display: block;
   visibility: hidden;
   overflow: hidden;
   clear: both;
}

ul.webskaperhmenu, ul.webskaperhmenu ul 
{
   min-height: 0;
}

ul.webskaperhmenu 
{
   display: inline-block;
   vertical-align: bottom;
   padding-left: 5px;
   padding-right: 5px;
}

.webskapernav-inner:before 
{
   content:' ';
}

.webskapernav-inner{
   text-align: center;
   margin:0 auto;
}

.desktop  .webskapernav-inner{
   width: 1280px;
   padding-left: 5px;
   padding-right: 5px;
}

.desktop .webskapernav
{
   padding-left: 0;
   padding-right: 0;
}

.webskaperhmenu-extra1
{
   position: relative;
   display: block;
   float: left;
   width: auto;
   height: auto;
   background-position: center;
}

.webskaperhmenu-extra2
{
   position: relative;
   display: block;
   float: right;
   width: auto;
   height: auto;
   background-position: center;
}

.webskapermenuitemcontainer
{
   margin:0 auto;
}
ul.webskaperhmenu>li {
   margin-left: 0;
}
ul.webskaperhmenu>li:first-child {
   margin-left: 0;
}
ul.webskaperhmenu>li:last-child, ul.webskaperhmenu>li.last-child {
   margin-right: 0;
}

ul.webskaperhmenu>li>a
{
   padding:0 4px;
   margin:0 auto;
   position: relative;
   display: block;
   height: 30px;
   cursor: pointer;
   text-decoration: none;
   color: #FFFFFF;
   line-height: 34px;
   text-align: center;
}

.webskaperhmenu>li>a, 
.webskaperhmenu>li>a:link, 
.webskaperhmenu>li>a:visited, 
.webskaperhmenu>li>a.active, 
.webskaperhmenu>li>a:hover
{
   font-size: 16px;
   font-family: electrolize, sans-serif, 'Arial Unicode MS', Helvetica, Sans-Serif;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-align: left;
   text-shadow: 0 0 6px rgba(23, 23, 23, 0.98);
}

ul.webskaperhmenu>li>a.active
{
 
   padding:0 15px;
   margin:0 auto;
   color: #25987E;
   text-decoration: none;
}

ul.webskaperhmenu>li>a:visited, 
ul.webskaperhmenu>li>a:hover, 
ul.webskaperhmenu>li:hover>a {
   text-decoration: none;
}

ul.webskaperhmenu>li>a:hover, .desktop ul.webskaperhmenu>li:hover>a
{

}
ul.webskaperhmenu>li>a:hover, 
.desktop ul.webskaperhmenu>li:hover>a {
   color: #0FB196;
   text-decoration: none;
}

ul.webskaperhmenu li li a
{
   background: #383838;
   background: transparent;
   padding:0 10px;
   margin:0 auto;
}
ul.webskaperhmenu li li 
{
   float: none;
   width: auto;
   margin-top: 0;
   margin-bottom: 0;
}

.desktop ul.webskaperhmenu li li ul>li:first-child 
{
   margin-top: 0;
}

ul.webskaperhmenu li li ul>li:last-child 
{
   margin-bottom: 0;
}

.webskaperhmenu ul a
{
   display: block;
   white-space: nowrap;
   height: 26px;
   min-width: 7em;
   border: 0 solid transparent;
   text-align: left;
   line-height: 26px;
   color: #FFFFFF;
   font-size: 13px;
   font-family: Roboto', sans-serif, Times, Serif;
   text-decoration: none;
   margin:0;
}

.webskaperhmenu ul a:link, 
.webskaperhmenu ul a:visited, 
.webskaperhmenu ul a.active, 
.webskaperhmenu ul a:hover
{
   text-align: left;
   line-height: 26px;
   color: #FFFFFF;
   font-size: 13px;
   font-family: Roboto', sans-serif, Times, Serif;
   text-decoration: none;
   margin:0;
}

ul.webskaperhmenu ul li a:hover, .desktop ul.webskaperhmenu ul li:hover>a
{
   background: #1996C8;
   background: -webkit-linear-gradient(top, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   background: -moz-linear-gradient(top, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   background: -o-linear-gradient(top, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   background: -ms-linear-gradient(top, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   -svg-background: linear-gradient(top, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   background: linear-gradient(to bottom, #21ACE4 0, #1CABE3 3%, #1582AC 40%, #147BA3 50%, #1582AC 60%, #1CABE3 97%, #21ACE4 100%) no-repeat;
   margin:0 auto;
}
.webskaperhmenu ul a:hover
{
   text-decoration: none;
   color: #FFFFFF;
}

.desktop .webskaperhmenu ul li:hover>a
{
   color: #FFFFFF;
}

ul.webskaperhmenu ul:before
{
   background: #383838;
   border:1px solid #A6A6A6;
   margin:0 auto;
   display: block;
   position: absolute;
   content: ' ';
   z-index: 1;
}
.desktop ul.webskaperhmenu li:hover>ul {
   visibility: visible;
   top: 100%;
}
.desktop ul.webskaperhmenu li li:hover>ul {
   top: 0;
   left: 100%;
}

ul.webskaperhmenu ul
{
   visibility: hidden;
   position: absolute;
   z-index: 10;
   left: 0;
   top: 0;
   background-image: url('images/spacer.gif');
}

.desktop ul.webskaperhmenu>li>ul
{
   padding: 12px 32px 32px 32px;
   margin: -10px 0 0 -30px;
}

.desktop ul.webskaperhmenu ul ul
{
   padding: 32px 32px 32px 12px;
   margin: -32px 0 0 -9px;
}

.desktop ul.webskaperhmenu ul.webskaperhmenu-left-to-right 
{
   right: auto;
   left: 0;
   margin: -10px 0 0 -30px;
}

.desktop ul.webskaperhmenu ul.webskaperhmenu-right-to-left 
{
   left: auto;
   right: 0;
   margin: -10px -30px 0 0;
}

.desktop ul.webskaperhmenu li li:hover>ul.webskaperhmenu-left-to-right {
   right: auto;
   left: 100%;
}
.desktop ul.webskaperhmenu li li:hover>ul.webskaperhmenu-right-to-left {
   left: auto;
   right: 100%;
}

.desktop ul.webskaperhmenu ul ul.webskaperhmenu-left-to-right
{
   right: auto;
   left: 0;
   padding: 32px 32px 32px 12px;
   margin: -32px 0 0 -9px;
}

.desktop ul.webskaperhmenu ul ul.webskaperhmenu-right-to-left
{
   left: auto;
   right: 0;
   padding: 32px 12px 32px 32px;
   margin: -32px -9px 0 0;
}

.desktop ul.webskaperhmenu li ul>li:first-child {
   margin-top: 0;
}
.desktop ul.webskaperhmenu li ul>li:last-child {
   margin-bottom: 0;
}

.desktop ul.webskaperhmenu ul ul:before
{
   border-radius: 0;
   top: 30px;
   bottom: 30px;
   right: 30px;
   left: 10px;
}

.desktop ul.webskaperhmenu>li>ul:before
{
   top: 10px;
   right: 30px;
   bottom: 30px;
   left: 30px;
}

.desktop ul.webskaperhmenu>li>ul.webskaperhmenu-left-to-right:before {
   right: 30px;
   left: 30px;
}
.desktop ul.webskaperhmenu>li>ul.webskaperhmenu-right-to-left:before {
   right: 30px;
   left: 30px;
}
.desktop ul.webskaperhmenu ul ul.webskaperhmenu-left-to-right:before {
   right: 30px;
   left: 10px;
}
.desktop ul.webskaperhmenu ul ul.webskaperhmenu-right-to-left:before {
   right: 10px;
   left: 30px;
}
@media screen and (max-device-width: 768px) {
.webskapermenu, .webskapermenu  {
   font-size:14px !important;
  }
}

#smiley {

  margin: auto;
}

/*Neon*/
#smiley p {
  text-align: center;
  font-size: 3em;
  margin: 15px 0 15px 0;
}

 #smiley a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

 #smiley p:nth-child(1) a {
  color: rgb(6, 128, 127);
  font-family: Pacifico;
  -webkit-animation: neon1 2.5s ease-in-out infinite alternate;
  -moz-animation: neon2 1.5s ease-in-out infinite alternate;
  animation: neon2 2.5s ease-in-out infinite alternate;
  
}
#smiley p:nth-child(1) a:hover {
  -webkit-animation: neon3 1.1s ease-in-out infinite alternate;
  -moz-animation: neon1 1.1s ease-in-out infinite alternate;
  animation: neon1 1.1s ease-in-out infinite alternate;
}

#smiley p:nth-child(2) a {
  color: blue;
  font-family: audiowide;
}
#smiley p:nth-child(2) a:hover {
  -webkit-animation: neon2 1.5s ease-in-out infinite alternate;
  -moz-animation: neon2 1.5s ease-in-out infinite alternate;
  animation: neon2 1.5s ease-in-out infinite alternate;
}

#smiley p:nth-child(3) a {
  color: #FFDD1B;
  font-family: Pacifico;
}

#smiley p:nth-child(3) a:hover {
  -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
  -moz-animation: neon3 1.5s ease-in-out infinite alternate;
  animation: neon3 1.5s ease-in-out infinite alternate;
}

#smiley p a:hover {
  color: #fff;
}
/*glow for webkit*/

@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
  }
}

@-webkit-keyframes neon2 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF;
  }
}

@-webkit-keyframes neon3 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B;
  }
}


/*glow for mozilla*/

@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
  }
}

@-moz-keyframes neon2 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF;
  }
}

@-moz-keyframes neon3 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B;
  }
}


/*glow*/

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
  }
}

@keyframes neon2 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF;
  }
}

@keyframes neon3 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B;
  }
}

/*REEEEEEEEEEESPONSIVE*/

@media (max-width: 500px) {
  #smiley {
    width: 100%;
  }
  #smiley p {
    font-size: 2.5em;
  }
}
.wrapper1 {
    margin: auto;
    width: 90%;
    max-width: 960px;
}
.wrapper1 h1 {
  text-align: center;
  color: black;
}
.wrapper1 .half {
  float: left;
  width: 50%;
  padding: 0 1em;
}
/* Acordeon styles */
.wrapper1 .tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.wrapper1 input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.wrapper1 label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: rgb(6, 128, 127);
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
}
.wrapper1 .blue label {
  background: white;
}
.wrapper1 .tab-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  color: black;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.wrapper1 .blue .tab-content {
  background: white;
}
.wrapper1 .tab-content p {
  margin: 1em;
}
/* :checked */
.wrapper1 input:checked ~ .tab-content {
  max-height: 10em;
}
/* Icon */
.wrapper1 label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.wrapper1 input[type=checkbox] + label::after {
  content: "+";
}
.wrapper1 input[type=radio] + label::after {
  content: "\25BC";
}
.wrapper1 input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
.wrapper1 input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}