/* banner section */
.banner-section {
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 128, 36, 0.2);
    z-index: 1;
}

/* .banner-title {
    width: max-content;
    color: #ffffff;
    background-image: url(/static/images/bg-1-1.png);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 90px;
    font-weight: 900 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-end;
    z-index: 2;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    animation: animate 60s linear infinite;
}

.banner-title .highlight {
    color: #ffffff;
    background-image: url(/static/images/bg-1-1.png);
    background-size: cover;
    background-clip: text;
    animation: animate 60s linear infinite;
    letter-spacing: 1px;
}

@keyframes animate {
    0% {
        background-position-x: -500px;
    }
}

.banner-title .big-txt {
    font-size: 140px;
    line-height: 1;
    display: inline-flex;
    align-items: flex-end;
} */

/* product features section */
.product-feature-icon {
    width: 100%;
    height: 140px;
}

.product-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-feature-card:hover .product-feature-icon {
    animation: bounce 1.2s ease-in-out forwards;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px) scale(1.1);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1400px) {

    .product-feature-icon {
        width: 60%;
        height: auto;
    }

    
    .banner-section {
        height: 150px !important;
    }
}