.text-enhanced {
  color: rgba(255, 166, 0, 1);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.w3-icon-link {
  margin: 0 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.custom-orange {
  background-color: rgba(255, 166, 0, 0.7);
}

.w3-card header {
  background-color: rgba(255, 166, 0, 0.7);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.w3-quarter:hover .fa-cog {
  animation: rotate 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.w3-quarter:hover .fa-gem {
  animation: spin 3s ease-in-out infinite;
}

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.w3-quarter:hover .fa-heart {
  animation: beat 1s ease-in-out infinite;
}

.w3-quarter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fa-envelope,
.fa-envelope-open {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fa-envelope {
  opacity: 1;
}

.fa-envelope-open {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.w3-quarter:hover .fa-envelope {
  opacity: 0;
  visibility: hidden;
}

.w3-quarter:hover .fa-envelope-open {
  opacity: 1;
  visibility: visible;
}

.w3-bar-item.w3-button.w3-wide:hover {
  background-color: rgba(255, 166, 0, 0.4) !important;
}

@media screen and (max-width: 1152px) {
  .w3-quarter {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .w3-third {
    width: 100%;
  }
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: none;
}

@media (max-width: 1152px) {
  .mobile-only {
    display: block;
  }
}

@media (min-width: 1153px) {
  .desktop-only {
    display: block;
  }
}

/* .w3-quarter {
  position: relative;
}

.w3-quarter {
  transition: all 0.5s ease;
}

.w3-quarter .w3-ul {
  list-style-type: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease;
}

.w3-quarter:hover .w3-ul {
  max-height: 500px;
  opacity: 1;
}
.w3-quarter:hover .w3-ul {
  transform: translateY(0);
  opacity: 1;
} */
