.thumbnail-unit-img {
    display: flex;
    text-align: center;
    position: relative;
    border-radius: 20px;
    img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    &:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 50%);
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 20px;
    }
}
.intro-unit {
    .popup-trigger {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        max-height: clamp(170px, 35vw, 602px);
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        &:before {
            content: "";
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 50%);
            position: absolute;
            top: 0;
            right: 0;
            border-radius: 20px;
        }
    }
    .video-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        padding-top: 80px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        .video-content {
            margin: auto;
            width: 80%;
            max-width: 800px;
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            .close-modal {
                position: absolute;
                right: 50%;
                top: -54px;
                font-size: 32px;
                color: #fff;
                cursor: pointer;
                transform: translateX(50%);
                border-radius: 50%;
                border: 1px solid;
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.4s;
                &:hover {
                    color: var(--danger);
                }
            }
        }
        video {
            width: 100%;
            border-radius: 20px;
        }
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.counter-unit {
    position: relative;
    margin-block: 32px 12px;
    .number-item {
        border-radius: 20px;
        background: white;
        box-shadow: 0px 6px 20px -4px #0000001A;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: clamp(28px, 3vw, 40px);
        margin-bottom: 20px;
        .item-number {
            font-size: 32px;
            color: var(--color2);
            font-family: var(--SemiBold);
            line-height: 54px;
            &:after {
                content: "+";
            }
        }
        p {
            font-size: 18px;
            font-family: var(--Regular);
        }
    }
}
@media only screen and (min-width: 992px) {
    .counter-unit {
        margin-top: -82px;
    }
}