.kv {
  width: 100vw;
  height: 100vh;
  background-color: #426d8f;
}
.kv .map  img{
  height: 90vh;
  object-fit: contain;
}

.map .point{
  position: absolute;
  color: #fff;
  display: none;
}
.kv .point {
  position: absolute;
}
.kv .point:hover .items {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: all;
}
.kv .point:nth-child(3) .city,
.kv .point:nth-child(5) .city,
.kv .point:nth-child(13) .city {
  left: -60px;
}
.kv .point:last-child .items {
  width: 600px;
}
.page-partners
  .st-mainbody
  .doc-body
  .map-points
  .point:last-child
  .items
  .card {
  flex: 0 0 10%;
}
.page-partners
  .st-mainbody
  .doc-body
  .map-points
  .point:last-child
  .items
  .card:nth-child(4n) {
  margin-right: 4%;
}
.page-partners
  .st-mainbody
  .doc-body
  .map-points
  .point:last-child
  .items
  .card:nth-child(7n) {
  margin-right: 0;
}
.kv .point .dot {
  position: absolute;
  top: 50%;
  left: -10px;
  z-index: 1;
  transform: translate(-50%, -50%);
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  cursor: pointer;
}
.kv .point .dot .ripple {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: inset #fff 0 0 2px;
  animation: ripple 2s ease-out 0.1s infinite;
}
.kv .point .city {
  position: absolute;
  top: -35px;
  left: 15px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
}
.kv .point .items {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 400px;
  padding: 10px 10px 0 10px;
  border-radius: 4px;
  background: #1d5a85;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.3s;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.kv .point .items:before {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 15px;
  height: 15px;
  background: #1d5a85;
  border-radius: 2px;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}
.kv .point .items .card {
  flex: 0 0 22%;
  margin-right: 4%;
  margin-bottom: 10px;
}
.page-partners
  .st-mainbody
  .doc-body
  .map-points
  .point
  .items
  .card:nth-child(4n) {
  margin-right: 0;
}
.page-partners
  .st-mainbody
  .doc-body
  .map-points
  .point
  .items
  .card
  .thumb
  img {
  width: 100%;
  max-width: 100%;
  max-height: none;
}