.project-info-content{
    background: #151616; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 40px !important;
}
#project-title{
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}



.cute_block::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    display: inherit;
    width: 4rem;
    height: 4rem;
    border-left: 2px solid #4b4c4c !important;
    border-top: 2px solid #4b4c4c !important;
}
.cute_block_alt::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: inherit;
    width: 4rem;
    height: 4rem;
    border-right: 2px solid #4b4c4c !important;
    border-bottom: 2px solid #4b4c4c !important;
}





.project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
}
.project-item-img-content{
    width:100%;
    height:100%;
    margin:10px;
    overflow: hidden;
}
.project-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.1);
}
.project-item:hover img {
    transform: scale(1.2);
}
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151616;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.fullscreen-modal.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fullscreen-modal.hide {
    opacity: 0;
    transform: translateY(20px);
}



.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    line-height: 40px;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-modal:hover {
    transform: scale(1.1);
}
.project-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #151616;
    color: white;
    padding: 5px 10px;
    font-size: 18px;
    z-index: 99;
}
.project-title {
    color: white;
    padding: 10px 40px;
    z-index: 999;
    text-align:right;
}
.project-title-h2 {
    font-size: 48px;
    color:#FFF;
}
.project-title-p {
    font-size: 18px;
    color: #fff;
    margin-top:50px;
    line-height: 1.5;
    width:80%;
}
#modal-year{
    font-weight: bold;
}


.text-white{
    color: #fff !important;
}
.hidden_block{
    display:none !important;
}


.owl-prev, .owl-next{
    position: absolute;
    top: calc(50% - 50px);
    height: 100px;
    width: 100px;
    z-index: 9999;
    border-radius: 50% !important;
}
.owl-prev{
    left: 20px;
}
.owl-next{
    right: 20px;
}
.owl-prev, .owl-next{
    background: unset !important;
}
.owl-prev:hover, .owl-next:hover{
    background: #1d1e1e91 !important;
}



.owl-dots{
    position: fixed;
    bottom: 0px;
    width: auto;
    text-align: left;
    margin: auto;
    background: #151616;
    padding: 0px 10px;
    border-radius: 0px 15px 0px 0px;
}
.owl-dots .owl-dot span {
    width: 5px !important;
    height: 5px !important;
    margin: 3px 4px !important;
}





.owl-prev span, .owl-next span{
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 4px);
    font-size: 14px;
}
    
    
.portfolio-img{
    background-size: contain;
    background-position: 50%;
    width:auto;
    min-width:auto;
    height:100%;
    display:block;
    background-repeat: no-repeat;
}
.owel-item{
    height: 100%;
    float: left;
}
.owl-carousel, .owl-carousel .owl-stage-outer, .owl-stage, .owl-item{
    height: 100%;
}