:root {
    --e-box-with-image-green: #2ABB9C;
}
.e-box-with-image-one {
    background: #F8F9FC;
    padding: 35px;
    border-radius: 10px;
}
.e-box-with-image-one .details {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}
.e-box-with-image-one .details .information .info{
    margin-bottom: 15px;
}
.e-box-with-image-one .details .information .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}
.e-box-with-image-one .details .information .info strong{
    font-size: 18px;
    color: var(--e-box-with-image-green);
}
.e-box-with-image-one .details .information .info span{
    font-size: 18px;
}
.e-box-with-image-one .details  img {
    height: 200px;
    min-width: 300px;
    background: #D9D9D9;
    border-radius: 16px;
    overflow: hidden;
    border:none;
}

.e-box-with-image-one > .title{
    font-size: 24px;
    font-weight: 700;
    color: var(--e-box-with-image-green);
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-box-with-image-one {
        padding: 10px;
    }
    .e-box-with-image-one .details {
        flex-direction: column-reverse;
    }
    .e-box-with-image-one .details img{
        width: 100%;
        min-height: 100px;
        height: unset;
        margin-bottom: 15px;
    }
    .e-box-with-image-one .details .information .title {
        font-size: 20px;
    }
    .e-box-with-image-one > .title {
        font-size: 20px;
    }
    .e-box-with-image-one .details .information .info strong {
        font-size: 16px;
    }
    .e-box-with-image-one .details .information .info span {
        font-size: 16px;
    }
}


/* RTL */
/*[dir="rtl"] .e-alert-one .details ul li::before {*/
/*    left: unset;*/
/*    right: -25px;*/
/*}*/
