footer a {
  text-decoration: none;
}

.footer-link:hover {
  color: var(--bs-primary) !important;
}

footer li {
  margin-bottom: .5rem !important;
  font-size: smaller;
}

.footer-link {
  color: var(--bs-body-color) !important;
}

.body-bg {
  background-color: #383838 !important;
}

.gallery-picture img {
  aspect-ratio: 16/10;
  filter: grayscale(1);
  filter: brightness(0.7) grayscale(1);
}

.gallery-picture:hover {
  cursor: pointer;
}

.gallery-picture:hover img {
  filter: grayscale(0);
  box-shadow: var(--bs-box-shadow);
}

.form-control {
  border: 1px solid var(--bs-primary);
  border-radius: 0px;
  min-height: 42px;
}

.gallery-title {
  font-family: 'Special Gothic Expanded One';
  color: var(--bs-secondary);
  position: absolute;
  z-index: 1000;
  font-size: 3rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.flexo-div {
  position: relative;
  background-image: url("../../assets/img/qc_bw.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.flexo-div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.flexo-div h2, .flexo-div p {
  position: relative;
  z-index: 2;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  /*padding: 15px;*/
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float img {
  width: 65px;
  height: 65px;
}

