/* First Banner */
.banner div form .row {
    width: 100%;
}

.banner div {
    margin: 0 auto;
}

.banner h3 {
    font-size: 62px;
    font-weight: 700;
}

.banner p {
    font-size: 22px;
    margin-bottom: 60px;
}

.banner {
    padding: 100px;
    color: #ffffff;
    text-align: center;
    background-image: url(Assets/Images/bg-testimonial-min_1920x.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Center the background image horizontally and vertically */
}

.custom-dropdown select {
    background: linear-gradient(135deg, #222222 0%, #222222 50%, #dd3d27 51%, #dd3d27 71%, #dd3d27 100%);
    color: #fff;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    height: 50px;
}

.custom-dropdown select:focus {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #dd3d27;
    color: #fff;

}



.custom-dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    position: relative;
    left: 100%;
    margin-left: -25px;
    bottom: -30px;
    display: block;
}

.form-control {
    font-size: 12px;
}

.custom-button {
    background: linear-gradient(135deg, #222222 0%, #222222 50%, #dd3d27 51%, #dd3d27 71%, #dd3d27 100%);
    color: #fff;
    border: #dd3d27 1px solid;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    height: 50px;
    margin-top: 7px;
}

.custom-button:hover {
    background-color: #0056b3;
}


/* Feature List */
.text-icon {
    display: flex;
    align-items: start;
    padding: 20px 0;
}


/* Add circle */
.text-icon::after {
    content: '';
    width: 70px;
    height: 70px;
    position: absolute;
    background-color: #ececec;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 0;
}

.text-icon img {
    height: 40px;
    margin: 15px;
    overflow: visible;
    margin-right: 25px;
    z-index: 1;
    /* Space between image and text */
}

.container .text {
    text-align: left;
}

.container .text p {
    font-size: 10px;
    color: #6f6f6f !important;
}


.container .text h4 {
    margin: 0;
    /* Remove margin for the title */
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 600;
}


/* BANNER 2 IMAGES & BANNER 3 IMAGES*/
.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}

.column {
    border-radius: 5px;
    flex-basis: 50%;
    /* Adjust this width as needed */
    box-sizing: border-box;
    /* Include padding in the column width */
    overflow: hidden;
}

.column+.column {
    margin-left: 30px;
    /* Add a gap between columns */
}



.section img {
    max-width: 100%;
    height: auto;
    transition: .3s;
}

.section img:hover {
    transform: scale(1.05);
}


/* TOP CATEGORIES */
.gallery {
    /* Gap between items */
    padding: 20px 0 40px 0;
    /* Add padding to the entire gallery section */
}

.gallery-item {
    background-color: #ffffff;
    /* Background color for gallery items */
    padding: 20px;
    /* Padding around each item */
    text-align: center;
    border-radius: 5px;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Add a subtle box shadow for a cleaner look */
}

.gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery-item h3 {
    margin-top: 10px;
    /* Margin between image and title */
    font-size: 16px;
    /* Adjust title font size as needed */
}


/* DEALS OF THE DAY*/

/*
.product-list-container, 
.feature-list-container {    
    display: flex;
    flex-wrap: wrap;
}

*/

.product-list-container {
    background: #fff;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin: 0 0 30px 0;
}

.feature-list-container {
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.feature-list-container .product-card {
    border: none;
}

.product-list-container .product-card + .product-list-container .product-card {
    border-left: 1px solid #ccc;
}

.product-card {
    /* 
    width: 20%;
    
    box-sizing: border-box;
    Adjusted to create a 5-column layout */
    background: #fff;
    transition: 0.2s;
    border-radius: 1px;
    overflow: hidden;
}

.product-card .product-card_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    visibility: collapse;
    flex-direction: column;
    background: #fff;
}


.product-card .overlay-lower {
    width: 100%;
    height: 50%;
    transition: 0.4s ease;
    display: flex;
    gap: 2;
    justify-content: end;
    text-align: bottom;
    flex-direction: column;
    transform: translateY(50%);
}

.product-card .overlay-lower .btn {
    background-color: rgb(255, 255, 255);
    color: #222222;
    border: 1px solid #222222;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.product-card .overlay-lower .btn:hover {
    background-color: #dd3d27;
    color: #fff;
    border: 1px solid transparent;
}


.product-card .overlay-upper {
    width: 100%;
    height: 50%;
    transition: 0.4s ease;
    display: flex;
    gap: 2;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    transform: translateY(-50%);
}

.product-card .product-card_overlay {
    opacity: 0;
    transition: 0.4s ease;
}

.product-card:hover .product-card_overlay {
    opacity: 1;
    visibility: visible;
}



.product-card .product-card_overlay span {
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.3s ease;
    cursor: pointer;
}


.product-card:hover .overlay-upper,
.product-card:hover .overlay-lower {
    transform: translateY(0);
}

.product-card .product-card_overlay span object {
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
}

.product-card:hover .product-card_overlay {
    opacity: 1;
    background: #fff;
}

.feature-list-container .product-card {
    /* width: 18%; */
    border-radius: 5px;
    border: 1px solid #e4e4e4;
}

.product-card-img img {
    overflow: hidden;
    border-radius: 5px;
}

.product-card:hover {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
    border-radius: 5px;
}

.product-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 1px;
}

