

.produthome {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    /* background-color: aliceblue; */
    
    
}
.project {
    border: 1px solid #ddd;
    /* border-radius: 8px; */
    padding: 16px;
    /* text-align: center; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    color: black;
    text-align: center;
    /* margin-top: 80px; */
}
.project:hover {
   background-color: rgb(158, 175, 191);
}
.project img {
    width: 100%;
    /* border-radius: 8px; */
    height: 200px; 
}
.project-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: black;
}
.project-names {
    margin-top: 10px;
    font-size: 15px;
    /* font-weight: bold; */
    text-align: left;
    color: #2E24DE;
    padding-bottom: 10px;
}
.product-home-page{
    display: flex;
    gap: 10px;
}

.product-image-info-home{
    width: 85%;
}

.product-home-list{
    margin-top: 30px;
    margin-bottom: 30px;
    width: 15%;
    /* padding: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.product-home-list h4{
   
    /* margin-bottom: 70px; */
}



@media (max-width: 768px) {
    .produthome {
        grid-template-columns: 1fr 1fr;
    }
    .product-home-list{
        display: none;
    }
    .product-image-info-home{
        width: 100%;
    }
}
@media (max-width: 480px) {
    .produthome {
        grid-template-columns: 1fr;
    }
    .product-home-list{
        display: none;
    }
    .product-image-info-home{
        width: 100%;
    }
}

.service-titles h1{
    padding: 30px;
    margin-top: 40px;
}

.projecthome{
    margin-top: 40px;
}




.img-comp-container {
    position: relative;
   
  }
  
  .img-comp-img {
    position: absolute;
    /* width: auto;
    height: auto; */
    overflow:hidden;
  }
  
  .img-comp-img img {
    display:block;
    vertical-align:middle;
  }
  
  .img-comp-slider {
    position: absolute;
    z-index:9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    opacity: 0.7;
    border-radius: 50%;
  }