.fs-services-slider .swiper-slide {
    height: auto;
}
.fs-service-card {
    height: 100%;
}
.fs-service-card .inner-bx {
    background-color: #fff;
    border-radius: 10px 170px 170px 170px;
    padding: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ser-image-inner {
    position: relative;
    margin-top: auto;
}
.fs-service-image {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    overflow: hidden;
    transition: all .5s ease;
}
.fs-service-image img {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    margin: 0 auto;
    transition: all .5s ease;
}
.fs-service-card:hover img {
    transform: scale(1.1);
}
.fs-service-image:before {
    position: absolute;
    content: '';
    border: 10px solid #ffffff4d;
    z-index: 1;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    left: 0;
    margin: 0 auto;
    right: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.fs-service-card:hover .fs-service-image:before {
    border-color: #ffffff80;
}
/*.fs-service-card:hover .fs-service-image img {
    transform: scale(1.1);
}*/
.ser-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    margin-top: 30px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-primary);
    right: -10px;
    top: 0;
    z-index: 2;
    transition: all .4s ease;
}
.ser-icon svg {
    width: 30px;
}
.fs-service-card:hover .ser-icon {
    background-color: var(--e-global-color-secondary);
}
.fs-service-card:hover .ser-icon svg path {
    fill: #fff;
}
.ser-cont {
    padding: 20px 20px 10px 0px;
}
.fs-services-wrapper.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}
.fs-grid-item {
    width: 25%;
    padding: 0px 15px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.fs-grid-item {
    width: 50%;
}
}
@media only screen and (max-width: 575px) {
.fs-grid-item {
    width: 100%;
}
}

