body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background: ;
  /* overflow: hidden; */
}

a {
  color: #00b7ff;
}

.header-container {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.btn-signup {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  font-weight: 600;
}

.hero {
  background: #111;
  color: #fff;
  padding: 3rem 2rem;
  position: relative;
  clip-path: polygon(0 0, 85% 0, 90% 2rem, 100% 2rem, 100% 100%, 0 100%);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (max-width: 468px) {
  .hero {
    clip-path: polygon(0 0, 60% 0, 70% 2rem, 100% 2rem, 100% 100%, 0 100%);
  }
}

@media (min-width: 768px) {
  .w-md-80 {
    width: 80% !important;
    left: 10% !important;
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat {
  background: #1d1d1d;
  padding: 1rem;
  border-bottom: 1px solid #aaa;
  border-radius: 8px;
  width: 100%;
}

.stat h3 {
  margin-bottom: 0.25rem;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.logo span {
  margin-left: 0.5rem;
}

.bg-black:hover {
  background: #333 !important;
  color: #ccc !important;
}

.review-holder {
  background: #eee;
}

.framed-image {
  position: relative;
  border-radius: 1000px;
}

.framed-image::before,
.framed-image::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #eee;
  z-index: 2;
}

.framed-image::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.framed-image::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.search-holder {
  background: #fff;
  position: relative;
}

.search-input {
  padding-left: 60px !important;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 18px;
}

.review-holder {
  border-radius: 7px;
}

.feat-list div {
  padding: 0.5rem;
  border-radius: 5px;
  border: 0.5px solid #aaa;
  flex: 1;
}

.review-comment {
  padding: 0.5rem;
  border-radius: 5px;
  border: 0.5px solid #aaa;
}

/* new */

.flex-1 {
  flex: 1;
}

.screen-height {
  min-height: 100vh;
}

.review-item {
  box-shadow: -1px 1px 2px -1px #000;
  border: 0.5px solid #ccc;
  border-radius: 5px;
  min-height: 240px !important;
  min-width: 300px !important;
  margin-bottom: 20px;
}

.tag-item {
  background: black;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.full-review {
  display: none;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  margin: 0;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
}

.review-details {
  background: #fff;
  height: 80%;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 20px 20px 0 0;
  overflow: scroll;
}
.item-header {
  border-bottom: 1px solid #eee;
}

.pac-container {
  z-index: 9999 !important;
}
