


.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
}



.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}



#home {
    margin-bottom: 6rem;
    background: url(../img-product_property/bg-header.png) left top no-repeat;
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}



.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img-product_property/bg-icon.png) center center no-repeat;
    background-size: cover;
}

.service-item .servicecontent{
    font-size: 12px;
}




        .service-item {
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid transparent;
            border-radius: linear-gradient(45deg, blue, green);
            background-origin: border-box;
            background-clip: content-box, border-box;
            z-index: 1;
            transition: transform 0.5s ease;
        }

    

        .service-item .servicecontent {
            position: relative;
            z-index: 2;
        }

        .service-item .servicecontent span {
            display: block;
            padding: 2px;
            background-color: white;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .service-item:hover .servicecontent span {
            background-color: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }
  