    .btn_underline_1 .tn-atom__button-text {
        position: relative;
    }
    .btn_underline_1 .tn-atom__button-text::before {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(1);
        height: 0px; /*Толщина подчекивания ДО*/
        bottom: 0px; /*Положение подчекивания ДО*/
        left: 0;
        background: #000000; /*Цвет подчекивания ДО*/
        transform-origin: bottom left;
        transition: transform 0.4s ease-out; /*Скорость смены подчеркивания ДО*/
    }
    .btn_underline_1 .tn-atom__button-text::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 1px; /*Толщина подчекивания ПОСЛЕ*/
        bottom: -2px; /*Положение подчекивания ПОСЛЕ*/
        left: 0;
        background: #44464E; /*Цвет подчекивания ПОСЛЕ*/
        transform-origin: bottom right;
        transition: transform 0.4s ease-out; /*Скорость смены подчекивания ПОСЛЕ*/
    }
    .btn_underline_1:hover .tn-atom__button-text::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
    .btn_underline_1:hover .tn-atom__button-text::before {
        transform: scaleX(0);
        transform-origin: bottom right;
    }

