

section.wrapper-services {
    padding: 50px 0;
}

.wrap-services {
    align-items: unset;
}


.item-service {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 25px;
    height: max-content;
}

.wrap-item-service {
    background: #FFFFFF;
    box-shadow: 0 0.125rem 18px rgb(24 28 50 / 13%);
    border-radius: 4px;
    padding: 30px 20px 30px;
    position: relative;
    transition: all ease 800ms;
    z-index: 1;
    overflow: hidden;
    /* height: 260px; */
    align-items: unset;
}

.wrap-item-service:before {
    position: absolute;
    background: var(--primary-color);
    height: 100%;
    width: 0;
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all ease 600ms;
    transition: all ease 600ms;
    visibility: hidden;
}

.wrap-item-service:after {
    background-image: url(../images/bg/bg-shape.png);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 123px;
    height: 235px;
    background-repeat: no-repeat;
}

.service-icon {
    width: 44px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    font-size: 44px;
    line-height: 1;
    color: var(--primary-color);
}

.service-content {
    /* padding-bottom: 12px; */
    /* width: calc(100% - 64px); */
    font-size: 14px;
    transition: all ease 800ms;
    color: #707070;
}

.service-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    -webkit-transition: all ease 800ms;
    transition: all ease 800ms;
    color: var(--primary-color);
    line-height: 1.2;
    text-align: center;
}

.service-content p {
    /* -webkit-transition: all ease 800ms; */
    /* transition: all ease 800ms; */
    /* color: #707070; */
}
.service-content ul {}

.service-content li {
    font-size: 13px;
    position: relative;
}

.service-content li:before {
    content: "\f061";
    font-family: "FontAwesome";
    margin-right: 5px;
    font-size: 12px;
}

.service-hover-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    visibility: hidden;
    -webkit-transition: all ease 800ms;
    transition: all ease 800ms;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
}

.service-hover-icon i {
    font-size: 23px;
    color: #004a9b;
    padding: 17px 16px;
    border-radius: 10px 0px 8px 0px;
    background: #fff;
    line-height: 13px;
}

.wrap-item-service:hover:before {
    visibility: visible;
    width: 100%;
}

.wrap-item-service:hover p, .wrap-item-service:hover h3, .wrap-item-service:hover li, .wrap-item-service:hover .service-icon {
    color: #fff;
}

.wrap-item-service:hover .service-hover-icon {
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

img.hidden-img, .wrap-item-service:hover .shown-img {
    display: none;
}

.wrap-item-service:hover .hidden-img {
    display: block;
}

.placements .wrap-item-service {
    height: 200px;
