


ul{
  list-style: none;
}
ul li{
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.container{
  background-color: white;
}

.section {
   height: 100vh;
  width: 100vw;
  display: flex;
  padding-top: 70px;
  justify-content: left;
  align-items: left;
  color: black;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  background-color: rgb(255, 255, 255)
}

#section1 {
  background-color: rgb(19, 11, 41)
}


.content {
  text-align: left;
  padding: 3em;
  padding-top: 1em;
}

.nav-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(102, 102, 102, 0.5);
  margin: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: rgb(120, 120, 120);
  transform: scale(1.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  40% {
      transform: translateX(-50%) translateY(-20px);
  }
  60% {
      transform: translateX(-50%) translateY(-10px);
  }
}

.desktop-layout{
  display: none !important;
}

.mobile-layout{
  display: block;
}


@media (min-width: 769px) {


  .mobile-layout{
    display: none !important;
  }

  .desktop-layout{
    display: block !important;
  }
}


/* loc */ 

.links-scattered {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: 70vh;
  margin-bottom: 3rem;

  border-radius: 12px;
  padding: 1rem;
  overflow: hidden;
}

.links-scattered a {
  position: absolute;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-size: min(6vw,5vh);

  color: white;
  text-decoration: none;
  border-radius: 30px;


  transition: transform 0.3s, background-color 0.3s;
}



.links-scattered a:hover {
  transform: scale(1.1);

}

.links-scattered a:nth-child(1) {
  top: 15%;
  left: 10%;

}

.links-scattered a:nth-child(2) {
  top: 27%;
  right: 3%;

}

.links-scattered a:nth-child(3) {
  top: 39%;
  left: 3%;

}

.links-scattered a:nth-child(4) {
  top: 51%;
  right: 3%;

}

.links-scattered a:nth-child(5) {
  top: 63%;
  left: 20%;

}

.links-scattered a:nth-child(6) {
  top: 75%;
  right: 5%;

}


/*background first page */
.gradient-background {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      black 0%,
      rgba(188, 20, 126, 0.2) 25%,
      rgba(125, 78, 255, 0.15) 75%,
      black 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 25s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

    .image-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            width: 100%;
            /*max-width: 1000px;
            min-width: 600px;*/
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .image-item {
            flex: 1;
            min-width: 0;
            text-align: center;
            
        }

        .image-item img {
            width: 100%;
            max-width: 250px;
            height: auto;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .image-item img:hover {
            transform: translateY(-5px);
        }

        .subtitle {
            margin-top: 15px;
            font-family: Arial, sans-serif;
            color: #333;
            /*font-weight: 500;*/
            font-size: 0.65em;
        }

.right-image{
   width: 40%;
  height: 100%;
  /*background-image: url('/files/pics/doc/exhibition/total.jpg');*/
  background-size: cover;
  background-position: top left;
  position: absolute;

  top: 0;
  right: 0;
}

.w60{
  width: 60%;
}