/*Кнопка Продокторов*/
.pro-btn__wrapper {
        display: flex;
        justify-content: flex-start;
        width: 50%;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: 50px;
    }
    .pro-btn {
        display: inline-block;
        padding: 16px 60px;
        border-radius: 28px;
        font-size: 20px;
        font-weight: 600;
        color: blue;
        text-transform: uppercase;
        background-color: #ffffff;
        box-shadow: 2px 2px 2px #eaeaea;
        transition: box-shadow .2s linear;
    }
    .pro-btn:hover {
        box-shadow: 3px 3px 3px #eaeaea;
    }
    .pro-btn span {
        color: red;
    }
    @media(max-width: 960px) {
        .pro-btn__wrapper {
            width: 100%;
            justify-content: center;
            
        }
    }