.post_wrapper.second_style .post-item{
    margin-top: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    position: relative;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, from(var(--dark-purple)), to(var(--dark-blue)));
    background: linear-gradient(90deg, var(--dark-purple) 0%, var(--dark-blue) 100%);
    border: 1px solid #f8f7ff;
}

.post_wrapper.second_style .post-item .post-inner {
    background-color: #f8f7ff;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    padding-bottom: 0;
}

.post_wrapper.second_style .post-item .post-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    z-index: 1;
    color: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    background-color: #3a3a3a;
}

.post_wrapper.second_style .post-item .post-icon > img{
    -webkit-filter: invert(1);
    filter: invert(1);
}

.post_wrapper.second_style .post-item .post-icon > img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 45px;
    height: 45px;
    font-size: 45px;
    line-height: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
}

.post_wrapper.second_style .post-item:hover .post-icon > img {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
}

.post_wrapper.second_style .post-item .post-icon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(var(--dark-purple)), to(var(--dark-blue)));
    background: linear-gradient(90deg, var(--dark-purple) 0%, var(--dark-blue) 100%);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

.post_wrapper.second_style .post-item .post-icon,
.post_wrapper.second_style .post-item .post-icon::after{
    -webkit-mask-image: url('../images/post_icon_shape.png');
    mask-image: url('../images/post_icon_shape.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.post_wrapper.second_style .post-item .post_content{
    padding: 20px;
}

.post_wrapper.second_style .post-item:hover {
    -webkit-box-shadow: 30px 15px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 30px 15px 30px 0px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.post_wrapper.second_style .post-item:hover .post-inner {
    background-color: #ffffff;
}

.post_wrapper.second_style .post-item:hover .post-icon::after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

@media(max-width: 576px){
    .post_wrapper.second_style .man_services_column:first-child .post-item{
        margin-top: 30px;
    }
}