/* Start Product-Section */
#product-section {
    padding-bottom: 7rem;
}

#product-section .product-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#product-section .product-box .product-box-img {
    position: relative;
    cursor: pointer;
    transition: opacity 0.2s;
}

#product-section .product-box .product-box-img:hover {
    opacity: 0.8;
}

#product-section .product-box .product-box-img::after {
    content: '';
    position: absolute;
    background: #dce5e4;
    border-radius: 21px;
    width: 100px;
    height: 100px;
    z-index: -1;
    /* Teqniq Hero image to center :D */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#product-section .product-box .product-box-img img {
    width: 120px;
    height: auto;
}


#product-section .product-box-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#product-section .product-box-content h5 {
    color: #2f2f2f;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

#product-section .product-box-content p {
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: 14px;
}

#product-section .product-box-content a {
    width: fit-content;
    font-size: 14px;
    color: #2f2f2f;
    transition: opacity 0.2s;
}

#product-section .product-box-content a:hover {
    opacity: 0.5;
}

/* End Product-Section */