.map__inner {
  position: relative;
}

.map__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.map__list {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.map__location {
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  z-index: 1;
}

.map__location.map__location-project {
  opacity: 1;
}

.map__location.visible {
  opacity: 1;
}

.map__location:hover {
  z-index: 2;
}

.map__location:hover .map__location-list {
  opacity: 1;
  pointer-events: initial;
}

.map__dot {
  width: 34px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.map__location-list {
  position: absolute;
  left: 100%;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;

  width: max-content;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  padding-bottom: 2px;

  margin: 0;
  list-style: none;
  backdrop-filter: blur(7px);
  box-shadow: 0px 0px 10px 2px rgb(34 60 80 / 20%);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.map__location-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% + 15px);
  height: 2px;
  background-color: #fad84c;
}

.map__location-item {
  position: relative;
  box-sizing: border-box;
}

.map__location-link {
  display: flex;
  flex-direction: column;
  width: 225px;
  padding: 10px;
  text-decoration: none;
}

.map__location-link:hover {
  text-decoration: none;
}

.map__location-img {
  margin-bottom: 10px;
  height: 78px;
  width: 100%;
  object-fit: cover;
}

.map__location-suptitle {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #3d4d82;
  margin-bottom: 2px;
}

.map__location-title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #373a3c;
}

@media (max-width: 600px) {
  .map {
    display: none;
  }
}