.project-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.project-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.project-modal-inner {
    position: relative;
    background: #fff;
    padding: 40px;
    max-width: 60vw;
    max-height: 75vh;
    z-index: 1;
    box-sizing: content-box;
    border-radius: 10px;
}
.project-modal-img {
    max-width: 100%;
    max-height: 75vh;
    display: block;
    margin: 0 auto;
}
.project-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: #FFCE12;
    border: none;
    font-size: 27px;
    cursor: pointer;
    width: 30px;
    padding: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
}
.project-modal-close svg{
    fill:#fff;
    width: 20px;
}
.project-modal-arrow {
    position: absolute;
    top: 50%;
    background: #FFCE12;
    border: none;
    font-size: 27px;
    cursor: pointer;
    width: 30px;
    padding: 0;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
    transform: translateY(-50%);
}
.project-modal-arrow svg {
    fill: #fff;
    width: 20px;
}
.project-modal-prev {
    left: 5px;
}
.project-modal-next {
    right: 5px;
}
.project-modal-close:focus,
.project-modal-arrow:focus,
.project-modal-arrow:hover,
.project-modal-close:hover {
    background: #FFCE12;
}
.project-modal-close img {
    width: 12px !important;
    margin-top: 2px !important;
}
.project-modal-title {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
	display:none;
}
.project-show-overlay h3 {
    margin: 0 0 10px;
}
.project-block {
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.project-show-overlay {
    backdrop-filter: blur(5px);
    background: linear-gradient(180.00deg, rgba(255, 255, 255, 0),rgba(0, 0, 0, 0.2) 100%);
    flex-flow: column;
    justify-content: center;
    align-items: center;
	text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
	opacity:0;
	transition: all .3s ease-in-out;
}

.project-block:hover .project-show-overlay {
	opacity:1;
}
/* make the View button look like a button */


.view-button-1{
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.03);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    font-size: 27px;
	color: #fff;
}
.project-block:hover .view-button-1{
	background: #FFCE12;
	color: #fff;
}
.project-view-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-view-icon svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}
.our-project .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.our-project.owl-rtl .owl-nav {
    flex-direction: row-reverse;
}
.our-project .owl-nav button {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 37%) !important;
    border-radius: 100px !important;
    border: 1px solid rgb(255 255 255 / 10%) !important;
    z-index: 1;
    color: #000000 !important;
    font-size: 30px !important;
    line-height: 23px !important;
}


.our-project .owl-nav button:hover {
    background: #ffce12 !important;
	color: #fff !important;
}
@media(max-width:767px){
    .project-modal-inner {
        padding: 20px;
        max-width: 80vw;
        max-height: 75vh;
    
    }
   .project-modal-close {
        top: 6px;
        right: 6px;
    }
}