/* INDEX
----------------------------------------------------------------------------------------
01. Project Single Css

-------------------------------------------------------------------------------------- */


/************************************/
/***    01. Project Single Css    ***/
/************************************/

.page-project-single{
    padding: 100px 0;
}

.project-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.project-deatil-box{
    border: 1px solid var(--divider-color);
    margin-bottom: 60px;
}

.project-deatil-list{
    padding: 40px;
}

.project-deatil-box h2{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--accent-color);
	color: var(--white-color);
    padding: 20px 40px;
}

.project-deatil-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-deatil-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-deatil-item h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.project-deatil-item p{
    margin-bottom: 0;
    text-transform: capitalize;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
	display: block;
}

.project-single-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.562;
}

.project-entry{
    margin-bottom: 40px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry h2{
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.project-entry h2 span{
    color: var(--accent-color);
}

.project-challenge{
    margin-top: 40px;
}

.project-image-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.project-entry-list,
.project-video-image{
    width: calc(50% - 15px);
}

.project-entry-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-entry-list ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.project-entry-list ul li:last-child{
    margin-bottom: 0;
}

.project-entry-list ul li:before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 900;
    line-height: normal;
    color: var(--primary-color);
    display: inline-block;
    top: 0;
    left: 0;
}

.project-video-image{
    position: relative;
}

.project-entry-image a{
	display: block;
    cursor: none;
}

.project-entry-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.457;
}

.project-video-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.project-video-image .video-play-button a{
    position: relative;
    background-color: var(--white-color);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.project-video-image .video-play-button a::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.project-video-image .video-play-button a::after{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .4s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.project-video-image .video-play-button a i{
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.project-video-image .video-play-button a:hover i{
    color: var(--accent-color);
}