/* -------------------------- Image Carousel ----------------------- */
#image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 80vh;
}

#slideLeft, #slideRight {
  border-radius: 50%;
  padding: 5px 15px;
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, .8);
  color: white;
  font-size: 2rem;
  z-index: 5;
}

#slideLeft span,
#slideRight span {
  display: none;
}

#slideLeft {
  left: 2%;
}

#slideRight {
  right: 2%;
}

.slide {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.slide .info {
  background-color: rgba(0, 0, 0, .8);
  color: white;
  padding: 4%;
  margin: 4% 0;
  width: 60%;
  height: auto;
}

.slide .info h2 {
  margin-top: 0;
}

@media (min-width:500px) {}

@media (min-width:800px) {
  #image-slider {
    min-height: 70vh;
  }

  #slideLeft, #slideRight {
    top: 45%;
    padding: 14px 24px;
  }

  #slideLeft {
    left: 2%;
  }

  #slideRight {
    right: 2%;
  }
}

/* ------- */
/* -------------------------- announcement ----------------------- */
.announcement {
  display: flex;
  flex-direction: column;
  gap: 5%;
  padding: 5%;
  max-width: 90%;
  margin: 0 auto;
}

@media (min-width:500px) {}

@media (min-width:800px) {}

@media (min-width:1000px) {
  .announcement {
    flex-direction: row;
    justify-content: space-between;
    max-width: 70%;
  }

  .announcement h2 {
    min-width: 40%;
    text-align: right;
    /* line-height: 1.6; */
  }
}

/* ------- */
/* -------------------------- cards ----------------------- */
.cards {
  background-color: #333333;
  background-size: cover;
  padding: 4%;
}

.cards h2 {
  text-align: center;
  color: white;
}

.single-cards {
  display: flex;
  flex-flow: column nowrap;
  justify-self: center;
  justify-content: space-between;
  /* width: 70%; */
}

@media (min-width:800px) {
  .single-cards {
    flex-flow: row nowrap;
  }
}

.single-cards>* {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  /* background-color: white; */
  background-color: rgba(0, 0, 0, .5);
  color: white;
  min-width: 90%;
  max-width: 90%;
  padding: 2%;
  margin: 5% auto;
}

@media (min-width:500px) {
  .single-cards>* {
    min-width: 80%;
    max-width: 80%;
  }
}

@media (min-width:800px) {
  .single-cards>* {
    min-width: 25%;
    max-width: 25%;
    margin: 2% auto;
  }
}

.single-cards h3, .single-cards p {
  text-align: center;
}

.single-cards img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* ------- */
/* -------------------------- heritage ----------------------- */
.heritage {
  display: flex;
  flex-direction: column;
  gap: 5%;
  padding: 5%;
  max-width: 90%;
  margin: 0 auto;
}

.home-heritage-image {
  float: left;
  margin: 0 5% 5% 0;
}

.heritage img {
  max-width: 100%;
}

@media (min-width:500px) {}

@media (min-width:1000px) {
  .heritage {
    flex-direction: row;
    justify-content: space-between;
    max-width: 70%;
  }
}