header {
	height: 150px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	-webkit-box-shadow: -2px 8px 9px -2px rgba(189, 189, 189, 0.75);
	-moz-box-shadow: -2px 8px 9px -2px rgba(189, 189, 189, 0.75);
	box-shadow: -2px 8px 9px -2px rgba(189, 189, 189, 0.75);
	z-index: 10;
}

.header-content {
	width: 80%;
	min-width: 860px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-content img, .header-content a {
	width: 20%;
}
.header-content a > img{
	width: 100%;
}

@media ( max-width : 860px) {
	header {
		height: auto;
	}
	.header-content {
		width: 100% !important;
		/* min-width: 150px; */
		min-width: 0px;
		justify-content: space-around;
		flex-wrap: wrap;
		gap: 20px;
	}
	.header-content img,.header-content a {
		width: clamp(130px, 20%, 270px);
	}
}