@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}

body{
	background:#fff;
	font-family: 'GothamRounded-medium';
	font-size:15px;
	color:#000;
}

ul,li{
	margin:0;
	padding:0;
	list-style:none;
}

img{
	max-width:none;
}

a{
	color:#000;
	outline:none;
}

a:hover, a:focus{
	outline:none;
	text-decoration:none;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'GothamRounded-medium';	
	font-weight:normal;
	margin:0;
}

/* button */

.black-btn{
	display:inline-block;
	padding:10px 20px;
	background:#000;
	color:#fff;
	font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
	border-radius:10px;
	text-transform: uppercase;
}

.black-btn:hover{
	color:#fff;
	text-decoration:underline;
}

.black-btn .fa{
	color: #d90784;
	font-size: 22px;
	margin-left: 10px;
	position: relative;
	top: 0px;
}
/* main css */

header{
	background:#fff;
	padding:10px 0;
}

header .brand{
	float:left;
	margin-top:10px;
}

header nav{
	float:right;
}

header .head-social{
	display:block;
	text-align:right;
}

header .head-social a{
	display:inline-block;
	margin-left:5px;
	height:36px;
	width:36px;
	color:#fff;
	border-radius:50%;
	text-align:center;
	background: #000;
	font-size: 20px;
	line-height: 36px;
}

header .menubox{
	display:block;
	margin-top:10px;
}

header .menubox li{
	float:left;
	position:relative;
}

header .menubox li:hover{
	background:#F0F0F0;
}

header .menubox li a{
	color:#d90784;
	padding:10px;
	display:block;
}

header .menubox li a:hover{
	color:#d90784;
}

header .menubox li .submenu{
	position:absolute;
	top:35px;
	left:-50px;
	width:100%;
	width:200px;
	z-index:99;
	background:#fff;
	text-align:center;
	height:0;
	opacity:0;
	visibility:hidden;
	overflow:hidden;
	transition: all 0.3s;
}

header .menubox li:hover .submenu{
	height:auto;
	opacity:1;
	visibility:visible;
}

header .menubox li .submenu ul, header .menubox li .submenu ul li{
	width:100%;
	display:block;
}

.banner{
	position:relative;
}

.banner img{
	width:100%;
	display:block;
}

.bannercontent{
	position:absolute;
	width:100%;
	left:0;
	top:0;
	 
}

.bannercontent .bannertxt img{
	width:auto;
	margin:0 auto;
}

.bannercontent .bannertxt{
	float:right;
	max-width:340px;
	text-align:center;
}

.bannercontent .bannertxt .black-btn{
	margin-top:20px;
}

.bannercontent {
	top:25%;
}

.banner .flexslider li:nth-child(2) .bannercontent .bannertxt{
	float:left;
}

footer{
	 
	font-size:12px;
	background:#000;
	padding:20px 0;
	color:#fff;
}

.footer-right{
	float:right;
	font-size:8px;
}

.footer-right .form-group{
	border:solid 2px #d90784;
	padding:5px;
	height:auto;
	border-radius:0;
	background:none;
	width:100%;
	text-align:center;
	margin-bottom:0;
}

.footer-right button{
	width:100%;
	border-radius:0;
	border:solid 1px #fff;
	background:#fff;
	color:#000;
	font-size:12px;
	font-family: 'GothamRounded-medium';
	padding:3px;
	margin-top:6px;
}

.footer-left{
	margin-top:60px;
	float:left;
	font-family: 'GothamRounded-light';
}

/* inner pages */

.innercontent{
	border-top:2px solid #000;
	padding:45px 0;
	font-family: 'GothamRounded-light';
}

.innercontent img{
	max-width:100%;
}

.aboutimg{
	margin-bottom:20px;
}

.abouttitle{
	text-transform:uppercase;
	margin-bottom:10px;
}

.incontent{
	font-family: 'GothamRounded-light';
	margin:35px 0;
}

/* responsive Css */

@media(max-width:980px){
	.bannercontent{
		top:5%;
	}
}

@media(max-width:768px){
	.bannercontent .bannertxt img{
		display:none;
	}
}

@media(max-width:480px){
	header .brand{
		width:100%;
		margin-top:0;
		margin-bottom:10px;
		text-align: center;
	}
	
	header nav{
		width:100%;
		text-align:center;
	}
	
	header .head-social{
		text-align:center;
		float:left;
	}
	
	header .menubox{
		float:right;
	}
	
	header .menubox li a {
		color: #d90784;
		padding-top: 7px;
		padding-bottom: 7px;
		display: block;
		padding: 7px 10px;
	}
	
	.footer-right, .footer-left{
		width:100%;
		margin-bottom:0px;
		text-align:center;
	}
}

@media(max-width:320px){
	
	header .head-social, header .menubox{
		text-align:center;
		float:left;
		width:100%;
	}
	
	header .menubox li{
		float: none;
		display:inline-block;
	}
}