/*  CSS definations for Template  */
/*-------------------------------------------------------------------------------------------

INDEX:

0. RESET

1. SETUP
1.1 Defaults
1.2 Common Tags

2. SITE STRUCTURE & APPEARANCE
2.1 Header
	2.1 Logo
2.2 Container
  	2.2.1 Showacase
2.3 Footer

-------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* 0. RESET */
/*-------------------------------------------------------------------------------------------*/
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	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;
}
* {
	outline:none;
}

/*-------------------------------------------------------------------------------------------*/
/* 1. SETUP */
/*-------------------------------------------------------------------------------------------*/

/* 1.1 Defaults */
h1, h2, h3, h4, h5, h6, strong {
	font-weight:bold;
}
i, em {
	font-style:italic;
}
.left {
	float:left;
}
.right {
	float:right;
}
.alignleft {
	text-align:left;
}
.alignright {
	text-align:right;
}
.aligncenter {
	text-align:center;
}
.clear {
	height:1px;
	clear:both;
}
.clearfix:before, .clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}
.clearfix:after {
	clear: both;
}
textarea {
	overflow:auto;
	font-family:Arial, Helvetica, sans-serif; /* Body Font Family Will Come Here */
}
a {
	color:#333;
	text-decoration:none;
}
a:hover {
	color:#000;
}
address {
	font-style:normal;
}
p {
	margin-bottom:10px;
	text-align:justify;
	line-height:22px;
}

/* 1.2 Common Tags */


