.parablock-grid {
	display: grid;
	align-items: stretch;
	align-content: stretch;
}

.parablock {
	border: 1px solid #d6eaf6;
    padding: 25px;
    display: flex;
    margin-bottom: 25px;
    flex-direction: column;
}

.name-style {
	color: #0a7dc0;
  font-weight: 900;
}

.parablock-href .doc_item_reg {
	display: flex;
    align-items: center;
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: inline-flex;
    width: auto;
    text-decoration: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-shadow: 13px 15px 20px rgb(0 0 0 / 5%);
    -moz-box-shadow: 13px 15px 20px rgba(0,0,0,.05);
    box-shadow: 13px 15px 20px rgb(0 0 0 / 5%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
    padding: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    align-items: center;
}

.parablock-href .doc_item_reg:hover {
    -webkit-box-shadow: 13px 15px 20px rgb(0 0 0 / 15%);
    -moz-box-shadow: 13px 15px 20px rgba(0,0,0,.15);
    box-shadow: 13px 15px 20px rgb(0 0 0 / 15%);
}

.parablock-href .doc_item_reg:hover a {
    text-decoration: none;
}