.allService{
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    align-items: start;
    justify-content: space-around;
    div {
        width: 50%;
    }
    > div > p{
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: 0.02em;
        color: #505056;
    }
    > div > ul > li{
        list-style: none;
        margin-top: 10px;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: 0.02em;
        color: #505056;
    }
    > div > ul > li > i{
        color: #fff;
        background: #007465;
        padding: 5px;
        font-size: 10px;
        margin-right: 5px;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
    }
}
.serviceImg {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}
.serviceImg > img{
    width: 450px;
    height: 250px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.applicationCost{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 100px;
    > div{
        width: 50%;
    }
    > div > img{
        width: 500px;
        height: 350px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    > div > table{
        width: 100%;
        > tbody > tr > td{
            display: flex;
            padding: 8px 10px 8px 10px;
            color: #505056;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #C4C4C4 !important;
            > p{
                margin: 0%;
            }
        }
        .FirstTD{
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .lastTD{
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
    }
}


/* ======== responsive section start ========= */
@media (max-width: 780px){
    .serviceImg > img{
        width: 100% !important;
        height: 100% !important;
    }
    .allService{
        align-items: center;
        flex-direction: column;
        justify-content: center;
        div {
            width: 90%;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            ul{
                padding: 0%;
                li{
                    font-size: 14px;
                }
            }
        }
    }
    .serviceImg > img{
        margin-top: 30px;
    }
    .top-content{
        text-align: center;
    }
    .applicationCost{
        > div {
            width: 90%
        }
    }
}
@media (max-width: 1050px){
    .serviceImg > img{
        width: 370px;
        height: 200px;
    }
    .applicationCost{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        > div > img{
            width: 100%;
            height: 100%;
        }
    }
   
    table{
        margin-top: 30px;
    }
}
/* ======== responsive section end ========= */
  