/* fests  */

.fests {
  padding: 2rem 6rem;
  align-items: center;
  justify-content: center;
}

.fest-heading h1 {
  padding-bottom: 1.5rem;
  color: var(--secondary, #ffcd39);
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-align: center;
}

.fest-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.fest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.fest img {
  width: 6rem;
  height: 6rem;
  border-radius: 60px;
}

.fest p {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-family: var(--font-title);
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .fests {
    padding: 1.5rem 3rem;
  }

  .fest-list {
    gap: 2.5rem;
  }

  .fest img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .fest p {
    font-size: 1rem;
  }
}


@media screen and (max-width: 768px) {
  .fests{
    padding: 1rem 2rem;
  }
  .fest-list {
    gap: 1rem;
  }

  .fest img {
    width: 5rem;
    height: 5rem;
  }

  .fest p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 426px) {

  .fests {
    padding: 1.5rem  0.5rem;
  }

  .fest-heading h1{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    padding-bottom: 0.7rem;
  }
  .fest-list{
    gap: 0.75rem;
    justify-content: space-between;
  }

  .fest img{
    width: 4.5rem;
  height: 4.5rem;
  border-radius: 8px;
  }
  .fest p{
    font-size: 0.75rem;
  }

}


