.text_hover {
    
    transition: all 0.3s ease !important;
    
    text-decoration: none;
        /* цвет ссылки до наведения */
    color: #927549 !important;
    /* толщина и цвет подчеркивания до наведения */
    border-bottom: 1px solid transparent !important;
    /* отступ между ссылкой и подчеркиванием до наведения */
    padding-bottom: 2px !important; 
}

.text_hover a:hover {
    /* цвет ссылки после наведения */
    color: #023627 !important;
    /* толщина и цвет подчеркивания после наведения */

}

.text_hover:hover {
    transition: all 0.3s ease !important;
    border-bottom: 1px solid #927549 !important;
    /* отступ между ссылкой и подчеркиванием после наведения */
    padding-bottom: 1px !important; 
}

@keyframes slide-out {
  0% {
    padding-bottom: -1px;
    opacity: 0;
  }
  50% {
    padding-bottom: 1px;
    opacity: 0.5;
  }
  100% {
    padding-bottom: 2px;
    opacity: 1;
  }
}

.text_hover {
  animation: slide-in 2s ease-in-out;
}
  