.banner {
    background-color: var(--blue);
    padding: 100px 0 200px 0;
}
.banner .breadcrumb {
    justify-content: center;
}
.banner .title {
    font-size: 55px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 50px;
    font-family: var(--main-font);
}
.banner .description {
    font-size: 16px;
    line-height: 30px;
    color: var(--white);
    font-family: var(--secondary-font);
}



.products {
    height: auto; 
    /* padding-bottom: 150px; */
}
.products .single-product {
    margin-top: -80px;
    cursor: pointer;
    margin-bottom: 160px;
}
.products .single-product .box {
    background-color: var(--blue);
    padding: 50px;
    height: 365px;
    position: relative;
}
.products .single-product .product-image {
    width: 100%;
    object-fit: cover;
    height: 330px;
}
.products .single-product .product-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 20px;
}
.products .single-product .product-description {
    color: var(--white);
    font-size: 15px;
    font-family: var(--secondary-font);
    overflow: auto;
    height: 160px;
    scrollbar-width: thin;
    scrollbar-color: #39ABC5 transparent;
    padding-right: 10px;
}
.products .single-product .product-description::-webkit-scrollbar {
    width: 5px;
    scrollbar-width: thin;
}
  
  /* Track */
.products .single-product .product-description::-webkit-scrollbar-track {
    background: transparent;
  }
  
  /* Handle */
.products .single-product .product-description::-webkit-scrollbar-thumb {
    background: #39ABC5;
  }
  
  /* Handle on hover */
.products .single-product .product-description::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

.products .single-product .btn {
    position: absolute;
    bottom: 10px;
    opacity: 0;
    transition: all 0.4s;
}
.products .single-product:hover .btn {
    opacity: 1;
    bottom: 50px;
    transition: all 0.4s;
}







/* Responsive */
@media screen and (max-width: 1600px) {
}

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

@media screen and (max-width: 1366px) {
    .products .single-product .product-image {
        height: 300px;
    }
    .products .single-product .box {
        padding: 35px;
        height: 350px;
    }
}

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

@media screen and (max-width: 1024px) {
    .products .single-product .product-image {
        height: 250px;
    }
    .products .single-product .product-title {
        margin-bottom: 10px;
    }
    .products .single-product .box {
        padding: 25px;
        height: 340px;
    }
    .products .single-product .box .btn {
        width: 245px;
    }
    .products .single-product .btn {
        opacity: 1;
        bottom: 35px;
    }
    .products .single-product:hover .btn {
        opacity: 1;
        bottom: 35px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding: 50px 0 140px 0;
    }
    .products .single-product .box {
        height: 325px;
    }
    .products .single-product .box .btn {
        width: 77%;
    }
    .products .single-product .product-image {
        height: 300px;
    }
}

@media screen and (max-width: 414px) {
    .banner .title {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    .banner .description {
        font-size: 15px;
    }

    .products .single-product {
        margin-bottom: 120px;
    }
    .products .single-product .box {
        padding: 40px;
        height: 340px;
    }
    .products .single-product .box .btn {
        width: 78%;
    }
}

@media screen and (max-width: 375px) {
    .products .single-product .box .btn {
        width: 75%;
    }
}