/*
Theme Name:     Traveler Childtheme
Description:    Traveler Child Theme
Theme URI:      https://travelerwp.com/
Author:         the ShineTheme
Author URI:     http://shinetheme.com
Version:        1.2.3
Template:       traveler
*/
.filter-button-group h4{
    display: flex;

}
.container_filter {
    margin: 0 auto;
    width: 100%;
    display: contents;
}

.contentt {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;

}

.gridd-itemm img {
    width: 100%;
    height: auto;
}
.single-contentt {
    display: inline-block;
    margin: 10px;
    width: calc((100% / 4) - 20px);
    height: 550px;
    position: relative;
    overflow: hidden;
  }
  
  /* .single-contentt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
  
  @media only screen and (max-width: 768px) {
    .single-contentt {
      width: calc((100% / 1) - 10px);
    }
  }
  
  @media only screen and (max-width: 480px) {
    .single-contentt {
      width: calc((100% / 1) - 10px);
    }
  }

/* Style the ul element */
.filters ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
}

/* Style the scrollbar */
.filters ul::-webkit-scrollbar {
  height: 5px;
  background-color: #f5f5f5;
}

.filters ul::-webkit-scrollbar-thumb {
  background-color: #000000;
  height: 5px;
}

/* Style the li elements */
.filters ul li {
  padding: 10px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  font-size: 20px;
}

/* Style the li elements on hover and active */
.filters ul li:hover,
.filters ul li.active {
  border-bottom: 2px solid #000000;
}

/* Add a border to the li element on hover and active */
.filters ul li:hover::after,
.filters ul li.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .filters ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .filters ul li {
    flex: 0 0 5%;
  }
}

.button_load_more {
  display: flex;
  justify-content: center;
  margin-top: 20px;

}

.btn_wrapperr {
  display: flex;

}

.loadmore {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #5191fa;
  border: none;
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* .loadmore:hover {
  background-color: #5191fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.loadmore:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
} */