.mf-about {
    position: relative;
    background: #ffffff;
}

.mf-about::before,
.mf-about::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 0;

    background:
        linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%),
        repeating-linear-gradient(to right,
            #eeeeee 0px,
            #eeeeee 3px,
            transparent 2px,
            transparent 50px);
}

.mf-about::before {
    top: 0;
}

.mf-about::after {
    bottom: 0;
    background:
        linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%),
        repeating-linear-gradient(to right,
            #eeeeee 0px,
            #eeeeee 3px,
            transparent 2px,
            transparent 50px);
}

.mf-about .mfa-title {
    margin-bottom: 40px;
    margin-top: 20px;
}

/* .mf-about .mfa-title span {
    color: #61030F;
    font-weight: 700;
    font-size: 16px;
} */

.mf-about .mfa-content-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mf-about .mfa-icon {
    width: 46px;
    height: 46px;
    background: #61030F;
    color: #fff;
    text-align: center;
    line-height: 46px;
    border-radius: 8px;
    float: left;
    font-size: 24px;
    margin-top: 12px;
}

.mf-about .mfa-content {
    margin-left: 70px;
}

/* .mf-about .mfa-content h4 {
    font-size: 16px;
} */


.mf-about .mfa-image-wrapper {
    position: relative;
    z-index: 1;
}

.mf-about .mf-main-image {
    width: 100%;
}

.mf-about .mf-mini-image {
    position: relative;
    width: 50%;
    margin-top: -100px;
    margin-left: 50px;
    animation: none;
    border: 4px solid #ffffff;
}

.mf-about .mfa-content-wrapper .mf-btn {
    width: fit-content;
    padding: 8px 40px;
}

@media (min-width: 992px) {
    .mf-about .mfa-title {
        margin-top: 0;
    }

    .mf-about .mf-mini-image {
        position: absolute;
        width: 50%;
        bottom: -22%;
        animation: miniHorizontal 5s ease-in-out infinite alternate;
    }
    .mf-about .mfa-content-wrapper .mf-btn {
        width: fit-content;
        padding: 20px 40px;
    }
}

@keyframes miniHorizontal {
    0% {
        left: 0;
    }

    100% {
        left: 30%;
    }
}