/**
 * @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-sidebar-box{
	padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

.project-info-item-icon{
	background-color: #1a6dba;
    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-info-item-content{
	width: calc(100% - 55px);
}

.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: 10px;
	object-fit: cover;
}

.project-filter{
	position: relative;
    padding: 20px 20px;
    background-color: #f8f8f8;
    margin: 10px 0 20px;
    border-radius: 10px;
}

.project-filter .btn,
.project-filter .form-control{
	width: 100%;
	height: 40px;
	border-radius: 8px;
}

.project-filter .btn{
	background-color: #01a959;
	border-color: #01a959;
}

.project-filter .btn:hover{
	background-color: #eb3234;
	border-color: #eb3234;
}

.bodytext h2{
	font-weight: 500;
    font-size: 20px;
}

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

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




