.hero {
  height: 100vh;
  width: 100%;
  max-height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 100dvh;
  padding: 32px;
}

.hero i {
  font-size: 3em;
  color: var(--color-white);
}

.hero #ctaScrollToEvents {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, .8);
}

.hero #ctaScrollToEvents span {
  vertical-align: middle;
}

.hero #ctaScrollToEvents i {
  margin-left: 8px;
  font-size: 1.4rem;
}


section {
  padding: 64px 0;
}

section:nth-of-type(even) {
  background-color: var(--color-primary-100);
}

section:nth-of-type(even) .card {
  background-color: var(--color-white);
}

section:nth-of-type(odd) .card {
  background-color: var(--color-primary-100);
}


#events .btn,
#news .btn,
#instagram .btn {
  display: table;
  margin: 0 auto;
}


.posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-around;
  margin-bottom: 32px;
  max-width: 892px;
  margin-inline: auto;
}

.posts .post {
  position: relative;
  display: flex;
  width: 285px;
  height: max-content;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  cursor: pointer;
}

.posts .post img {
  width: 100%;
  height: 100%;
  transition: .3s;
}

.posts .post .widgets {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  align-items: end;
  padding: 12px;
  color: var(--color-white);
}

.posts .post .widgets i {
  font-size: 1.5em;
}

.posts .post .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #000, transparent);
  opacity: .5;
}
