@charset "utf-8";
/* CSS Document */

/*-------------------------------------------------------------------------*/
/* BACKGROUNDS */
/*-------------------------------------------------------------------------*/
.corners-rounded {
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 10px;
}

.transparant-bg {
	background: rgba(0,0,0,0.6);
	box-sizing: border-box;
	padding: 20px;
}

.act-box {
	padding: 50px 0;
}

.bg-blueaqua, .bg-blueaqua:hover {
	background-color: rgba(51,171,192,1);
}

.bg-bluedeep, .bg-bluedeep:hover {
	background-color: rgba(15,89,110,1);
}

.bg-brownlc, .bg-brownlc:hover {
	background-color: rgba(153,134,117,1);
}

.bg-brownpc, .bg-brownpc:hover {
	background-color: rgba(199,178,153,1);
}

.bg-cyanpg, .bg-cyanpg:hover {
	background-color: rgba(122,204,200,1);
}

.bg-greyd, .bg-greyd:hover {
	background-color: rgba(51,51,51,1);
}

.bg-greyl, .bg-greyl:hover {
	background-color: rgba(235,235,235,1);
}

.bg-orange, .bg-orange:hover {
	background: rgba(254,141,47,1);
}

.bg-pink, .bg-pink:hover {
	background: rgba(251,67,129,1);
}

.bg-purple, .bg-purple:hover {
	background-color: rgba(101,62,179,1);
}

.bg-purpledeep, .bg-purpledeep:hover {
	background-color: rgba(43,26,76,1);
}

.bg-white, .bg-white:hover {
	background: rgba(255,255,255,1);
}

.bg-whiteOff, .bg-whiteOff:hover {
	background: rgba(250,250,250,1);
}

.bg-yellow, .bg-yellow:hover {
	background: rgba(255,180,0,1);
}










/*-------------------------------------------------------------------------*/
/* TEXT COLORS */
/*-------------------------------------------------------------------------*/
.blueaqua {
	color: rgba(51,171,192,1);
}
.greyD {
	color: rgba(62,62,62,1);
}

.white, .white a:link, .white a:visited, .white a:hover, .white a:active,  {
	color: rgba(255,255,255,1);
}













/* HIDDEN OBJECTS - Give class="hidden" value to objects you wish to hide" */
.hidden {
	display: none; /* Use display: none; to hide the object and to collapse the space it takes in */
}