/*
Theme Name: Woostify Child
Description: Child theme for Woostify
Author: Your Name
Template: woostify
Version: 1.0.1
*/

/* Import parent theme styles */
@import url("../woostify/style.css");

.home .testimonial_home{max-width:1200px !important; margin:auto !important;}

@media (max-width: 768px) {
  .reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}

#menu-item-120 > a {
    position: relative;
    background: #ff4d4d;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 14px;
    animation: pulseMenu 1.5s infinite;
}

@keyframes pulseMenu {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

