@charset "utf-8";
@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400|Oswald:300,400";
/* CSS Document */

/*******************************************************************************
 * General Styles
 ******************************************************************************/
html {
    box-sizing: border-box;
    overflow-y:scroll;
}
*, *:before, *:after {
    box-sizing: inherit;
}
* {
    box-sizing: border-box;
}
body{
	margin:0;
	padding:0;	
	font-size:100%;
	font-family:'Open Sans';
	font:'OpenSans Regular';
	font-weight:300;
}
img{
	max-width:100%;
}
a{
	cursor:pointer;
}
a:hover,
a:focus {
  text-decoration: none;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
	max-width:100%;
}
/*******************************************************************************
 * Header
 ******************************************************************************/
#header-home-cover{
	width:100%;
	height:154px;
	position:absolute;
	top:0;
}
#logo{
	-ms-transform: scale(0.8,0.8); /* IE 9 */
    -webkit-transform: scale(0.8,0.8); /* Safari */
    transform: scale(0.8,0.8);    
}
.logo-dance-studio{
	font-size:7pt;
	color:#5a5a5a;
}
/****
*******************
navigation menu
******************
****/
.nav{
	margin-top:50px;
}
#btn-menu{
	display:none;
}
header label{
	font-size:30px;
	cursor:pointer;
	display:none;
}
.icon-menu{
	margin-top:58px;
	margin-right:-12px;
	-webkit-margin-start:20px;
}
.menu ul{
	display:flex;
	list-style:none;
}
.menu ul ul{
	display:none;
}
.menu a{
	display:block;
	padding:15px 20px;
	text-decoration: none;
	font-size:10pt;
	text-transform: uppercase;
	color:#696868;
	}
.menu a:link{
	text-decoration:none;
	}
.menu a:hover:after{
	content:url(../images/hover.png);
	display:block;
	position:fixed;
	top:-32px;
}
.menu .icon-down-open{
	margin-left:10px;
	display:none;
}
.menu ul {
  display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6 */
  flex-direction: row;	  
}
.menu ul li:hover ul{
	display:block;
	position:absolute;
	margin-left:-20px;
	background-color:#191919;
	list-style: none;
	margin: 0;
	padding: 0;    
	z-index: 99999;       
	border-radius: 5px;
	text-align:center;
}
.menu ul ul a{
	padding: 10px;
	height: auto;
	line-height: 1;
	display: block;
	white-space: nowrap;
	float: none;
	color:#fff;
	font-size:9pt;
}
.menu ul ul a:hover{
	background-color: rgba(0,0,0,0.3);
	color:#CCC;
}
.menu  .no:hover:after{
	content:normal;
}
@media (max-width:991px) and (min-width:769px){
	.menu a{
	    padding:15px;
	}
}
@media (max-width:768px){
		header label{
			display:block;
		}
		.menu .icon-down-open{
			cursor:pointer;
			display:inline;
			color:#fff;
			position:absolute;
			right:10px;
            font-size:8pt;
		}
		.menu{
			position:absolute;
			right:38px;
			width:84%;
			-webkit-display:inline-block;			
		    -webkit-transform:translateX(-125%);
			transform:translateX(-125%);
			-webkit-transition:transform all 0.3s;
			transition:all 0.3s;
			z-index:1000;
			line-height:35px;
		}
		.menu ul li a{
			display:inline;
		}
		.menu a{			
			color:#fff;
		}
		.menu a:hover:after{
			display:none;
		}
		.menu ul li:hover{
			background-color:rgba(0,0,0,0.3);
		}
		.menu ul{
			display:block;
			background-color:#222;
		}
		.menu ul li a:hover,
		.menu ul li a:visited{
			color:#fff;	
		}
		.menu ul li:hover ul{
			z-index:99999;
			position:relative;
			width:100%;
            padding:10px 0;
            text-align:left;
		}
		.menu ul li:hover ul{
			display:none;
		}
		.menu ul ul a:hover{
			background:none;
		}
		#btn-menu:checked ~ .menu{
			-ms-transform:translateX(0%);
			-webkit-transform:translateX(0%);
			transform:translateX(0%);
		}
		.menu ul ul{
			background:rgba(0,0,0,0.4);
		}
		.menu ul ul a{
			padding:0 40px;
		}
	}
        @media(max-width:400px){
		.menu ul ul{
			width:100%;
			padding-left:3px;
		}
		.menu ul li:hover ul{
			width:100%;
		}
	}
