.service-block {
    width: 100%;
    margin: 1% 0; 
    float: left;
    padding: 10px;
    border: solid 2px #0d5744;
    border-radius: 10px;
    text-align: center;
}

.service-block:nth-child(odd){
    background-color: #f1f1f1;
}

.service-title {
    font-size: 20px;
    font-weight:bold;
    margin-bottom: 10px;
    width: 100%;
}

.service-name {
    width: 100%;
    margin-bottom: 10px;
}

.service-link {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.service-block .service-button {
    font-size: 19px;
    font-family: Poppins-Bold;
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 10px;
    border: none;
    border-radius: 50px;
    background-color: #0d5744;
    transition: 0.5s all;
}

.service-block .service-button:hover {
    opacity: 0.6;
}

.service-img-box {
    width: 18%;
    float: left;
    margin: 0 1% 1% 0;
    height: auto;
    padding: 0 15px 15px 0;
}
  
.service-img {
    max-width: 100%;
    width: 100%;
    float: left;
    border-radius: 100%;
    margin-bottom: 15px;
    max-height: 100%;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.22);
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.22);
}

.service-info {
    text-align: left;
}

.service-desc {
    padding: 10px;
}

.service-gallery-box {
    width: 23%;
    margin: 1% 1% 1% 1%;
    float: left;
    min-width: 23%;
    /*
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    */
    border-radius: 10px;
    text-align: center;
    height: 190px;
}

.service-gallery-thumb {
    max-width: 100%;
    background-color: #fff;
    max-height: 100%;
    border-radius: 10px;
}

.service-gallery-thumb:hover {
    opacity: 0.6;
}


@media screen and (max-width: 1100px) {

    .service-img {
        width: 100%;
    }
    .service-img-box {
        width: 23%;
        float: left;
        margin: 0 1% 1% 0;
        height: auto;
    }
}

@media screen and (max-width: 1200px) {
    .service-gallery-box {
        height: 160px;
    }
}

@media screen and (max-width: 1000px) {
    .service-gallery-box {
        width: 31%;
    }
}

@media screen and (max-width: 800px) {
    .service-gallery-box {
        width: 48%;
        height: 250px;
    }
}

@media screen and (max-width: 755px) {
    .service-block {
        width: 100%;
        margin: 1% 0;
    }
    .service-gallery-box {
        width: 100%;
    }
}
  