body {
	font-family: 'Kalam', cursive, sans-serif;
	font-weight: bolder;
}

.max-viewport {
	min-height: 100vh;
}

.viewport-60 {
	min-height: 60vh;
}

.viewport-80 {
	min-height: 80vh;
}
/*main hr*/

hr {
	background-color: #F15025;
}

.odd {
	background-color: #CED0CE;
}

.even {
	background-color: #fff;
}
/*nav */

.nav-logo {
	background-color: #d9d791;
	text-align: center;
}

.no-padding {
	padding: 0;
}

.sidebar {
	border-right: 2px solid #CED0CE;
	background-color: #fff;
}


	.sidebar .list-group-item {
		border: none;
	}

.nav-color {
	color: #CED0CE;
}

.search-width {
	width: 500px;
}

.sidebar .nav-btn {
	border-radius: 30px;
	font-size: 20px;
	background-color: #F15025;
	color: #353531;
}

	.sidebar .nav-btn:hover {
		background-color: #353531;
		color: #F15025 !important;
	}



/*content*/

/*owl item*/

.owl-item .img-container {
	position: relative;
	background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
	overflow: hidden;
}




.owl-item .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 50px;
	color: #fff;
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 50%;
	visibility: hidden;
}

.owl-item img {
	transition: transform 4s ease-in-out;
}

.owl-item:hover img {
	opacity: 0.5;
	transform: scale(1.3);
}

.owl-item:hover .fa {
	visibility: visible;
	background-color: rgba(206, 208, 206, 0.5);
}

.icon {
	color: #353531;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	background: #F15025;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

	.icon:hover {
		background: #869791;
		color: #FFF;
		text-decoration: none
	}
