/* Slider
-------------------------------------------------- */
#slider {
	position: relative;
}

/* Slider > Image */
#slider img {
	min-width: 100%;
	display: block;
	z-index: 10;
}

/* Slider > Nav */
#slider .owl-nav [class*="owl-"] {
	background: #FFF;
	border-radius: 40px;
	width: 40px;
	line-height: 40px;
	position: absolute;
	top: 50%;
	z-index: 20;
	font-size: 16px;
	text-align: center;
	color: #212121;
	cursor: pointer;
	transform: translateY(-50%);
	transition: .4s ease;
	opacity: 0;
}

#slider:hover .owl-nav [class*="owl-"] {
	opacity: 1;
}

#slider:hover .owl-nav [class*="owl-"]:hover {
	background: #212121;
	color: #FFF;
}

#slider .owl-prev {
	left: 20px;
}

#slider .owl-next {
	right: 20px;
}

/* Slider > Dots */
#slider .owl-dots {
	width: 100%;
	position: absolute;
	bottom: 20px;
	text-align: center;
}

#slider .owl-dot {
	background: rgba(0,0,0,.5);
	border-radius: 12px;
	width: 12px;
	height: 12px;
	margin-right: 12px;
	display: inline-block;
	transition: .3s;
}

#slider .owl-dot:last-child {
	margin: 0;
}

#slider .owl-dot:hover {
	background: rgba(0,0,0,.8);
}

#slider .owl-dot.active {
	background: #FFF;
}

/* Section
-------------------------------------------------- */
.section {
	padding: 40px 0;
}

.sec-bg {
	background: #F8F8F8;
}

/* Gallery
-------------------------------------------------- */
.sec-gallery .item {
	border: 1px solid #F2F2F2;
	border-radius: 0;
	text-align: center;
	transition: .4s;
}

.sec-gallery .item a {
	text-decoration: none;
}

.img-wrapper {
	overflow: hidden;
}

.img-wrapper img {
	transition: .6s;
}

.sec-gallery .item:hover img {
	transform: scale(1.2);
}

.sec-gallery .item h3 {
	line-height: 20px;
	font-size: 14px;
}

/* Breadcrumb
-------------------------------------------------- */
.breadcrumb a {
	color: #333;
}

/* Articles
-------------------------------------------------- */
.sec-articles .panel h3 {
	font-size: 18px;
}

.sec-articles .panel a {
	text-decoration: none;
	color: #000;
}

.sec-articles .panel .date {
	margin-bottom: 25px;
	font-size: 12px;
	color: #999;
}

.sec-articles .img-thumbnail {
	margin-bottom: 15px;
}

.img-center {
	display: table;
	margin: 0 auto 15px auto;
}

/* Pagination
-------------------------------------------------- */
.pagination {
	margin: 20px auto;
	display: block;
	text-align: center;
}

.pagination-button {
	border: 1px solid #DDD;
	margin-left: -1px;
	padding: 5px 10px;
	display: inline-block;
	color: #333;
	cursor: pointer;
	transition: .1s;
}

.pagination-button:hover {
	background-color: #EEE;
	color: #23527C;
}

.pagination-button.active {
	background-color: #EEE;
	color: #3366CC;
}

.pagination-button:first-child {
	border-radius: 4px 0 0 4px;
}

.pagination-button:last-child {
	border-radius: 0 4px 4px 0;
}

/* Contact
-------------------------------------------------- */
.map {
	border: 1px solid #DDD;
	padding: 4px 4px 0;
}

.map iframe {
	border: 0;
	width: 100%;
	height: 250px;
}

.contact-info {
	margin: 15px 0 40px;
}

.contact-info li {
	padding: 5px 0;
}

/* Form */
.form .form-control {
	border: 1px solid #DDD;
	border-radius: 0;
	box-shadow: none;
}

.form textarea {
	resize: none;
	height: 120px;
}

.form .btn {
	border-radius: 0;
}

/* Responsive
-------------------------------------------------- */
@media (min-width: 980px) {
	.row-col-h [class*="col-"] {
		min-height: 300px;
	}
}

@media (max-width: 767px) {
	#slider .owl-controls {
		display: none;
	}
}