:root{
    --bg-grient:linear-gradient(180deg, rgba(0, 144, 160, 0.966) 0%, rgba(9, 49, 97, 0.945) 100%);
    --bg-box: linear-gradient(133deg, rgba(0,145,160,1) 0%, rgba(9,49,97,1) 100%);
    --bg-content:linear-gradient(180deg, rgba(0, 144, 160, 0) 0%, rgba(9, 49, 97, 0.459) 100%);

}

.project-hero{
    width: 100%;
    min-height: 583px;
    background-image: url('../images/our-bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
   z-index: 60;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.project-new-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -6;
    top: 0px;
    background-image: var(--bg-grient);
}
.project-hero-child{
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;


}
.project-hero-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
   /* background-color: aqua; */
    height: 150px;
    width: 600px;
    border-bottom: 2px solid white;
}
.project-hero-title h1{
    font-family: 'TT Firs Neue Trial Var Roman';
    font-weight:bold;
    font-style: normal;
    font-size: 60px;
}
.project-hero-title p{
    font-family: 'TT Firs Neue Trial Var';
    font-weight: normal;
    font-style: italic;
}
.project-gallery-container{

    position: relative;
    z-index: 70;
    top: -120px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.project-gallery-child{



    width: 80%;

    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.project-item-new {
    width: 100%;
    position: relative;

}
.project-item-new img{
    width: 100%;
     min-height: 515px;

}

.project-item-new:hover .item-over{
    position: absolute;
    display: block;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #0090a094;
    background-image: var(--bg-content);
    padding: 40px 25px;
}
.item-over .out-line{
    border: 2px solid white;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: flex-end;
}
.contect-title{
    color: white;
    padding: 0 15px;

}
.contect-title h4{
    font-size: 16px;
    margin: 0px;
}
.contect-title p{
    font-size: 14px;
}
.item-over{
    position: absolute;
    display: none;
    top: 0px;
    width: 100%;
    height: auto;
    background-color: #0090a094;
    background-image: var(--bg-content);
    padding: 40px 25px;
}


.lb-outerContainer {
    position: relative;
    width: 50% !important;
    height: 250px;
    margin: 10 !important;
    border-radius: 4px;
    background-color: white;
}
.lightbox .lb-image {
    display: block !important;
    width: 100% !important;
   object-fit: contain !important;
    height: auto;

    border-radius: 3px;
    border: 4px solid white;
}
.lightboxOverlay {
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgb(29, 28, 28) !important;
    opacity: 0.8;
    display: none;
}
