/*
 * Start Bootstrap - Business Frontpage (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

body {
	padding-top: 50px;
	/* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}
.paragraph{padding-left: 10%; padding-right: 10%;}
@media screen and (max-width: 991px) {
	.category {
		width: inherit;
		max-width: 600px !important;
		
	}
	.category img {
			max-width: 500px;
		}
}


/* Header Image Background - Change the URL below to your image path (example: ../images/background.jpg) */

.business-header {
	height: 400px;
	background: url('/IMG/banner.png') center center no-repeat scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}


/* Customize the text color and shadow color and to optimize text legibility. */

.tagline {
	text-shadow: 0 0 10px #000;
	color: #fff;
}

.img-center {
	margin: 0 auto;
}

footer {
	margin: 50px 0;
}

.logo {
	height: 40px;
	width: auto;
	position: relative;
}

.logocenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 45px;
}


/**************************Slideshow*********************/

#slideshowContainer {
	height: 400px;
	overflow: hidden;
}

.crossfade {
	height: 400px;
	overflow: hidden;
}

.crossfade > figure {
	animation: imageAnimation 30s linear infinite 0s;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center center;
	/*background-attachment: fixed; /*for parallax effects*/
	color: transparent;
	height: 400px;
	left: 0px;
	opacity: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: -1;
}

.crossfade > figure:nth-child(1) {
	background-image: url('../IMG/14618689_10207499049219803_443848722_o.jpg');
}

.crossfade > figure:nth-child(2) {
	animation-delay: 6s;
	background-image: url('../IMG/14618893_10207499063380157_1706498709_o.jpg');
}

.crossfade > figure:nth-child(3) {
	animation-delay: 12s;
	background-image: url('../IMG/14599826_10207499063260154_176944551_o.jpg');
}

.crossfade > figure:nth-child(4) {
	animation-delay: 18s;
	background-image: url('../IMG/arrow_c.jpg');
}

.crossfade > figure:nth-child(5) {
	animation-delay: 24s;
	background-image: url('../IMG/14646699_10207499060540086_638941680_o.jpg');
}

@keyframes imageAnimation {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
	}
	8% {
		animation-timing-function: ease-out;
		opacity: 1;
	}
	17% {
		opacity: 1
	}
	25% {
		opacity: 0
	}
	100% {
		opacity: 0
	}
}