/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 @import url('https://fonts.googleapis.com/css?family=Anton');

.icon-bg-white {
  background-image: linear-gradient(180deg,transparent 20%,#fff 0,#fff 93%,transparent 0);
  background-size: 80%;
  background-position: 60% 0;
  background-repeat: no-repeat;
}

.md\:grid-cols-4-fr {
  grid-template-columns: repeat(4,1fr);
}

.h-104 {
  height: 26rem;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

.hover\:visible {
  visibility: visible;
}

@media (min-width: 768px) {
  .md\:h-104 {
    height: 26rem !important;
  }
}

@media (min-width: 1024px) {
  .lg\:h-112 {
    height: 28rem !important;
  }
}

.hover\:animate-bounce-left:hover {
  -webkit-animation: bounce-right 2s infinite;
  animation: bounce-left 2s infinite;
}

.hover\:animate-bounce-right:hover {
  -webkit-animation: bounce-right 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation: bounce-right 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce-left {
  0%, 100% {
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce-right {
  0%, 100% {
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.max-h-400 {
  max-height: 400px;
}