.vc-hotspot-image {
  display: flex;
  gap: 100px;
  align-items: center;
  padding-top: 40px;
}

.hotspot-image-wrap {
  position: relative;
}

.hotspot-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hotspot circles */
.hotspot-point {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--hotspot-color, #000);
  color: #fff;
  font-weight: 700;
}

.hotspot-point span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* Right content */
.hotspot-right {
  border: 3px solid #FFC62B;
  border-radius: 10px;
  flex-basis: 80%;
}

.hotspot-content-wrap h3 {
  margin-top: 0;
}

.hotspot-text {
  font-size: 15px;
  line-height: 21px;
}


.hotspot-content-text {
  padding: 24px;
}


/* Right content layout */
.hotspot-content-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 24px;
  align-items: stretch;
}

/*.hotspot-content-image  {
  height: -webkit-fill-available;
}*/

.hotspot-content-image img {
  width: 100%;
  display: block;
  border-radius: 7px;
  height: 100%;
  object-fit: cover;
  border-radius: 7px 0px 0px 7px;
}

/* Category title */
.hotspot-category {
  font-size: 18px;
  color: #FFC62B;
  text-transform: uppercase;
  font-weight: 700;
}

.hotspot-content-text h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 8px;
  padding-top:0px;

}

@media (max-width: 600px) {

.vc-hotspot-image {
  flex-direction: column;
}

.hotspot-content-layout {
  display: flex;
  flex-direction: column;
}

.hotspot-content-image {
  width: 100%;
}

.hotspot-content-image img {
  border-radius: 7px 7px 0px 0px;
}

}