body{
	margin: 0;
	padding: 0;
	
}

body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", Arial, Helvetica, sans-serif;}

.menu-bar{
	height: 55px;
	top: 0px;
	width: 100%;
	position: fixed;
	background-color: #fff;
	margin-bottom: 20px;
	border-bottom: 3px solid #9D9C9C;
	z-index: 2;
}
.logo{
	height: 100%;
	top: 0;
	float: left;
	font-size: 40px;
	padding-top: 0px;
	padding-left: 25px;
}
.menu{
	height: 100%;
	float: left;
	font-size: 37px;
	padding-top: 0px;
	margin-left: 20px;
	color: #fff;
	background-color: #F44336;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.menu ul{
	margin-left: 0px;
	padding-left: 20px;
	padding-right: 20px;
}
.menu ul li{
	list-style-type: none;
	font-weight: bold;
}
.menu ul li ul{
	display: none;
	left: 200px;
}
.menu ul li:hover ul{
	display: block;
	background: rgba(244,67,54,0.7);
	position: fixed;
	margin-left: 4%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.menu ul li a,.menu ul li:hover ul li a{
	color: #FFFFFF;
	text-decoration: none;
}
.menu ul li ul li a:hover{
	color: #F44336;
}
/*--slider--*/

.contect{
	background: url("slide.jpg") no-repeat center center ;
	left: 25%;
	top: 10%;
	width: 50%;
	height: 500px;
	text-align: center;
	position: relative;
	box-shadow: 1px 1px 20px 10px rgba(0,0,0,0.8);
	
}
.contect span{
	font-size: 100px;
	position: absolute;
	z-index: 2;
	color: #fff;
	top: 45%;
	right: 37%;
}

/*--title--*/
.title{
	font-size: 45px;
	padding: 30px 200px 0px;
}

/*----venue---*/

.container{
	width: 100%;
	margin: 0%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.container .box{
	position: relative;
	width: 300px;
	height: 300px;
	background: #ff0;
	margin: 10px;
	box-sizing: border-box;
	display: inline-block;
}
.container .box .imgBox{
	position: relative;
	overflow: hidden;
}
.container .box .imgBox img{
	width: 100%;
	height: 300px;
	transition: transform 2s;
}
.container .box:hover .imgBox img{
	transform: scale(1.2);
}
.container .box .details{
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,.8);
	transform: scaleY(0);
	transition: transform .5s;
}
.container .box:hover .details{
	transform: scaleY(1);
}
.container .box .details .content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center center;
	padding: 15px;
	color: #fff;
}
.container .box .details .content h2{
	margin: 0;
	padding: 0;
	font-size: 20px;
	color: #ff0;
}
.container .box .details .content p{
	margin: 10px 0 0;
	padding: 0;
}

/*--slider--*/


.slider{
	width: 50%;
	height: 500px;
	margin: 50px 400px;
}

.carousel{
	box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.5);
}
.carousel-indicators{
	z-index: 1 !important;
}
@media only screen and (max-width:980px){
	.slider{
		width: 100%;
		margin-left: 0;

	}
}

.footer{
	bottom: 0px;
	position: fixed;
	right: 0px;
	text-align:center!important;
	display:inline-block;
	width:20%;
	font-size: 30px;
	margin-bottom:16px!important;
}

.w3-padding-16{
	padding-top:16px!important;
	padding-bottom:16px!important;
}
.w3-hover-opacity:hover{
	opacity:0.60
}