.contact-button:hover img {
  filter: brightness(0) invert(1);
}
.social-icon:hover {
  background-color: #292929;
}
.social-icon:hover img {
  filter: brightness(0) invert(1);
}
.contact-button:hover {
  background-color: #292929;
  color: #fff;
}

.nav-element:hover {
  background-color: #fff;
  color: #292929;
}
.download-button:hover {
  background-color: #fff;
  color: #292929;
}
.download-button:hover img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(14%) saturate(22%)
    hue-rotate(3deg) brightness(95%) contrast(87%);
}

.header-news-dropdown {
  cursor: pointer;
}
.social-icons {
  cursor: pointer;
}
.dropdown-content {
  display: none;
}

.header-personal-dropdown {
  cursor: pointer;
}

.download-button {
  cursor: pointer;
}

.contact-button {
  cursor: pointer;
}

.nav-element {
  cursor: pointer;
}
.navbar-toggler {
  background-color: #fff !important;
}
.navbar-toggler-icon {
  filter: brightness(0) saturate(100%);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px;
  background-color: white;
}

.gallery-item {
  flex: 1 1 calc(33% - 20px);
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 calc(100% - 20px);
  }
}
