/* стили из svg*/
.cls-1,
.cls-12 {
  fill:#afc154;
}
.cls-1,
.cls-10,
.cls-11,
.cls-14,
.cls-15,
.cls-16,
.cls-17,
.cls-18,
.cls-19,
.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9 {
  fill-rule:evenodd;
}
#Green {
  animation: element 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-2 {
  fill:#c8c8c8;
  animation: element 4s 1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-3 {
  fill:#c4c3c3;
  animation: element 3s 0.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-4 {
  fill:#d7d7d6;
  animation: element 4s 1.3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-5 {
  fill:#ebebea;
  animation: element 7s 0.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-6 {
  fill:#a9a8a8;
  animation: element 6s 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-7 {
  fill:#818181;
  animation: element 7s 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-8 {
  fill:#908e8d;
  animation: element 6s 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-9 {
  fill:#7f7f7e;
  animation: element 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-10 {
  fill:#a2a2a1;
  animation: element 4s 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-11 {
  fill:#b5b5b4;
  animation: element2 6s 1.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-13{
  fill:#989898;
  animation: element2 6s 0.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-14{
  fill:#69a4d3;
  animation: element2 2s 1.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-15{
  fill:#89b5df;
  animation: element2 4s 1.3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-16{
  fill:#9ccfd7;
  animation: element2 3s 1.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-17{
  fill:#7ac2d4;
  animation: element2 3s 1.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-18{
  fill:#7cc5e8;
  animation: element2 5s 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.cls-19{
  fill:#6481c0;
  animation: element2 2s 1.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

body {
  margin: 0;
}

.svg {
  overflow: visible;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
}

.svg-container {
  width: 200px;
}

polygon,
path {
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
  transform-origin: 50% 50%;
}

polygon:hover,
path:hover,
#Green:hover {
  transform: scale(1.15);
  animation: none;
}

polygon.element2:hover,
path.element2:hover {
  transform: scale(1.05);
  animation: none;
}

@media (hover: none) {
  polygon:hover,
  path:hover,
  #Green:hover {
    transform: scale(1);
  }
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  width: 1200px;
  position: relative;
  left: calc((100% - 1200px) / 2);
}

.align-box {
  position: relative;
}

.active,
#Green.active {
  transform: scale(5);
  animation: none;
}

.active:hover {
  transform: scale(5.05);
}

.text {
  font-size: 14px;
  font-family: "Arial", sans-serif;

  position: fixed;
  top: 50vh;
  left: 50vw;
  width: 500px;
  max-width: 100vw;
  min-height: 100px;
  max-height: 100vh;
  transform: translate(-50%, -50%);

  opacity: 0;
  transition: opacity 0.3s;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  overflow-y: auto;
  box-sizing: border-box;
}

.show {
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}

.img {
  width: 150px;
  float: left; /* Выравнивание по левому краю */
  margin: 15px 15px 15px 0; /* Отступы вокруг картинки */
}

.logo {
  pointer-events: none;
}

.visual-hidden {
  display: none;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes element {
  0 { transform: scale(1); }
  10% { transform: scale(1.1); }
  20% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes element2 {
0 { transform: scale(1); }
10% { transform: scale(1.02); }
20% { transform: scale(1); }
100% { transform: scale(1); }
}
