/* banner */
.mercan {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mer,
  .can {
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 140px;
    padding: 0 2rem;
  }
  
  .mer {
    color: #707070;
    animation-duration: 6s; /* Adjust to your preference */
  }
  
  .can {
    color: #c3d940;
    animation-duration: 6s; /* Adjust to your preference */
  }
  
  .container-circle {
    width: 480px;
    height: 480px;
    border: 2px dotted #707070;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .inner-circle {
    width: 280px;
    height: 280px;
    background-color: #c3d940;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @keyframes zoomInEffect {
    from {
      transform: scale(0.4);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .tree-visual {
    position: absolute;
    z-index: 10;
    animation: zoomInEffect 2.5s ease-in-out; /* Adjust duration and timing function */
  }
  
  .nav-point {
    width: 30px;
    height: 30px;
    background-color: #707070;
    border-radius: 50%;
    position: absolute;
    border: 7px solid #f0f0f0;
    transition: background-color 0.3s ease;
    cursor: pointer; /* Change cursor to pointer on hover */
    animation: pulseEffect 2s infinite; /* Pulse animation */
    z-index: 12;
  }
  .nav-point-1 {
    top: 20%;
    left: 22px;
    transform: translateY(-50%);
  }
  
  .nav-point-2 {
    top: 0px;
    left: 30%;
    transform: translateX(-50%);
  }
  
  .nav-point-3 {
    top: 2px;
    left: 65%;
    transform: translateX(-50%);
  }
  
  .nav-point-4 {
    top: 20%;
    right: 22px;
    transform: translateY(-50%);
  }
  .nav-point.active {
    background-color: #c3d940; /* Active point color */
  }
  @keyframes pulseEffect {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .alt {
    margin-top: -72px;
    margin-left: 52px;
  }
  .description-bold {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #707070;
    margin: 0;
  }
  .description {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #292929;
    margin: 0;
  }
  .kids {
    z-index: 11;
    margin-top: -12% !important;
  }
  .kids img {
    width: 100%;
    height: auto;
  }
  .gunes {
    position: absolute;
    display: flex;
    justify-content: end;
    align-items: flex-start;
    top: 0;
    right: 12%;
  }
  @keyframes rotateEffect {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .gunes img {
    animation: rotateEffect 10s linear infinite; /* Adjust the duration and timing function as needed */
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .animate__fadeInLeft {
    animation: fadeInLeft 1s ease-out;
  }
  
  .animate__fadeInRight {
    animation: fadeInRight 1s ease-out;
  }
  
  .animate__zoomIn {
    animation: zoomIn 1s ease-out;
  }
  
  /* banner */