@CHARSET "UTF-8";

/**
 *
 * @name:    mDash CMS Framework.
 * @package: mDash, a framework package that allows rapid deployment of websites.
 * @version: 0.1.0
 *
 */

/********************************************************************************
* DO NOT EDIT BELOW UNLESS YOU KNOW WHAT YOU ARE DOING!!
********************************************************************************/


/********************************************************************************
* Layout & Style.
********************************************************************************/

/* #mastercontent {} */

#mastercontent article {
	width: 100%;
	margin: auto;
}

#mastercontent article p {
	height: auto; 
	width: 100%;
	margin: 0 auto;
}
#mastercontent article p:nth-child(odd) {
	background-color: rgba(34, 2, 0, 0.4);
}
#mastercontent article p:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.9);
	color: #222;
}

#mastercontent article p img {
	border: 1px solid #000; 
	border-radius: 8px;
	margin: 0 auto;
	display: block;
}

#mastercontent article p span {
	display: block;
	margin: 0 auto;
	padding: 1%;
	width: 98%;
	text-align: justify;
	font-size: 1.2em;
}

/********************************************************************************
* Media Queries.
********************************************************************************/

@media only screen and (min-width: 600px) {
	#mastercontent article p {
		position: relative;
		height: 210px; 
		width: 100%;
		/* border-radius: 12px; */
	}
	
	#mastercontent article p img {
		position: absolute;
		top: 10px;
		width: 220px;
		height: auto;
		border: 1px solid #000; 
		border-radius: 8px;
		/* margin: 8px; */
	}

	#mastercontent article p span {
		position: absolute;
		top: 25px;
		width: 50%;
		height: 100%;
		font-size: 1.3em;
	}

	#mastercontent article p:nth-child(odd) img {
		left: 20px;
	}
	#mastercontent article p:nth-child(odd) span {
		right: 20px;
	}
	#mastercontent article p:nth-child(even) img {
		right: 20px;
	}
	#mastercontent article p:nth-child(even) span {
		left: 20px;
	}
}


@media only screen and (min-width: 800px) {
	#mastercontent article p {
		height: 330px; 
		width: 100%;
	}
	#mastercontent article p img {
		top: 10px;
		height: auto; 
		width: 350px;
	}

	#mastercontent article p span {
		top: 20%;
		width: 36%;
	}
	
	#mastercontent article p:nth-child(odd) span {
		right: 40px;
	}
	#mastercontent article p:nth-child(even) span {
		left: 40px;
	}
}


@media only screen and (min-width: 1000px) {
	#mastercontent article p {
		height: 500px; 
		width: 100%;
	}
	#mastercontent article p img {
		top: 50px;
		width: 500px; 
		height: auto;
	}

	#mastercontent article p span {
		top: 150px;
		width: 30%;
	}
}

@media only screen and (min-width: 1200px) {
	#mastercontent article p {
		height: 700px; 
		width: 100%;
		font-size: 1.4em;
	}
	#mastercontent article p img {
		top: 50px;
		width: 700px; 
		height: auto;
	}

	#mastercontent article p span {
		top: 150px;
		width: 30%;
	}
}


@media only screen and (min-width: 1600px) {
	#mastercontent article p span {
		top: 30%;
		width: 44%;
	}
	
	#mastercontent article p:nth-child(odd) span {
		right: 100px;
	}
	#mastercontent article p:nth-child(even) span {
		left: 100px;
	}
}


@media only screen and (min-width: 1800px) {
	#mastercontent article p span {
		top: 34%;
		width: 50%;
	}
	
	#mastercontent article p:nth-child(odd) span {
		right: 120px;
	}
	#mastercontent article p:nth-child(even) span {
		left: 120px;
	}
}


/********************************************************************************
* END MEDIA QUERIES 
*********************************************************************************
* ADMIN 
********************************************************************************/


/********************************************************************************
* END ADMIN  
*********************************************************************************
* End File
********************************************************************************/