section.services-block {
    padding: 100px 0;
}
section.services-block .welcome-left {
    width: 38%;
    border-right: none;
    padding-top: 6%;
}
.services-right {
    float: right;
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: end;
    position: relative;
}
.servicesEach {
    border: 1px solid #DDDDDD;
    border-radius: 30px;
    position: relative;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    width: calc(33.33% - 25px);
    height: 270px;
    transition: all 0.3s ease;
}
.servicesEach:hover {
    box-shadow: 0px 10px 14px rgba(23, 23, 23, 0.24);
}
.servicesEach .servicesImage img {
    width: 190px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    object-position: center;
    max-width: 100%;
    max-height: 90%;
}
.servicesEach a > h6 {
    font-size: 20px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 40px;
    margin-top: 10px;
}
.servicespopup {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 100%;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease;
}
.servicesEach:hover .servicespopup {
    bottom: 0;
}
.servicespopup-in {
    position: absolute;
    top: 25%;
    width: 100%;
    left: 0;
    padding: 20px;
    height: 75%;
    background-color: #97BF13;
    border-radius: 30px;
}
.servicespopup-in p {
    color: #fff;
}
.servicespopup h6 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    color: #000;
    margin-top: 30px;
}

.services-right a.main-service {
    width: 188px;
    height: 188px;
    background-color: #97BF13;
    text-align: center;
    border-radius: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
    border: 1px solid #fff;
    box-shadow: -10px 4px 24px rgba(23, 23, 23, 0.24);
    transition: all 0.3s ease;
}
.services-right a.main-service:hover {
    background-color: #000;
}
.services-right a.main-service img{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}






@media (max-width:1566px) {
}

@media (max-width:1440px) {
    .services-right {
        width: 60%;
    }
}

@media (max-width:1380px) {
    .servicesEach {
        height: 250px;
    }
    .services-right a.main-service {
        width: 158px;
        height: 158px;
    }
    section.services-block .welcome-left {
        padding-top: 4%;
    }
}

@media only screen and ( max-width: 1199px) {
    .servicesEach {
        height: 230px;
    }
    .servicesEach .servicesImage img {
        height: 80px;
        width: 140px;
    }
}

@media only screen and ( max-width: 961px) {
    section.services-block {
        padding: 60px 0;
    }
    .servicesEach {
        width: calc(50% - 12.5px);
    }
}

@media only screen and ( max-width: 768px) {
    section.services-block .welcome-left {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
        border: none;
    }
    .services-right {
        width: 100%;
    }
    .servicesEach {
        height: auto;
        padding: 20px 0 0 0;
    }
    .servicespopup {
        position: static;
    }
    .servicespopup-in {
        position: static;
        max-height: 200px;
    }
    .servicesEach a > h6 {
        display: none;
    }
    
    
}

@media only screen and ( max-width: 560px) {
    .servicespopup h6 {
        margin-top: 10px;
    }
    .services-right {
        gap: 10px;
    }
    .servicesEach {
        width: calc(50% - 5px);
    }
}