.services .left .service img {
    height: 210px;
}

.services .left .service .title{
    font-size: 38px;
    margin: 24px 0;
}

.services .right .service .title{
    font-size: 24px;
    margin: 25px 0 0 0;
}

.services .right .service img{
    height: 100px;
    margin-top: 15px;
}

.services .service .title{
    color: #e5232a;
    font-family: "IBM Plex Sans";
    font-size: 38px;
    font-weight: bold;
    font-style: normal;
}

.services .left .service .desc{
    font-size: 20px;
    height: 181px;
    padding-top: 20px;
}

.services .right .service .desc{
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.services .service .desc{
    font-family: "IBM Plex Sans";
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #000000;

}

.services {
    display: flex;
    flex-direction: row;
    max-width: 1300px;
    margin: auto;
}

.services .service {
    border-color: #e5232a;
    border-width: 1px;
    border-style: solid;
    text-align: center;
    cursor: pointer;
}

.services .left .service{
   display: flex;
    padding: 25px;
    background-color: rgba(212, 155, 12, 0.11);
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.services .right .service{
    padding: 10px;
}

.services .left {
    width: 50%;
    margin: 5px 0px;
}

.services .right {
    width: 50%;
    margin: 5px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    row-gap: 5px;
}

.services .right .service {
    width: calc(49% - 20px); 
    margin-bottom: 13px;
    height: 260px;
}

/* Styles for mobile devices (up to 767px width) */
@media only screen and (max-width: 767px) {
   .services {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .services .left {
        width: 100%;
        margin: 5px;
    }
    
    .services .left .service .desc {
        font-size: 20px;
        padding-top: 20px;
    }
    .services .right {
        width: 100%;
        margin: 5px;
    }
    .services .right .service {
        width: 100%;
        margin-bottom: 10px;
        height: 260px;
    }

    .services .left .service img{
        height: 100px;
    }

    .services .left .service .desc{
        padding-top: 0px !important;
    }

    .left .service .title {
        font-size: 30px !important;
        margin: 20px 0 !important;
    }
}

/* Styles for tablet devices (768px to 1023px width) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Your CSS styles for tablet devices here */
}