/**************************/
/*     General Styles     */
/**************************/

:root {
	--lightBlue: #0082c5;;

}

body,
html {
	width: 100%;
	height: 100%;
	background-color: var(--darkYellow);
}

body,
p {
	color: #000;
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
	font-size: 14px;
	line-height: 24px;
}

h1 {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 3.25rem;
	margin: 0 auto;
	color: var(--lightBlue);
}
 h2, h3, h4 {
	color: var(--lightBlue);
 }


a {
	color: var(--lightBlue);
	text-decoration: underline;
}

a:hover {
	color: #ffffff;
	text-decoration: underline;
}





/******************/
/*     Header     */
/******************/
.header {
	position: relative;
	padding-top: 2rem;


	text-align: center;
}

.header .logo-image {
	display: inline-block;
	width: 288px;
	height: 59px;
	background-image: url('../images/logo.png');
	background-repeat: no-repeat;
	margin: 0 auto;
	background-size: contain;
	margin-bottom: 15px;

}


.header .banner {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('../images/banner.png');
	background-repeat: no-repeat;
	margin: 0 auto;
	background-size: cover;
	min-height: 500px;
}

.header h1 {
	margin-bottom: 0.875rem;
}

.header .p-large {
	margin-bottom: 2.75rem;
}

.header .social-container {
	position: absolute;
	right: 0;
	bottom: 1rem;
	left: 0;
}

.header .fa-stack {
	width: 2em;
	margin-bottom: 0.75rem;
	margin-right: 0.375rem;
	font-size: 1.25rem;
}

.header .social-container .fa-stack:last-child {
	margin-right: 0;
}

.header .fa-stack .fa-stack-1x {
	color: #a91265;
	transition: all 0.2s ease;
}

.header .fa-stack .fa-stack-2x {
	color: #ffffff;
	opacity: 0.8;
	transition: all 0.2s ease;
}

.header .fa-stack:hover .fa-stack-2x {
	opacity: 1;
}

.content {
	margin-top: 12px;
}
footer {
	padding: 25px 0;
}
footer , footer p  {
	background-color: #000;
	color: #fff;
}

footer .whatsappPlaceholder {
	position: relative; 
	display: block;
	width: 100%;
}

footer .whatsApp {
	position: fixed;
	bottom: 50px;
	right: 50px;
	background-image: url('../images/wa.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	display: block; 
	text-decoration: none; 
	outline: 0; 
	border: 0; 
	
}

/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (max-width: 768px) {

	/* General Styles */
	h1 {
	    font-size: 30px;
	    line-height: 42px;
	}

	/* end of general styles */


	/* Header */
	.header {
		padding-top: 0;
	}

	.header .text-container {
		margin-bottom: 1rem;
	}

	.header .logo-image {

		margin-top: 10px;
	}

	.header .banner {
		background-size: 120%;
		min-height: 120px;
		background-position-x: -27px;
	}



	/* end of header */
}

/* end of min-width 768px */