#header-section {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* .home-top-screen-slideshow-section::before{
    content: '';
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(50% 60%, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 0);
    z-index: +2;
}

.home-top-screen-slideshow-section::after{
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--color-red-light);
    clip-path: polygon(50% 80%, 100% 42%, 100% 42%, 50% 100%, 0 42%, 0 42%);
    z-index: +2;
} */

.home-top-screen-slideshow-item {
    height: 500px;
}

.home-top-screen-slideshow-pagination {
    width: fit-content !important;
    height: fit-content !important;
    z-index: 2;
}

.swiper-pagination-bullet {
    background: var(--color-black);
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-red-light);
    width: 30px;
    border-radius: 20px;
}

.how-to-order-section::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 77%;
    height: 75%;
    background: var(--color-red-light);
    border-radius: 5px;
    z-index: -1;
}

.how-to-order-text-wrap,
.why-us-text-wrap {
    overflow-y: auto;
    /* max-width: 600px; */
}

.how-to-order-text,
.why-us-text {
    list-style: none;
}

.how-to-order-text li {
    height: 60px;
}

.home-products-price-table {
    border: 2px solid var(--color-black);
}

.why-us-section-item {
    height: 350px;
    cursor: pointer;
    overflow: hidden;
}

.why-us-section-item-content-wrap {
    bottom: -75%;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

.why-us-section-item-content-wrap p {
    display: inline;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    background: var(--color-red);
    transition: all 0.5s;
}

.why-us-section-item:hover .why-us-section-item-content-wrap {
    bottom: 0;
    background: #262626a6;
}

.why-us-section-item:hover .why-us-section-item-content-wrap p {
    color: white;
}

.subscribe-to-newsletter-input {
    width: 25%;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal-btn:hover {
    color: #ccc;
}


@media screen and (max-width: 992px) {
    .home-top-screen-slideshow-item {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    #header-section {
        top: 0;
    }

    .home-top-screen-slideshow-item {
        height: 250px;
    }

    .how-to-order-section,
    .why-us-section {
        height: auto;
    }

    .why-us-text-wrap {
        max-width: 620px;
    }

    .subscribe-to-newsletter-input {
        width: 75% !important;
    }
}

@media screen and (max-width: 500px) {
    .home-top-screen-slideshow-item {
        height: 170px;
    }

    .home-top-screen-slideshow-pagination {
        bottom: -60px !important;
    }
}