@import url('https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css');


/*Подчеркивание видов деятельности*/
.hover_test {
    cursor: pointer;
}

.hover_test::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #8A2BE2; /* ярко-фиолетовый */
  transition: width 0.3s ease;
}

.hover_test:hover::after {
  width: 100%;
}

/*Первая кнопка "Оставить контакт"*/
.glow-button {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
      transition: box-shadow 0.3s ease;
    }

    .glow-button:hover {
      box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
    }