#agenda {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 0 10px;
}

#agenda .title {
  margin: auto;
  margin-bottom: 50px;
}

.day-container {
  display: grid;
  place-items: center;
  margin: auto;
  position: relative;
}
.agenda-dots-1{
  position: absolute;
  z-index: -1;
  height: 15%;
  top: 16%;
  right: -7%;
}
.agenda-dots-2{
  position: absolute;
  z-index: -1;
  height: 15%;
  top: 44%;
  left: -15%;
}
.agenda-dots-3{
  position: absolute;
  transform: rotate(90deg);
  z-index: -1;
  height: 15%;
  bottom: 7%;
  right: -20%;
}
.agenda-item {
  width: 100%;
  padding: 40px 30px;
  min-height: 12vh;
  background: #e2f0ff;
  box-shadow: 0 18px 52px rgba(215, 228, 249, 0.5);
  border-radius: 15px;
  margin-bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue1);
}

.agenda-item h3 {
  font-family: "CircularBold", sans-serif;
  font-size: 34px;
  font-weight: 500;
}

.agenda-item ul {
  margin-left: 20px;
}

.agenda-item .left-day-item p {
  font-size: 24px;
  display: inline;
  margin-top: 5px;
}

.right-day-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.right-day-item p {
  white-space: nowrap;
}

.right-day-item img {
  height: 20px;
}

@media screen and (max-width: 768px) {
  .agenda-dots-1{
    height: 10%;
    top: 18%;
    right: -7%;
  }
  .agenda-dots-2{
    height: 10%;
    top: 46%;
    left: -15%;
  }
  .agenda-dots-3{
    height: 10%;
    bottom: 7%;
    right: -20%;
  }
  .agenda-item {
    width: 80%;
    padding: 30px 20px;
    margin-bottom: 3vh;
  }

  .agenda-item h3 {
    font-size: 28px;
  }

  .agenda-item .left-day-item p {
    font-size: 18px;
  }

  .right-day-item img {
    height: 15px;
  }

  .right-day-item p {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  #agenda .title {
    margin-bottom: 30px;
  }

  .agenda-item h3 {
    font-size: 24px;
  }

  .agenda-item .left-day-item p {
    font-size: 16px;
    display: block;
  }

  .agenda-item ul {
    margin-left: 12px;
  }
}

@media screen and (max-width: 500px) {
  .agenda-item h3 {
    font-size: 22px;
  }

  .agenda-item .left-day-item p {
    font-size: 14px;
  }
}
