.handle {
  display: none;
}

.handle {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 35px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
}
nav {
  max-width: 1280px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  list-style-type: none;
  display: flex;
}
nav ul li {
  padding: 10px;
  text-align: center;
}

nav ul li a {
  padding: 5px;
}

nav ul li a:hover {
  border-bottom: 4px solid var(--secondary-color);
}

.logo img {
  max-width: 150px;
}
@media (min-width: 768px) {
  nav ul li:last-child {
    display: block;
  }
  nav ul li:last-child .phone {
    display: block !important;
  }
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  /* nav ul li:last-child {
    display: none;
  } */
  .phone {
    display: none;
  }
  nav ul {
    display: none;
    transition: 0.3s;
    width: 100%;
    background-color: var(--section-bg-grey);
  }
  .show,
  .handle {
    display: block;
  }
}

/* location page styles */

section#marketplace-listing {
  background-color: var(--section-bg-grey);
}
.marketplace-category {
  padding: 20px 0;
}
.marketplace-category-header {
  margin-bottom: 10px;
  background-color: var(--brand-color);
  padding: 10px 20px;
  border-radius: 5px;
}
.marketplace-title {
  color: #fff;
}
.marketplaces {
  padding: 20px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}
.marketplace {
  flex: 1;
  /* max-width: 240px; */
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.3s;
}
.marketplace:hover {
  border-color: var(--brand-color);
}
.marketplace-card {
  padding: 20px;
  display: flex;
}
.marketplace-image {
  border: 1px solid #e3e3e3;
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.marketplace-logo {
  /* width: 100%; */
  max-width: 78px;
  height: auto;
  border-radius: 5px;
}
.marketplace-details {
  padding-left: 20px;
}
.marketplace-name {
  font-size: 18px;
  margin-bottom: 10px;
}
.marketplace-address {
  font-size: 14px;
}
