a {
  position: relative;
  text-decoration: none;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s ease;
}


 a:hover::after{
     width:100%;
 }

#rec1619139091  a:hover::after {
  width: 0%;
}

.contacts {

    font-family: 'Nunito' sans-serif;
    max-width: 201px;
    width: 100%;
    border-radius: 24px;
    text-align: right;

    padding: 16px 24px;
    background: #1d8649;
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    color: #fff;
}

.text-stroke {
    /* Здесь будут остальные свойства, которые вы настроили в Zero Block */
    border-bottom: 1px solid #FF8300; /* Толщина и цвет обводки */
}
.t-input {
    border: none !important;
    border-bottom: 1px solid #393939 !important;
    border-radius: 0 !important;
}
.t-select {
    border: none !important;
    border-bottom: 1px solid #393939 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}


#rec1619139091 {
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none; /* не перекрывает другие кнопки */
}
#rec1619139091.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
    
#rec1619139091 {
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;

    position: absolute; /* меняем fixed на absolute */
    top: 0;             /* можно подкорректировать относительно кнопки */
    left: 0;
    width: 100%;        /* или auto, если не нужен full-width */
    z-index: 999;       /* поверх элементов, но ниже fixed overlay */
}
#rec1619139091.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

