.tags {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.our-models {
  padding: 50px 0;
  /* height: 100vh; */
  background-color: #ffeae4;
  position: relative;
}
.ellipse-2 {
  background: #e6c0b5ad;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  right: 60px;
  bottom: 20px;
  filter: blur(6px);
}
.tags h1 {
  font-size: 30px;
  width: 300px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5x;
}
.tags h1::after {
  content: "";
  width: 150px;
  height: 5px;
  display: block;
  background-color: #488bf7;
}

.tag-wrapper {
  width: 100%;
  padding: 10px;
  /* background-color: #488bf7; */
  display: flex;
  justify-content: start;
}
.tags ul {
  --ul-cl: white;
  list-style: none;
  width: 60%;
  padding: 10px 0px;
}
.tags ul li {
  /* display: inline-flex; */
  margin-left: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.tags ul li div.mainContent {
  color: #333;
  border: 1px solid var(--ul-cl);
  padding: 10px 20px;
  border-radius: 50px;
  text-transform: capitalize;
  display: inline-flex;
  gap: 10px;
  font-weight: bold;
}
.tags ul li ul.moreContent {
  display: none;
  position: absolute;
  top: 100px;
  left: 100px;
  padding: 10px;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  border: 1px solid var(--ul-cl);
  padding: 10px 20px;
  border-radius: 50px;
  color: #333;
}
.tags ul li span {
  text-transform: uppercase;
}
.tags ul li div.mainContent:hover,
.tags ul li div.moreContent:hover {
  background-color: #fff;
  color: #488bf7;
}

@media screen and (max-width: 450px) {
  .tags ul {
    width: 100%;
  }
}
