@use '../utils' as *;

/*=============================
    Why Choose Us 01
===============================*/
.wcu-card {
    .box-icon {
        color: var(--tg-theme-primary);
        margin-bottom: 32px;
        img,i,svg {
            transition: 0.4s;
        }
    }
    .box-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.41666em;
        margin-bottom: 13px;
    }
    .box-text {
        margin-bottom: -0.3em;
    }
    &:hover {
        img,i,svg {
            transform: scale(-1) rotate(180deg);
        }
    }
}
/*=============================
    Why Choose Us 02
===============================*/
.wcu-thumb2-1 {
    display: inline-block;
    mask-size: 100% 100%;
}

/*skill-feature**************/
.skill-feature {
    position: relative;
    &:not(:last-child) {
        margin-bottom: 20px;
    }
    &_title {
        font-size: 16px;
        font-weight: 600;
        font-family: var(--tg-heading-font-family);
        margin-bottom: 0;
        margin-top: 12px;
        color: var(--tg-heading-color);
    } 
    .progress {
        background: var(--tg-border-1);
        border-radius: 3px;
        overflow: visible;
        height: 12px;
        .progress-bar {
            background: var(--tg-theme-primary);
            border-radius: 3px;
            height: 12px;
        }
        .progress-value {
            font-size: 16px;
            font-weight: 600;
            font-family: var(--tg-heading-font-family);
            position: absolute;
            top: 20px;
            right: 0;
            color: var(--tg-heading-color);
        }
    }
}

/*=============================
    Why Choose Us 03
===============================*/
.wcu-thumb3-1 {
    position: relative;
    .img1 {
        border-radius: 15px;
        overflow: hidden;
        img {
            width: 100%;
        }
    }
    .img2 {
        position: absolute;
        left: -130px;
        bottom: 80px;
        box-shadow: 0px 10px 36px 2px rgba(0, 0, 0, 0.12);
        border-radius: 15px;
        border: 10px solid var(--tg-color-white-default);
        overflow: hidden;
        background: var(--tg-color-white-default);
        img {
            border-radius: 10px;
            width: 100%;
        }
    }
    @media #{$xl} {
        .img2 {
            left: -40px;
        }
    }
    @media (max-width: 1200px) {
        .img2 {
            left: 40px;
        }        
    }
    @media #{$xs} {
        .img2 {
            position: relative;
            left: 0;
            bottom: 0;
            animation: none !important;
            border: 0;
            margin-top: 20px;
        }
    }
}