.hotspot_image_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .hotspot_image_container {
    width: 100%;
    gap: 0;
    flex-direction: column;
  }
}
.hotspot_image_container .hotspot_img {
  width: 50%;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  position: relative;
  transform: scale(0.9);
}
@media (max-width: 992px) {
  .hotspot_image_container .hotspot_img {
    width: 100%;
  }
}
.hotspot_image_container .hotspot_img .hotspots {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 2;
}
.hotspot_image_container .hotspot_img .hotspots ul {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.hotspot_image_container .hotspot_img .hotspots ul li {
  position: absolute;
  list-style-type: none;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid black;
  border-radius: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hotspot_image_container .hotspot_img .hotspots ul li:hover {
  cursor: pointer;
}
.hotspot_image_container .hotspot_img .hotspot_image {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0px 24px 24px rgba(0, 0, 0, 0.2470588235));
}
.hotspot_image_container .hotspot_img .hotspot_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotspot_image_container .hotspot_text_container {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 992px) {
  .hotspot_image_container .hotspot_text_container {
    width: 100%;
  }
}
.hotspot_image_container .hotspot_text_container:after {
  height: 110%;
  right: 0;
  top: -5%;
  width: 150%;
  position: absolute;
  content: "";
  z-index: -2;
  background: var(--e-global-color-accent);
  border-radius: 24px;
}
@media (max-width: 992px) {
  .hotspot_image_container .hotspot_text_container:after {
    display: none;
  }
}
.hotspot_image_container .hotspot_text_container h3 {
  color: var(--e-global-color-primary);
}
.hotspot_image_container .hotspot_text_container ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 12px;
  padding: 0;
}
.hotspot_image_container .hotspot_text_container ul li.hotspot {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid black;
  font-size: 20px;
}
.hotspot_image_container .hotspot_text_container ul li.hotspot span.number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  background: white;
  border-radius: 100px;
  font-size: 16px;
}/*# sourceMappingURL=technology_hotspots.css.map */