/* Увеличение на 5% для всех кнопок при наведении */
.tn-elem.navigation1:hover,
.tn-elem.navigation2:hover,
.tn-elem.navigation3:hover,
.tn-elem.navigation4:hover,
.tn-elem.navigation5:hover {
    transform: scale(1.05) !important; /* Увеличение на 5% */
    transition: transform 0.3s ease !important; /* Плавное увеличение */
}

/* Изменение цвета текста на зелёный при наведении */
.tn-elem.navigation1 a:hover span,
.tn-elem.navigation2 a:hover span,
.tn-elem.navigation3 a:hover span,
.tn-elem.navigation4 a:hover span,
.tn-elem.navigation5 a:hover span {
    color: #0D401B !important; /* Зеленый цвет текста */
    transition: color 0.3s ease !important; /* Плавное изменение цвета */
}

/* Изменение цвета ссылки в кнопке при наведении */
.tn-elem.navigation1 a:hover,
.tn-elem.navigation2 a:hover,
.tn-elem.navigation3 a:hover,
.tn-elem.navigation4 a:hover,
.tn-elem.navigation5 a:hover {
    color: #0D401B !important; /* Зеленый цвет ссылки */
    transition: color 0.3s ease !important; /* Плавное изменение цвета */
}



