﻿/*======================================
WHY US
======================================*/

.mst-why {
    background: #fff;
}

.mst-why-image {
    position: relative;
}

    .mst-why-image img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

.experience-box {
    position: absolute;
    right: -25px;
    bottom: 40px;
    width: 220px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(245,130,32,.35);
}

    .experience-box h2 {
        color: #fff;
        font-size: 60px;
        margin-bottom: 10px;
    }

    .experience-box span {
        font-weight: 700;
    }

.mst-features {
    margin-top: 45px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    transition: .35s;
}

    .feature-item:hover {
        transform: translateX(10px);
    }

    .feature-item .icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        background: #fff3e8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 28px;
        flex-shrink: 0;
    }

    .feature-item h4 {
        margin-bottom: 8px;
    }

    .feature-item p {
        color: #666;
    }

@media(max-width:992px) {

    .experience-box {
        right: 20px;
        bottom: 20px;
        width: 180px;
        padding: 25px;
    }

        .experience-box h2 {
            font-size: 42px;
        }
}
