:root{
    --cols:3;
    --gap:15px;
}
.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(400px , 1fr) );
    grid-gap: var(--gap);
    margin: 0 auto;
}
.item{
    /* cursor: pointer; */
    width: 350px;
    height: 350px;
    object-fit: contain;
    /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
    border-radius: 20px;
    overflow: hidden;
}
/* .item:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
} */
@media (max-width : 400px) {
    .newFluidImage {
        width: 300px !important;
    }
}
.grid .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width : 400px) {
    .grid .item img {
        width: 250px;
    }
}

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 80%;
    height: 600px;
    border-radius: 30px;
    background-color: white;
    z-index: 99;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    justify-content: center;
    align-items: center;
}
.rightbuton,.leftbuton{
    align-items: center;
    justify-content: center;
    justify-items: center;
    background-color:#07898c;
    font-size: 20px;
    margin: 20px;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-weight: 900;
    z-index: 999;
}
.popup img{
    object-fit: cover;
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: -1;
}
.video{
    border-radius: 50px;
    overflow: hidden;
    width: 50%;
    height: 600px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-text-title{
 text-align: center;
 font-size:45px;
}
.slider-holder{
    width: 400px;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 250px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 30px;
    padding: 5px;
    margin: 20px auto;
}
.slider-holder::-webkit-scrollbar{
   display: none;
}
.sliderx{
    width: fit-content;
    height: 250px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    justify-items: center;
    align-items: center;

}
/* .sliderx div{
    width:fit-content;
    height: 100%;
    object-fit: cover;
} */
.slider-item{
    width: 400px;
    height: 200px;
    object-fit: cover;
    /* background-color: rgb(255, 3, 3); */
    position: relative;
    text-align: center;
    /* margin: 0 10px; */
}
.slider-item h3 p{
    justify-self: center;
}
.slider-item img{
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
.btn-holder{
    width: 400px;
    display: flex;
    position: absolute;
    justify-content: space-between;
    justify-items: center;
    align-items: center;  
    transform: translate(10px, -150px); 
}
.btn-holder button{
    background-color: transparent;
    font-size: 35px;
    border: none;
    outline: none;
    color: #07898c;
}
.btn-holder button:hover{
    animation: btn 1s forwards ease-out;
}
@keyframes btn {
    0%{
        background-color: #07898c;
        color: white;
        /* border-radius: 50%; */
        width: 50px;
        height: 50px;
        text-align: center;
        opacity: 0;
        font-weight: 100;
    }
    100%{
        background-color: #07898c;
        color: white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        text-align: center;
        opacity: 1;
        font-weight: 900;
    }
}

.tgrid{
    display: grid;
    grid-template-columns: repeat(2 , 1fr );
    margin: 0 auto;
}
@media (max-width:750px) {
    .tgrid{
        grid-template-columns: repeat(1 ,1fr);
    }
}