.lp-ux-animate-up {
    animation-name: lp-ux-fadeInUp;
}

.lp-ux-heading-small {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: calc(1.275rem + 0.3vw);
    line-height: 1.2;
    color: #111;
}

@media (min-width: 1200px) {
    .lp-ux-heading-small {
        font-size: 1.5rem;
    }
}

.lp-ux-img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* GRID */
.lp-ux-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.lp-ux-col {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .lp-ux-col {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .lp-ux-col {
        flex: 0 0 33.3333%;
    }
}

/* BUTTON */
.lp-ux-btn-primary {
    display: inline-block;
    font-weight: 600;
    border: none;
    background-color: #00d084;
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: 10px;
    transition: .5s;
}

.lp-ux-btn-primary:hover {
    background: #222;
    color: #00d084;
}

.lp-ux-btn-pill {
    border-radius: 50rem;
}

/* SERVICE CARD */
.lp-ux-service-card {
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.5s;
}

.lp-ux-service-card:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.lp-ux-service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.lp-ux-service-img img {
    transition: 0.5s;
}

.lp-ux-service-card:hover .lp-ux-service-img img {
    transform: scale(1.2);
}

/* TITLE */
.lp-ux-card-title {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.lp-ux-card-title:hover {
    color: #00a66a;
}

/* Animation */
@keyframes lp-ux-fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/
