 .info_section { 
	background-color: lightblue;
	padding-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 2px solid plum;
	height: 650px;
	
	background-image: url("../img/constellations.gif");
	background-position: center;
	background-repeat: repeat;
	background-color: none;
	background-size: cover;
}

.info {
	width: 90%;
	height: 600px;
	background-color: none;
}

.info > p {
	text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
	font-family: 'Pacifico', cursive;
	color: #120b29;
	font-size: 50px;
	height: 100px;
	text-align: center;
	margin: 0;
}

.info-wrapper {
	width: 100%;
	height: 500px;

	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 5px;
}
.consulting {
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
}

.consulting > div:first-child {
	/*border-radius: 20px;*/
	padding: 2px;
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
	background-color: rgba(256, 256, 256, 0.9);
	/* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
	text-align: center;
	width: 90%;
	display: block;
}

.consulting > div:first-child > p {

	font-family: 'Bad Script', cursive;
	font-size: 18px;
	font-weight: bold;

	margin: 0;
}

.consulting-button {
	background-color: #120b29;
	color: khaki;
	border-radius: 20px;
	padding: 5px;
	width: 120px;
	font-family: 'Pacifico', cursive;
	font-size: 20px;
	text-align: center;
	transition: ease all 0.2s;
}

.consulting-button:hover {
	cursor: pointer;
	color: white;
	background-color: plum;
}



#info-article {
	background-color: none;
}

#info-section-wrapper {
	background-color: thistle;
}

#info-article .consulting {
	background-image: url("../img/stars4.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:first-child {
	background-image: url("../img/article-1-selene.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(2) {
	background-image: url("../img/article-2-eyes.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(3) {
	background-image: url("../img/article-3-swamp.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(4) {
	background-image: url("../img/article-4-opera.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(5) {
	background-image: url("../img/article-5-6.png");
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(6) {
	background-image: url("../img/article-1-selene.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:nth-child(7) {
	background-image: url("../img/article-1-selene.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#info-article .consulting:last-child {
	background-image: url("../img/article-1-selene.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


@media only screen and (max-width: 600px) {
	.info_section {
		height: 1000px;
	}

	#info-article {
		height:1000px;
	}


	.info > p {
		font-size: 30px;
		height: 65px;
	}
	.info-wrapper {
		width: 100%;
		height: 500px;

		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	.consulting {
		width: 100%;
		padding: 10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: space-between;
	}

	#info-article .consulting { border-top: 5px solid thistle; }
}




