* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.slideshow-container {
    max-width: 1500px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;

}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Introduction  */
.introduction {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    text-align: center;
    margin-bottom: 50px;
}

.intro-content h1 {
    font-size: 50px;
    color: rgb(179, 226, 131);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    max-width: 900px;
    margin: 0 auto;
}

.features {
    margin-top: 50px;
}

.features h2 {
    text-align: center;
    font-size: 40px;
    color: rgb(179, 226, 131);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: black;
    font-size: 19px;
    margin-bottom: 10px;
}

.feature-item p {
    color: black;
    line-height: 1.5;
    font-size: 15px;
}



/* breadcrumb bar */
.category {
    background-color: rgb(232, 248, 216);
    padding: 12px 0;
}

.category .breadcrum {
    display: block;
    padding: 10px 200px;
}

.category-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.category-top p {
    margin: 0;
    padding: 0 10px;
}

.category-top a {
    color: #498ce2;
}

.category-top span {
    color: #1a4278;
    opacity: 0.7;
    font-weight: bold;
}

.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}


/* login form */




/* Responsive */
@media (max-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .side-bar {
        order: 1;
    }

    .product-area {
        order: 2;
    }
}


