/* Views/www_webpack/pages/3d_tour/3d_tour.css */
#virtualTour {
  padding: 20px clamp(20px, 5vw, 10vw);
}
#virtualTour h2 {
  margin: 20px 0;
  font-weight: normal;
  text-transform: uppercase;
}
.container {
  width: 100%;
  height: 600px;
}
img {
    max-inline-size: 100%;
    block-size: auto;
    aspect-ratio: 3/1;
    border-radius: 10px;
    border: 3px solid transparent;
}
img:hover {
    border-color: green; /* Цвет рамки */
    border-radius: 10px;
}
