﻿@media (max-width: 575px) {
	.col-three {
		width: 100%;
	}
	.cus-img {
		height: 330px!important;
	}
}

@media (min-width: 576px) {
	.col-three {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.col-three {
		width: calc(100% / 3);
	}
}

.col-cus {
	float: left;
	padding: 16px;
}

/*.col-three {
	width: calc(100%/3);
}
*/
.row-cus {
	margin-left: -16px;
	margin-right: -16px;
}

.row-cus::after {
	content: "";
	display: block;
	clear: both;
}

.customer-list {
	padding: 32px 0;
}

.cus-item {
	position: relative;
	box-shadow: 0 0 8px rgb(0 20 40 / 20%);
	border-radius: 3px;
	overflow: hidden;
}

.cus-img {
	width: 100%;
	display: block;
	height: 230px;
	object-fit: cover;
}

.cus-logo {
	position: absolute;
	width: 20%;
	height: 20%;
	top: 5px;
	right: 5px;
}

.cus-overlay {
	transform: translateY(110%);
	transition: all 0.3s ease-in-out;
}

.cus-item:hover {
	cursor: pointer;
}

.cus-item:hover .cus-overlay {
	display: block;
	background: rgb(255,255,255,0.8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #000;
	height: 100%;
	transform: translateY(0px);
}

.cus-item:hover .cus-info {
	opacity: 1;
}

.cus-info {
	opacity: 0;
	position: absolute;
	bottom: 0;
	margin-bottom: 16px;
	padding: 0 8px;
}

.cus-name {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 600;
}

.cus-des {
	font-size: 16px;
}