/****
*******************
navigation menu end
******************
****/

/*******************************************************************************
 * Header End
 ******************************************************************************/
#content{
	margin:12% auto;
}
/****
*******************
title
******************
****/
#colored{
	margin-top:20px;
	height:100px;
	background-color:#ff0078;
	z-index:0;
}
.title h1{
	position:relative;					
	margin-top:-60px;
	font-family: 'Oswald', sans-serif;
	font:'Oswald Regular';
	font-size:15pt;
	color:#fff;
	text-transform:uppercase;
	z-index:5;
}
/****
*******************
title end
******************
****/

/*******************************************************************************
 * Footer
 ******************************************************************************/
footer{
	position:relative;
	bottom:0;
	left:0;
	right:0;
}
footer table{
	width:100%;
	border-collapse:collapse;
	border-color:#ccc;
}
footer table tr td{
	border:0px solid #ccc;
	}
footer td{
	width:25%;
	vertical-align:super;
	padding-left:20px;
}
#logo-footer{
	position:relative;
	vertical-align:central;
	display:inline-block;
	top:50px;
	left:25%;	
	margin-top:-20px;
	text-align:center;
}
@media(max-width:991px){
	#logo-footer{
        	left:0%;	
        }
}
@media(max-width:767px){
        footer table{
    	    border:hidden;
        }
	    footer table tr td{
	        border:hidden;
	    }
	    footer td{
		    padding-left:5px;                
	    }
}
@media(max-width:575px){
	#logo-footer{
		top:55px;
	}
}
@media(max-width:555px){
	#logo-footer{
		top:30px;
	}
}
.pink,
.grey{
	font-family: 'Oswald', sans-serif;
	font:'Oswald Light';
	font-size:27pt;
	text-transform:uppercase;
	line-height:25px;
	font-weight:300;
}
.pink{
	 color:#ff0078;
 }
.grey{
	color:#9d9d9d;
	margin-bottom:40px;
}
footer p{
	color:#696868;
	font-family: 'Open Sans', sans-serif;
	font:'OpenSans Regular';
	font-size:11pt;
	margin-bottom:15px;
}
#copyright{
	margin-top:70px;
}
.contact-mail a{
		color:#1C1C1C;
	}
.contact-mail a:hover{
	text-decoration:none;
	color:#000;
}
#mail{
	width:160px;
	height:30px;
	border:1px solid #CCC;
    border-radius:5px;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	vertical-align:bottom;
	color:#696868;
	font-size:10pt;
	padding-left:10px;
}
#submit{
	width:30px;
	height:30px;
	border:1px solid #CCC;
	border-radius:5px;
	margin-left:-2%;
	background-color:#fff;
	border-bottom-left-radius:0px;
	border-top-left-radius:0px;
	color:#666;
	position:relative;
}
@media(max-width:992px){
	.pink,
	.grey{
		font-size:20pt;
	}
	#mail{
	    max-width:70%;
    }
}
@media(max-width:555px){
	footer table tr td{
		display:block;
		width:70%;
		border-color:transparent;
	}
	#logo-footer{
		text-align:left;
	}
	#copyright{
	    margin-top:40px;
    }
}
/****
*******************
return to top
******************
****/
#return-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
	display: block;
	text-decoration: none;
	border-radius: 35px;
	display: none;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#return-to-top i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 16px;
	top: 13px;
	font-size: 19px;
	-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;
}
#return-to-top:hover {
	background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
	color: #fff;
	top: 5px;
}
/****
*******************
return to top end
******************
****/	/*******************************************************************************
 * Footer end
 ******************************************************************************/
