

/* filterImage Gallery styles */

@import url('https://fonts.googleapis.com/css?family=Tangerine');

*{
font-family:'Courier New', Courier, monospace;
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: 700;

}
/*  resoponsive font */
/* p{
font-size:5vw;
} */

.container{
max-width: 1200px;
margin: 0 auto;
padding: 10px;
text-align: center;
}
/*  */
.carousel-inner {
height: 200px;
}

.itemcarousel-item  img {
position: absolute;
object-fit:cover;
top: 0;
left: 0;
min-height: 500px;
}
/* min-height: 300px; */

section{
padding: 10px;
/* width: 1250px; */
margin: 10px auto;
}

section ul{
display: flex;
margin-bottom: 4px;
line-height: 5px;
}
section ul li{
list-style: none;
background: #eee;
padding: 15px 10px;
margin: 5px; 
letter-spacing: 2px;
cursor: pointer;
}
section ul li.active{
background: #1856da;
color: aliceblue;
}

.items{
display:flex;
flex-wrap: wrap;
margin: 0 15px;
}
.items .itemCard{
position: relative;
width: 200px;
height: 300px;
margin: 5px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -10px 0px inset;
border-radius: 5px;
}

.mainContainer {
display: flex;
flex-direction: row;
max-width: 1250px;
margin: 0 auto;
padding: 10px;
text-align: center;

}

.itemsContainer {
/* width: 100%; */
color: rgb(28, 169, 204);
background-color: rgb(255, 255, 255);
}

.card-title{
font-weight: 700;
color: rgb(138, 10, 127);
}
.card-text{
color:rgb(100, 200, 237);
}

.card:hover {
box-shadow: 0 30px 40px 0 rgba(3, 227, 252, 0.2);
transform: scale(1.2);
}

img{
width: 100%;
height: auto;
}
/* Ads' Card */
.itemCard {
  width: 100%;
  max-width: 250px; 
  margin: 10px;
}

.itemCard img {
  width: 100%;
  height: 150px; /* Set your desired height for the images */
  object-fit: cover; /* Maintain aspect ratio and cover the container */
  border-radius: 5px;
}

.original-price {
  text-decoration: line-through;
  color: #969494;
}

.card-body {
  text-align: center;
}

/* Carousel styles */
.carousel-inner {
  height: 300px;
}

.carousel-inner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.carousel-caption h5 {
  color: #ffffff;
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators li {
  background-color: #eee7e8;
}

.carousel-indicators .active {
  background-color: #f30751;
}

/* For mobile phones: */
@media only screen and (max-width: 600px) {
  .mainContainer {
    flex-direction:column ;
    }

.mainContainer {
flex-direction:column ;
/* display: inline-block; */
}

.carousel-item img{
  width: 100%;
  height:300px;
  width: 300px;
  }

@media only screen and (max-width: 600px) {
img{
height: 100%;
}
.cat{
flex-direction: row;
width:100%;
}
.cat ul{
line-height: 0;
padding: 0;
margin: 0;
font-size: 13px;
}
}

/* Pagination *//* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center; /* Center vertically */
  position: fixed;
  bottom: 50px; /* Adjust to your desired distance above the footer */
  left: 0;
  width: 100%;
  background-color: #fff; /* Add background color for visibility */
  box-shadow: 0px -5px 10px rgba(7, 7, 7, 0.3); /* Optional: Add a subtle shadow */
  z-index: 1000; /* Set a high z-index to ensure it's above other elements */
}

/* Smaller button style */
#paginationContainer {
  display: flex;
  justify-content: center;
  align-items: center; /* Center vertically */
  margin-bottom: 20px; /* Adjust to your desired margin above the footer */
}

.page-item {
  list-style: none;
  margin: 0 5px;
}

.page-link {
  padding: 5px 10px; /* Adjust to your desired padding */
  font-size: 12px; /* Adjust to your desired font size */
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.page-link:hover {
  background-color: #ddd;
}

.page-link.active {
  background-color: #067029;
  color: #fff;
  border: 1px solid #05795e;
}
/* end of pagination */




 /* Styling for the "Go to Top" button */
 #goToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    background-color: transparent 8px;
    color: #06656d;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size:12px;
}

/*Blinking Background */
   
        @keyframes blink {
            0% {color: rgb(186, 186, 7); }
            50% { color: rgb(193, 13, 13); }
            100% { color: rgb(186, 186, 7); }
        }

        .blinking-text {
            animation: blink 1s infinite;
        }