/* Center the whole row */
.house-row {
  justify-content: center;
}

/* House Box */
.house-box {
  margin-bottom: 40px;
  text-align: left; /* keep inside left */
  max-width: 160px;
}

/* House Name */
.house-name {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Flag Wrapper */
.flag-wrapper {
  display: flex;
  align-items: flex-start;
}

/* Pole */
.pole {
  width: 6px;
  height: 140px;
  background: #999;
  border-radius: 3px;
}

/* Flag */
.flag {
  width: 90px;
  height: 55px;
  margin-left: 3px;
  margin-top: 10px;
  border-radius: 4px;
  animation: wave 2s infinite ease-in-out;
	box-shadow:0 0 20px rgba(0,0,0,0.3);
}

/* Colors */
.red { background: red; }
.yellow { background: gold; }
.green { background: green; }
.blue { background: #0d6efd; }

/* Wave */
@keyframes wave {
  0% { transform: skewY(0deg); }
  50% { transform: skewY(5deg); }
  100% { transform: skewY(0deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .flag {
    width: 50px;
    height: 30px;
  }

  .pole {
    height: 90px;
  }
}
.activities-section{
  padding: 30px 0px 0px 0px !important ;
}