﻿
/**
 * Table of Contents
 *
 * 1.0 - Icon font
 * 2.0 - Basic styles
 * 3.0 - Forms
 * 4.0 - Grid
 * 5.0 - Helper classes
 * 6.0 - Layout
 *	 6.1 - Background section
 *	 6.2 - Masonry layout
 *	 6.3 - Classic menu
 *	 6.4 - Contact page
 * 7.0 - Main menu
 *	 7.1 - Mobile menu
 * 8.0 - Article
 *	  8.1 - Images
 *	  8.2 - Gallery
 *	  8.3 - Video
 *	  8.4 - Elements
 *	  8.5 - Pagination
 *	  8.6 - Blog category
 * 9.0 - Toggle
 * 10.0 - Tabs
 * 11.0 - Social icons
 * 12.0 - Lightbox
 * 13.0 - Carousel (homepage slider)
 * 14.0 - Typography addons
 * 15.0 - Modules
 * 16.0 - Maintance page
 * 17.0 - Error page (404)
 * 18.0 - Media queries
 */
 
 
/**
 * 1.0 - Icon font
 */
 
@import url("font-awesome.min.css");



.gallery {
	list-style-type: none;
	/*margin: 0 -15px 35px -15px;*/
}

.gallery li {
	padding: 15px;
	position: relative;
}

ul.gallery.col-2 li {
	width: 50%;
	float: left;
}

ul.gallery.col-3 li {
	width: 33%;
	float: left;
}

ul.gallery.col-4 li {
	width: 25%;
	float: left;
}

.gallery li a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden; border:1px solid #babdc1;
}
.gallery li .article-content {
	/*padding: 40px;padding:10px 10px 8px 10px;*/ padding:3px 3px 0px 10px;   
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);background-color: #ffffff;
}
.gallery li a img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;	
}


.gallery li a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.gallery li a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0;
	z-index: 99;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;	
}

.gallery li a:hover:after {
	opacity: 0.2;
}

.gallery li a i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ffffff;
	font-size: 28px;
	opacity: 0;
	z-index: 100;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;	
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.gallery li a:hover i {
	opacity: 1;
}






/**
 * 12.0 - Lightbox
 */

body.lb-disable-scrolling {
	overflow: hidden;
}

.lightboxOverlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9998;
	opacity: 0.5;
	background-color: #000000;
}

.lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
}

.lb-outerContainer {
	position: relative;
	background-color: #ffffff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}

.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}

.lb-container {
	padding: 15px;
}

.lb-loader {
	position: absolute;
	top: 50%;
	left: 0;
	height: 60px;
	width: 100%;
	text-align: center;
	line-height: 0;
}

.lb-cancel {
	display: block;
	margin: -30px auto 0 auto;
	padding: 0;
	width: 60px;
	height: 60px;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.1);
	border-top-width: 2px;
	border-top-color: rgba(0, 0, 0, 0.8);
	border-radius: 60px;
	-webkit-animation: cancelRotate 0.7s infinite ease-in-out normal;
	animation: cancelRotate 0.7s infinite ease-in-out normal;
}

@-webkit-keyframes cancelRotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes cancelRotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
  
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	overflow: hidden;
}

.lb-container > .nav {
	left: 0;
}

.lb-prev, .lb-next {
	position: absolute;
	top: 50%;
	margin-top: -30px;
	cursor: pointer;
	display: block;
	background-color: #ffffff;
	z-index: 9999;
	opacity: 1;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.lb-nav a.lb-prev {
	width: 60px;
	height: 60px;
	left: -60px;
	background-image: url(../images/interface/arrow_left.svg);
	background-position: center center;
	background-repeat: no-repeat;
}

.lb-nav a.lb-next {
	width: 60px;
	height: 60px;
	right: -60px;
	background-image: url(../images/interface/arrow_right.svg);
	background-position: center center;
	background-repeat: no-repeat;
}

.lb-nav:hover a.lb-prev {
	left: 0;
}

.lb-nav:hover a.lb-next {
	right: 0;
}

.lb-prev:hover,
.lb-next:hover {
	background-color: #f0f0f0;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.lb-dataContainer {
	margin: 0 auto;
	width: 100%;
}

.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}

.lb-data {
	padding: 0;
	display: block;
	width: 100%;
	overflow: hidden;
	color: #ffffff;
}

.lb-data .lb-details {
	float: left;
	padding: 15px 0;
	text-align: left;
	line-height: 1em;
}

.lb-data .lb-caption {
	font-size: 12px;
	font-style: italic;
}

.lb-data .lb-number {
	display: block;
	float: left;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 12px;
}

.lb-data .lb-closeContainer {
	float: right;
}

.lb-data .lb-close {
	position: absolute;
	top: 0;
	display: block;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
	cursor: pointer;
	opacity: 1;
	z-index: 9999;
	background-image: url("../images/interface/close_icon_black.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #ffffff;
	background-size: 20px 20px;
	border-radius: 45px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
	-webkit-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;	
}

.lb-data .lb-close:hover {
	background-color: #d5d5d5;
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

