/*=== .upstudy-service ==*/

.upstudy-service {
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s linear;
    background-color: #fff;
}
.upstudy-service.lift-top-hover:hover {
    transform: translateY(-5px) translate3d(0, -5px, 0);
}
.upstudy-service .service-img {
    margin-bottom: 30px;
    width: -webkit-fill-available;
    transition: all 0.3s linear;
}
.upstudy-service .service-content .service-title {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 20px;
}
.upstudy-service .service-content .description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.upstudy-service .service-content .read-more {
    margin-top: 20px;
    font-size: 16px;
}
.upstudy-service .service-content .read-more i {
    vertical-align: middle;
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: var(--upstudy-primary-color);
    border-radius: 100%;
    margin-right: 5px;
    color: #fff;
    transition: all 0.3s linear;
}
.upstudy-service:hover .service-content .read-more i {
    transform: rotate(90deg);
}