/**
 * @Project NUKEVIET 4.x
 * @Author BCB SOLUTIONS <bachdinhcao@gmail.com>
 * @Copyright (C) 2024 BCB SOLUTIONS. All rights reserved
 * @License: Not free read more http://nukeviet.vn/vi/store/modules/nvtools/
 * @Createdate Fri, 06 Dec 2024 09:47:39 GMT
 */

.project-sidebar{
	position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.project-info-item{
	margin-bottom: 20px;
}

.project-info-item-icon{
	background-color: #689b3d;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
}

.project-info-item-content span{
	display: block;
}

.project-info-item-content .info-value{
	font-weight: 500;
	font-size: 18px;
	color: #163300;
}

.project-content-image{
	margin-bottom: 10px;
}

.project-content-image img{
	border-radius: 30px;
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.image-gallery{
	flex-wrap: wrap;
}

.image-gallery-item{
	position: relative;
	width: calc((100% - 40px) / 3);
	overflow: hidden;
}

.image-gallery-item a:before{
	content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-gallery-item:hover a:before{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.image-gallery-item img{
	width: 100%;
	height: 100%;
	border-radius: 30px;
	object-fit: cover;
}

@media (max-width: 499.98px) {
	.project-detail .padding-right-lg{
		padding: 0 10px;
		margin-bottom: 10px;
	}

	.image-gallery-item{
		width: calc((100% - 40px) / 2);
	}
}




