.box {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;	
	width: 100%;
	background-color: var(--blue);
	padding: 5px 23px 5px 10px;
	/*position: fixed;*/
	z-index: 5;
	top: 0;
	left: 0;
	right: 0;
}
.phone {
    font-size: x-large;
    text-decoration: none;
    align-items: center;
    color: white;
}
.doc_box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    /*flex-wrap: wrap;*/
}
.doc_box a {
	margin-right: 25px;
	/*box-shadow: 0px 8px 10px rgba(219, 219, 219, 0.5);
	border-radius: 10px;*/
	display: flex;
	align-items: center;
	padding: 13px;
	text-decoration: underline; 	
	width: 100%;
}
.doc_box a:hover {
	text-decoration: none;
}
@media (max-width: 992px) {
   .doc_box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .box {
        flex-direction: column;
    }
}