#main-menu-dropright .h4.text-nomad-dark {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

#events-boxes {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  #events-boxes {
    flex-direction: column;
    align-items: center;
    height: 150px;
  }

  #box-events {
    flex: 1;
    width: 100%;
  }
}

#box-events {
  height: 60px;
  flex: 1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  background-position: center;
  background-size: cover;
  font-size: 22px;
  position: relative;
  text-decoration: none;
}


#box-events:hover {
  cursor: pointer;
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
}


#box-events > div {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#box-events span {
  position: relative;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-transform: none;
  display: inline-flex;
  align-items: center;
}
