/* codeDESIGN - djc2_items_grid.css */
@charset "utf-8";

/* DJC2 ITEMS GRID */
div.djc2_items_grid {
	background: var(--ci_color_white);
	margin: 30px 0px 80px 0px;
	padding: 0px 0px 0px 0px;
}
/*
div.djc2_items_grid [class^="col-"],
div.djc2_items_grid [class*=" col-"] {
	padding-left: 0px;
	padding-right: 0px;
}
*/

div.djc2_items_grid div.row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 30px;
}
@media only screen and (max-width: 991px) {
	div.djc2_items_grid div.row {
		display: block;
	}
}
div.djc2_items_grid div.row::before,
div.djc2_items_grid div.row::after {
	content: none;
}
div.djc2_items_grid div.row:not(:last-child) {
	margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
	div.djc2_items_grid div.row:not(:last-child) {
		margin-bottom: 0px;
	}

	div.djc2_items_grid div[class^="col-"] {
		margin-bottom: 30px;
	}
}

div.djc2_items_grid div[class^="col-"] {
	display: flex;
	flex-flow: column;
	/*height: 100%;*/
}
@media only screen and (max-width: 991px) {
	div.djc2_items_grid div[class^="col-"] {
		display: block;
	}
}

div.djc2_items_grid div[class^="col-"] div.djc2_item_description a,
div.djc2_items_grid div[class^="col-"] div.djc2_item_description a:link,
div.djc2_items_grid div[class^="col-"] div.djc2_item_description a:visited {
	display: inline-block;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding: 20px;
	text-decoration: none;
}

div.djc2_items_grid div.djc2_item_image {
	flex: 0 1 auto;
	position: relative;
	overflow: hidden;
}

div.djc2_items_grid div[class^="col-"] div.djc2_item_image span.overlay {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.djc2_items_grid div[class^="col-"]:hover div.djc2_item_image span.overlay {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}
div.djc2_items_grid div[class^="col-"] div.djc2_item_image span.overlay i {
	font-size: 30px;
	color: var(--ci_color_white);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

div.djc2_items_grid div.djc2_item_file {
	display: inline-block;
	position: absolute;
	bottom: -100%;
	left: 50%;
	border: 1px solid var(--ci_color_dark_grey);
	background: var(--ci_color_white);
	transform: translateX(-50%);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.djc2_items_grid div[class^="col-"]:hover div.djc2_item_file {
	bottom: 20px;
}
div.djc2_items_grid div.djc2_item_file::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	margin: -1px 0px 0px -1px;
	border: 1px solid var(--ci_color_black);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.djc2_items_grid div.djc2_item_file:hover:before {
	border: 1px solid var(--ci_color);
	background: var(--ci_color);
}
div.djc2_items_grid div.djc2_item_file a,
div.djc2_items_grid div.djc2_item_file a:link,
div.djc2_items_grid div.djc2_item_file a:visited {
	display: inline-block;
	padding: 20px 40px;
	text-decoration: none;
	color: var(--ci_color);
	font-weight: 600;
}

div.djc2_items_grid div.djc2_item_description {
	position: relative;
	/*padding: 20px;*/
	background: var(--ci_color_grey);
	text-align: center;
	flex: 1 1 auto;
}
div.djc2_items_grid div[class^="col-"] div.djc2_item_description::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid var(--ci_color_black);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.djc2_items_grid div[class^="col-"]:hover div.djc2_item_description::before {
	border: 1px solid var(--ci_color);
	background: var(--ci_color);
}

div.djc2_items_grid div.djc2_item_description h3 {
	text-transform: uppercase;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	border-bottom: none;
	margin: 0px;
	padding: 0px;
	hyphens: none;
	top: 50%;
	transform: translateY(-50%);
}
div.djc2_items_grid div.djc2_item_description h3::after {
	content: none;
}
@media only screen and (max-width: 991px) {
	div.djc2_items_grid div.djc2_item_description h3 {
		top: auto;
		transform: none;
	}
}