.service-container-component{
    margin-top: 2rem;
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 2rem;
    
}

.service-component{
    display: flex;
    justify-content: space-between;
   
    align-items: center;
    gap: 2rem;
}

.service-component-images{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    gap: 1rem;
   
}



.service-component-content{
    width: 50%;
   
}


.service-comp-image1{
    width: 50%;
   
}

.service-comp-image2{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.image1{
   
    width: 100%;
}

.image2{
    
    width: 100%;
}

.image3{
   
    width: 100%;
}

.image4{
    width: 50%;
   
}

.image5{
    width: 50%;
   
}

.service-image-component{
    overflow: hidden;
    height: 350px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    position: relative;
    transition: 1s;
    border-radius: 20px;
}

.service-image-component img{
    width: 100%;
    height: 100%;
    filter: brightness(70%);
    object-fit: cover;
}

.image-content{
    position: absolute;
    top: 90%;
    left: 0;
    width: 80%;
    padding: 0 10%;
    transition: 0.5s;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
    height: 50%;
    
}

.service-image-component:hover .image-content{
    top: 70%;
    transition: 1s;
}

.service-image-component:hover .image-content h3{
    margin-bottom: 0.5rem;
    transition: 1.9s;
  
}

.image-content h3{
    font-size: 1.3rem;
    margin-bottom: 3rem;
    margin-top:0;
    color: #Fff;
    text-align:left;
    font-weight: 500;
}

.image-content p{
    color: #fff;
    font-size: 0.8rem;
}

.image-content i{
    color: #fff;
    font-size: 2rem;
    
}

.image-flex{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.service-component-content h2{
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align:left;
}

.service-component-content h4{
    font-size: 1rem;
    margin-bottom: 2rem;
    
}


@media (max-width:850px ) {
    .service-container-component{
        display:none;
    }
}



