@import url("font.css");
@import url("header.css");
@import url("footer.css");
@import url("section.css");
@import url("org.css");
@import url("banner.css"); 
@import url("button.css"); 
@import url("indexbelow.css"); 
*{
	box-sizing:border-box;

	}
body {
	width: auto;
	margin: auto;
	line-height:auto;
	background-image: url(bg.jpg);
	background-size:cover;
	background-attachment: fixed;
	
}
.border_right{		
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
}

.bg-overlay-gradient:before {
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.75)),to(rgba(0,0,0,.03)));
    background-image: -webkit-linear-gradient(center bottom,rgba(0,0,0,.75),rgba(0,0,0,.03));
    background-image: -moz-linear-gradient(center bottom,rgba(0,0,0,.75),rgba(0,0,0,.03));
    background-image: -ms-linear-gradient(center bottom,rgba(0,0,0,.75),rgba(0,0,0,.03));
    background-image: -o-linear-gradient(center bottom,rgba(0,0,0,.75),rgba(0,0,0,.03));
    background-image: linear-gradient(center bottom,rgba(0,0,0,.75),rgba(0,0,0,.03));
}
.bg-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(27,26,26,.45);
}	
@media only screen and (max-width: 800px) {
.border_right{
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333;
}	

}

.hours{
	position:fixed;
	height:70px;
	bottom:120px;
	right:-340px;
	padding: 15px 50px 15px 150px;
	background-color:#fff;
	color:#222;
	transition: 0.3s linear;
	z-index: 500;
	border-radius: 8px 0px 0px 8px;
	cursor: pointer;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.85);
}

.hours:hover{
	position:fixed;
	height:140px;
	bottom:85px;
	right:0px;
	padding: 15px 150px 15px 50px;
	background-color:#fff;
	color:#222;
	transition: 0.3s linear;

}

@media only screen and (max-width: 420px){
	
	.hours{
		right: -328px;
	}
	
	.hours h2{
		font-size: 18px;
	}
	
	.hours p{
		font-size: 15px;
	}
}

.divider-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: url(shape3.png) repeat-x;
}

.clock-icon{
	position: fixed;
	bottom: 135px;
	right:12px;
	z-index: 501;
}


.clock-icon img{
	max-width: 40px;
}

/*scroll bar styling*/

::-webkit-scrollbar-track {
    background-color: #515252;
	
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #c02d37;
}

::-webkit-scrollbar-thumb {
    background: #c02d37;
	border-radius:50px;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 100px 20px #23241f;
}