/*-------------------------------------------------------------------------------------------*/
/* 2. SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Henny+Penny);
@import url(https://fonts.googleapis.com/css?family=Bevan);
body {
	background:#ef3657 url(../images/bg-light.png) no-repeat top center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000;
}
.box {
	width: 1150px;
	margin: 0 auto;
}
/* Header */
.header {
	background:url(../images/clowns.png) no-repeat top center;
	min-height:490px;
}
/* Logo */
.logo {
	float:left;
	margin-top:45px;
}
.logo img {
	width:250px;
	height:auto;
}
.facbook-like {
	float:right;
	margin:204px -417px 0 0;
}
/* Navigation */
.navigation {
	float:right;
}
.navigation li {
	margin-left:2px;
	font-size:13px;
	font-weight:bold;
	text-transform:uppercase;
	float:left;
	position:relative;
	cursor:pointer;	
}
.navigation li.home a {
	background:#ff1b09;
	padding:40px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li.home a:hover, .navigation li.home a.active {
	padding:82px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li .menu1 img, .navigation li .menu2 img, .navigation li .menu3 img, .navigation li .menu4 img {
	width:100%;
}
.navigation li .menu1 {
	position:absolute;
	left:0;
	bottom:-11px;
}
.navigation li.about a {
	background:#c41fbb;
	padding:83px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li.about a:hover, .navigation li.about a.active {
	padding:110px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li .menu2 {
	position:absolute;
	left:0;
	bottom:-19px;
}
.navigation li.gallery a {
	background:#cdd438;
	padding:130px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li.gallery a:hover, .navigation li.gallery a.active {
	padding:160px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li .menu3 {
	position:absolute;
	left:0;
	bottom:-19px;
}
.navigation li.contact a {
	background:#1da7b7;
	padding:60px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li.contact a:hover, .navigation li.contact a.active {
	padding:110px 20px 10px 20px;
	transition: 0.5s ease-out;
}
.navigation li .menu4 {
	position:absolute;
	left:0;
	bottom:-17px;
}
.navigation li a {
	color:#fff;
	display:block;	
}
.navigation li a:hover {
	text-decoration:none;	
}
.navigation li span {
	display:none;	
}
/*.navigation li:hover > ul {
	display:block;
}
.navigation ul ul {
	font-size:14px;
	display:none;
	position:absolute;
	z-index:2;
}
.navigation ul ul li {
	background:rgba(19,21,26,0.7);
	width:181px;
	line-height:40px;
	top:0;
}
.navigation ul ul ul {
	top:0;
	left:100%;
	z-index:3;
}
.navigation ul ul ul li {
	width:170px;
	line-height:40px;
}*/
.navigation .menu {
	background:url(../images/bg_menu.png) no-repeat left top;
	width:27px;
	height:19px;
	float:left;
	margin:10px 0 0 10px;
	text-indent:-9999px;
	display:none;
}
/* Content */
.content .left {
	position:absolute;
	left:-33px;
	top:28px;
}
.content .right {
	position:absolute;
	right:-21px;
}
.content {
	background:#fff;
	margin:-120px 0 90px 0;
	padding:40px;
	position:relative;
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
		-ms-border-radius:20px;
		 -o-border-radius:20px;
			border-radius:20px;
}
.content h6 {
	color:#9e5fe2;
	font-family:Bevan;
	font-size:20px;
	font-weight:normal;
	text-align:center;
	text-transform:uppercase;
	margin-bottom:10px;
}
.content .column {
	width:200px;
	padding:26px;
	margin:15px 20px 0 0;
	text-align:center;
	float:left;
	-webkit-border-radius:10px;
	   -moz-border-radius:10px;
		-ms-border-radius:10px;
		 -o-border-radius:10px;
			border-radius:10px;
}
.content .column.last {
	margin-right:0px;
}
.content .column h4 {
	color:#fff;
	margin-bottom:20px;
	font-family:Bevan;
	font-size:32px;
	font-weight:normal;
}
.content .column img {
	margin-bottom:20px;
}
.content .column.one img, .content .column.two img {
	margin:21px;
}
.content .column.three img {
	margin:0 0 10px 0;
}
.content .column.three p {
	margin-bottom:42px;
}
.content .column p {
	color:#fff;
	margin-bottom:20px;
	text-align:center;
}
.content .column a {
	color:#000;
	padding:7px 15px;
	transition: 0.5s ease-out;
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
		-ms-border-radius:20px;
		 -o-border-radius:20px;
			border-radius:20px;
	background: #ffffff; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#ffffff, #f0f0f0); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#ffffff, #f0f0f0); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#ffffff, #f0f0f0); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#ffffff, #f0f0f0); /* Standard syntax */
}
.content .column a:hover {
	color:#ffb514;
	transition: 0.5s ease-out;
	background: #f0f0f0; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#f0f0f0, #ffffff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#f0f0f0, #ffffff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#f0f0f0, #ffffff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#f0f0f0, #ffffff); /* Standard syntax */
}
.content .column.one {
	background: #ffb71a; /* For browsers that do not support gradients */
    background: -webkit-radial-gradient(#ffb71a, #fcca5e, #ffb71a); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#ffb71a, #fcca5e, #ffb71a); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#ffb71a, #fcca5e, #ffb71a); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#ffb71a, #fcca5e, #ffb71a); /* Standard syntax */
	position:absolute;
}
.content .column.two {
	background: #ff7302; /* For browsers that do not support gradients */
    background: -webkit-radial-gradient(#ff7302, #fd9a4a, #ff7302); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#ff7302, #fd9a4a, #ff7302); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#ff7302, #fd9a4a, #ff7302); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#ff7302, #fd9a4a, #ff7302); /* Standard syntax */
	margin-left:274px;
}
.content .column.three {
	background: #9e5fe2; /* For browsers that do not support gradients */
    background: -webkit-radial-gradient(#9e5fe2, #c6a1ee, #9e5fe2); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#9e5fe2, #c6a1ee, #9e5fe2); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#9e5fe2, #c6a1ee, #9e5fe2); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#9e5fe2, #c6a1ee, #9e5fe2); /* Standard syntax */
}
.content .column.four {
	background: #00bff3; /* For browsers that do not support gradients */
    background: -webkit-radial-gradient(#00bff3, #16ccfe, #00bff3); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(#00bff3, #16ccfe, #00bff3); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(#00bff3, #16ccfe, #00bff3); /* For Firefox 3.6 to 15 */
    background: radial-gradient(#00bff3, #16ccfe, #00bff3); /* Standard syntax */
}
/* About Us */
.content h2 {
	color:#ef3a55;
	margin-bottom:20px;
	font-size:24px;
	font-family:Bevan;
	text-transform:uppercase;
}
.content .column1 {
	border-top:1px solid #e8e8e8;
	border-bottom:1px solid #e8e8e8;
	width:1070px;
	height:40px;
	margin-bottom:20px;
	position:absolute;
}
.content .column1 li {
	float:left;
	line-height:40px;
}
.content .column1 li a:hover {
	text-decoration:underline;
}
.content .column-left {
	width:750px;
	margin:100px 20px 0 0;
	float:left;
}
.content .column-left1 {
	width:1070px;
	margin-top:100px;
}
.content .column-left1 h6 {
	margin-bottom:25px;
	font-size:15px;
	font-family:Bevan;
	text-align:left;
}
.content .column-left1 .photo {
	margin-bottom:25px;
	font-size:13px;
	font-family:Bevan;
	font-weight:normal;
	line-height:22px;
	text-align:center;
}
.content .column-left1 p i {
	font-size:8px;
	margin-left:10px;
}
.content .column-right {
	width:300px;
	margin-top:100px;
	float:left;
}
.content .column-right a:hover {
	color:#59d133;
	text-decoration:underline;
}
/* Gallery */
.content .column-left1 a img {
	width:149px;
	height:150px;
	margin-bottom:2px;
}
.content .column-left1 .image {
	width:251px;
	height:auto;
	margin-bottom:10px;
}
/* Contact Us */
.content .column-lefts {
	width:550px;
	margin:100px 20px 0 0;
	float:left;
}
.column-lefts .input {
	border-radius:5px; 
	color:#000; 
	width:250px;
	margin:10px 0; 
	padding:10px; 
	border:1px solid #999; 
	box-shadow:1px 1px 2px #ff6633;	
}
.column-lefts .input1 {
	border-radius:5px; 
	color:#000; 
	width:273px;
	margin:10px 0; 
	padding:10px; 
	border:1px solid #999; 
	box-shadow:1px 1px 2px #ff6633;	
}
.column-lefts .textarea {
	border-radius:5px; 
	color:#000; 
	width:400px;
	margin:10px 0;
	padding:10px;
	font-size:13px; 
	border:1px solid #999; 
	box-shadow:1px 1px 2px #ff6633;	
}
.column-lefts .btns {
	border:1px solid #ef3a55;
	background:#ef3a55;
	color:#fff; 
	border-radius: 5px; 
	padding:10px;
	margin-top:7px; 
	width:100px;
	text-transform:uppercase;	
}
.content .column-rights {
	width:500px;
	margin-top:100px;
	float:left;
}
.content .column-rights .map {
	margin-top:27px;
}
.content .column-rights h4 {
	color:#cc33ff;
	margin-bottom:25px;
	font-size:30px;
	font-family:Bevan;
	text-align:left;
}
.content .column-rights p {
	color:#00b3ff;
	margin-bottom:5px;
	font-size:22px;
	font-family:Bevan;
	text-align:left;
	line-height:36px;
}
/* Footer */
.footer {
	border-top:1px solid #eeedee;
	padding:40px 0 20px 0;
	margin-top:40px;
	font-family:Bevan;
}
.footer .colum, .footer .colum1 {
	float:left;
}
.footer span {
	color:#00bff3;
	font-size:14px;
	font-weight:bold;
}
.footer strong, .footer strong1 {
	font-size:14px;
	text-transform:uppercase;
}
.footer strong a {
	color:#ffcb5c;
}
.footer strong1 a {
	color:#4a4a4a;
}
.footer a:hover {
	text-decoration:underline;
}

/*///////////////////////////////////////////////////////
					Mobile Responsive
//////////////////////////////////////////////////////*/
@media only screen and (min-width:300px) and (max-width:767px) {
.box {
	width:100%;
}
/* Header */
.header {
	background:none;
	min-height:auto;
}
/* Logo */
.logo img {
	width:100%;
	height:auto;
}
.facbook-like {
	margin:30px 0 0 40px;
	float:left;
	display:none;
}
/* Navigation */
.navigation {
	margin:52px 10px 0 0;
}
.navigation .menu {
	display:block;
	position:absolute;
	left:0;
	top:220px;
}
.navigation ul {
	display:none;
	position:absolute;
	left:8px;
	z-index:100;
}
.navigation li {
	background:#fff;
	width:300px;
	padding:5px;
	float:none;
}
.navigation li:hover {
	background:#fff;
}
.navigation li a {
	padding:0 10px;
	color:#000;
}
.navigation li.home a, .navigation li.about a, .navigation li.gallery a, .navigation li.contact a {
	padding:0 10px;
}
.navigation li.home a:hover, .navigation li.home a.active, .navigation li.about a:hover, .navigation li.about a.active, .navigation li.gallery a:hover, .navigation li.gallery a.active, .navigation li.contact a:hover, .navigation li.contact a.active {
	padding:0 10px;
}
.navigation li .menu1 img, .navigation li .menu2 img, .navigation li .menu3 img, .navigation li .menu4 img {
	display:none;
}
.navigation li.home, .navigation li.about, .navigation li.gallery, .navigation li.contact {
	background:#ffcb5c; 
	padding:0; 
	line-height:40px
}
.navigation li.home:hover, .navigation li.home.active {padding:0;}
.navigation li.about:hover, .navigation li.about.active {padding:0;}
.navigation li.gallery:hover, .navigation li.gallery.active {padding:0;}
.navigation li.contact:hover, .navigation li.contact.active {padding:0;}
.navigation li.home:hover, .navigation li.about:hover, .navigation li.gallery:hover, .navigation li.contact:hover {
	background:#fff; 
	padding:0;
}
/* Content */
.content {
	margin-top:40px;
	padding:25px;	
}
.content h6 {
	font-size:16px;
	line-height:22px;
}
.content .left, .content .right {
	display:none;
}
.content .column.two {
	margin:420px 0 0 0;
}
.content .column1 {
	width:270px;
}
.content .column-left {
	width:100%;
}
.content .column-right {
	width:100%;
}
.content .column-left1 {
	width:100%;
}
.content .column-left1 a img {
	width:133px;
	height:auto;
}
.column-lefts .textarea {
	width:250px;
}
.content .column-lefts {
	width:100%;
}
.content .column-rights {
	width:100%;
}
.content .column-rights h4 {
	font-size:25px;
}
.content .column-rights p {
	font-size:20px;
}
.content .column-rights .map img {
	width:100%;
	height:auto;
}
/* Footer */
.footer {
	height:100px;;
}




















{
	box-shadow:rgba(0, 0, 0, 0.30) 3px 3px 0px;
	box-shadow:rgba(0, 0, 0, 0.30) 3px 3px 0px inset;
	text-shadow:rgba(0, 0, 0, 0.30) 3px 3px 0px;
	-webkit-border-radius:100%;
	   -moz-border-radius:100%;
		-ms-border-radius:100%;
		 -o-border-radius:100%;
			border-radius:100%;
	behavior:url(PIE.htc);
	position:relative;
}