.item {
    margin-bottom: 20px;
    
    border-radius: 8px;
    height: 100%;
}
.item  h3{
    color:#6db43e;
    font-size:16px;
}



.item .services-one__read-more a {
       color:#6db43e;
}
.item img {
  /*   height: 250px; */
    width: 100%;
   
    object-fit: cover;
    border-radius: 10px;

}

.item .content {
    padding: 15px 0;
    border-radius: 10px;
}
 

/* .item {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.item:nth-child(odd) {
    animation-name: slideInLeft;
    flex-direction: row; 
}
.item:nth-child(even) {
    animation-name: slideInRight;
    flex-direction: row-reverse;
}

.text {
    flex: 1;
    padding: 0 30px;
}
.text h3 {
    margin: 0;
    font-size: 18px;
}
.text p {
    margin: 5px 0;
    color: #555;
}
.btn, .btn2 {
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: #fff;
}
.btn {
    background-color: #f68428;
}
.btn:hover {
    background-color: #d5701d;
}
.btn2 {
    background-color: #6db43e;
}
.btn2:hover {
    background-color: #57902f;
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.item a{
    color: white;
}
.container .item img{
    width: 300px;
    
} */