/* =============== CUSTOM DATEPICKER =============== */
#ui-datepicker-div {
    width: 32em;
}

/* ================= SECTION FEATURE HOME ================== */
.section-featured {
    margin: 20px auto 40px;
    background-size: contain;
    width: 70%;
}

.section-featured .feature-box {
    position: relative;
    padding: 0 1.5rem;
}

.section-featured .feature-box a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;

    /* background-image: url(../images/img/Images-bg/bottom_right_bg.png); */
    background-position: right 22px;
    background-position: right 22px;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
}

.section-featured .feature-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: var(--white-color);
    border-radius: 10px;
    transform: scale(1) rotate(0deg);
    transition: all .5s;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    border-top: 5px solid rgb(1, 148, 243);
}

.section-featured .feature-box__content {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-featured .feature-box__content--icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
}

.section-featured .feature-box__content--icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-featured .feature-box__content--title span {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    transition: all .5s;
}

.section-featured .feature-box__content--title span.title-mobile {
    display: none;
}

.box-title--1:hover,
.box-title--2:hover,
.box-title--3:hover {
    color: var(--main-color);
}


/*========== MOBILE ==========*/
@media screen and (max-width: 575px) {
    .section-featured .feature-box__content--icon {
        width: 35px;
        height: 35px;
    }
    .img-fluid{
        transform: scale(1.3);
        max-width: 100%;
    }
    .section-featured .feature-box a {
        /*background-image: url(../images/img/Images-bg/bottom_right_bg.png);*/
        /* background-position: bottom right;
        background-repeat: no-repeat;
        background-size: 46%;
        border-radius: 10px; */
        background-position: 58px 36px;
        background-repeat: no-repeat;
        background-size: 55%;
        border-radius: 10px;
    }
}