    /*Стиль для кнопки с обводкой*/
    .btn-border > a {
        border-color: rgba(255,255,255,0.4) !important;
    }
    
    .btn-border-orange > a {
        border-color: rgba(241,123,15,0.4) !important;
    }
    
    /*Стиль для кнопки с обводкой снизу*/
    .border-bottom a {
        position: relative;
    }

    .border-bottom a::after {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: -3px;
        background-color: rgba(255,255,255,0.4);
    }
    
    :target {
        scroll-margin-top: 56px;
    }
    
