/*Стиль контейнера с текстом в doc-модуле*/
.fl-Doccont {
    width: 300px;
    height: 230px;
    /*background:inherit;*/
    /*Центровка для внутреннего блока*/
    display: flex;
    display: -webkit-flex; 
    justify-content: center;
    align-items: center;
    /*Стиль скругленных углов*/
    border-radius: inherit;
    -webkit-border-radius: inherit;
}

.Bg-PicCont {
    height: 215px;
    text-align: center; /*Выравнивание по центру*/
    /*background:inherit;*/
    /*Стиль скругленных углов*/
    border-radius: inherit;
    -webkit-border-radius: inherit;
}

/*Стиль изображения в контейнере*/
.Bg-PicCont img {
    /*Автоматические размеры, но не более заданной высоты и ширины блока*/
    width: auto;
    height: 190px;
    /*Стиль скругленных углов*/
    border-radius: inherit;
    -webkit-border-radius: inherit;
}

/*Стиль для ссылки*/
.Bg-PicCont a {
    text-decoration: none; /*Без оформления*/
    /*Стиль скругленных углов*/
    border-radius: inherit;
    -webkit-border-radius: inherit;
}
.Bg-PicCont a:active {text-decoration: underline;} /*Стиль для активной ссылки (при нажатие на нее).*/
.Bg-PicCont a:hover {font-weight: bold;} /*Стиль для ссылки при наведении на нее мышью.*/