﻿.home-banner-title {
    font-size: 3vw;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 32px;
}

.home-banner-desc {
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

.home-banner-title-extra {
    position: relative;
    overflow: hidden;
    height: 100%;
    /*display: inline-flex;*/
    padding: 0 0;
    margin: 0 0;
    background-color: #00aacc;
    background-color: rgba(0,170,204,.32);
    transition: width ease-in-out 128ms;
    inset: 0
}

.typed-cursor {
    background-color: #00aacc;
    background-color: rgba(0, 170, 204, .32);
    margin: 0 5px;
}

.section-home-about-title {
    font-size: 1.9rem;
    margin-bottom: var(--tts-spacing-2xl);
}

@media (min-width: 48em) {
    .section-home-about-title {
        font-size: 4rem;
    }
}

.section-home-about-title b {
    font-weight: bold;
    color: var(--tts-primary);
}

.section-home-about-desc {
    margin-bottom: var(--tts-spacing-xl);
}


.section-content-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .section-content-block img {
        width: 48px;
        margin: 0 auto;
    }

    .section-content-block blockquote {
        flex: 0 0 100%;
        display: block;
        margin: 40px auto;
        max-width: 980px;
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        padding: 0 16px;
    }

@media (min-width: 48em) {
    .section-content-block blockquote {
        font-size: 2.5rem;
    }
}

.glance .section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

    .glance .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 60px;
        height: 3px;
        background-color: #3498db;
    }

.glance .product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: #ffffff;
}

    .glance .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.glance .product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.glance .product-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.glance .product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.glance .product-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

@media (max-width: 767px) {
    .glance .section-title {
        text-align: center;
    }

        .glance .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
 }
