.isotope-nav {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.isotope-nav .item {
  border: 1px solid #000;
  display: block;
  text-align: center;
  padding: 7px 7px 5px 7px;
  font-weight: 300;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
  width: 15.7777%;
}

.isotope-nav .item:hover,
.isotope-nav .item.active {
  background: #000;
  color: #fff;
}

.isotope-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.isotope-nav select {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #1980da;
  color: #1980da;
  /* display: block; */
  /* margin: 0 auto; */
  outline: none;
  background-image: url('../../images/icons/select-icon-blue.svg');
  background-repeat: no-repeat;
  background-position: right;
}

.isotope-items .item {
  width: 33.3333%;
  padding: 5px;
  margin-bottom: 20px;
}

.isotope-items .item .thumb {
  border: 1px solid #e3e3e3;
  padding: 10px 10px 3px 10px;
}

.isotope-items .item .thumb img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 440px;
  object-fit: cover;
}

.isotope-items .item .more {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  max-width: 156px;
  width: 100%;
  text-align: center;
  font-size: 13px !important;
  margin: 0 auto;
  display: block;
  height: 43px;
  text-transform: uppercase;
  line-height: 46px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 20px;
}

@media only screen and (max-width: 1024px) {
  .isotope-nav .item {
    width: 32%;
    margin-bottom: 12px;
  }

  .isotope-items .item {
    width: 49.6666%;
  }
  
  .isotope-items .item .thumb img {
    min-height: 275px;
  }
}

@media only screen and (max-width: 480px) {
  .isotope-nav .item {
    width: 49%;
  }

  .isotope-items .item {
    width: 100%;
    padding: 0;
            position: relative !important;
        top: 0 !important;
        margin-bottom: 40px !important;
  }
    
}