.product-title {
    font-size: 14px;
    margin: 0;
    color: #999;
}

.product-description {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(206.7, 100%, 30%);
}

.product-price {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 20px;
}

/*FEATURE BRANDS*/
.feature-brands {
    padding: 20px 0 50px 0;
}

.our-clients {
    justify-content: center;
}

.our-clients img {
    padding: 10px;
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: 0.15s ease;
}

.our-clients img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}



/*NEWSLETTER*/
.newsletter-banner {
    background-image: url('Assets/Images/newsletter-bg2_1400x.png');
    /* Replace with your banner image URL */
    background-size: cover;
    background-position: left;
    color: #fff;
    text-align: center;
    height: 300px;
    margin: 50px 0;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-content {
    margin-left: 30px;
    margin-bottom: 20px;
    justify-content: start;
}

.newsletter-content h2 {
    font-size: 36px;
    text-align: start;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    height: 40px;
    overflow: hidden;
    width: 500px;
    border-radius: 20px;
}

.newsletter-form input[type="email"] {
    padding: 10px 20px;
    border: none;
    height: 40px;
    width: 100%;
    font-size: 16px;
}

.newsletter-form button {
    background-color: #dd3d27;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}


/* CLIENT REVIEW */
.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 40px 0;
}

.testimonial {
    flex-basis: calc(33.33% - 20px);
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
}

.testimonial img {
    max-width: 100px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: block;
}

.testimonial p {
    font-size: 16px;
    margin: 10px 0;
}

.testimonial h3 {
    font-size: 18px;
    color: #333;
}

.testimonial svg {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.rating {
    font-size: 25px;
    margin: 10px 0;
    color: yellow;
}

/* BLOG POST */
body,
h1,
p {
    margin: 0;
    padding: 0;
}

.blog-posts {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0 -5px;
}

.post-link {
    text-decoration: none;
    flex: 1;
}



.post {
    background-color: #000000;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.3s ease;
    color: #fff;
    height: 175px;
    overflow: hidden;
    position: relative;

}


.post time {
    position: relative;
    font-size: 14px;
    color: #ffc371;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    z-index: 1;
}

.post h3 {
    position: relative;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    z-index: 1;
}


.post-link .post img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    opacity: 0.6;
}

.post-link:hover .post img {
    opacity: 0.3;
}


/* FEATURE LIST */
.feature-container {
    padding: 20px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature {
    flex-basis: calc(20% - 20px);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.feature i {
    font-size: 36px;
    color: #007BFF;
    margin-right: 10px;
}

.feature h6 {
    font-size: .75rem;
    margin: 0;
    color: #333;
}


.feature-container {
    margin: 0 auto;
    width: 1350px;
}




@media (max-width: 1400px) {
    .feature-container {
        width: 1150px !important;
    }

    .product-card-img {
        visibility: collapse;
    }

    .product-card {
        margin: 20px auto;
    }

}

@media (max-width: 1200px) {
    .feature-container {
        width: 850px !important;
    }
}




@media (max-width: 990px) {
    .feature-container {
        width: 100% !important;
        padding: 10px 25px;
    }

    .newsletter-banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .newsletter-content {
        margin: 0;
    }
    .newsletter-content h2 {
        text-align: center;
        font-size: 26px;
    }

    .newsletter-form {
        width: auto;
        margin: 20px;
    }

    .testimonial.tst1,
    .testimonial.tst2,
    .post-link.pst1,
    .post-link.pst2 {
        display: none;
        visibility: collapse;
        position: absolute;
    }

    .testimonial {
        flex-basis: 100%;
    }

}