/* ==================================================
   CSS Imports
================================================== */

@import url("reset.css");

/* ==================================================
   Icon Fonts
================================================== */

@import url("fonts/fontawesome/font-awesome.css");

/* ==================================================
   Google Fonts
================================================== */

@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic,700,700italic");
@import url("http://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400,400italic,700,700italic");

/* ==================================================
   Global Styles
================================================== */

*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body
{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: table;
}

html
{
	height: 100%;
	overflow: auto;
	background: #FFF url("../images/bg.jpg") no-repeat;
	background-size: cover;
	
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body
{
	font-family: "Roboto Condensed", Arial, Verdana, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFF;
	line-height: 32px;
	font-weight: 300;
	
	text-rendering: optimizeLegibility;
	vertical-align: baseline;
}

::selection
{
	background: #1ABC9C;
	color: #FFF;
}

::-moz-selection
{
	background: #1ABC9C;
	color: #FFF;
}

a
{
	color: #1ABC9C;
	text-decoration: none;
}

a:hover
{
	color: #FFF;
}

img
{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}

/* ==================================================
   Layout Styles
================================================== */

#outercont
{
	display: table-cell;
	vertical-align: middle;
}

	#outercont #innercont
	{
		display: inline-block;
		width: 100%;
		padding: 25px;
	}
	
		#outercont #innercont .bodycontainer
		{
			margin: 0 auto;
			width: 100%;
			max-width: 1140px;
		}
	
/* ==================================================
   Sections
================================================== */

#content
{
	padding: 40px 25px;
	text-align: left;
	background: url("../images/bg-transparent.png") repeat;
	text-align: center;
}

	#content p
	{
		margin: 0 0 20px 0;
	}
	
		#content p:last-child
		{
			margin-bottom: 0;
		}
	
	#content strong
	{
		font-weight: 600;
	}
	
	#content em
	{
		font-style: italic;
	}
	
		/** Main Header **/
		
		#content h1
		{
			display: inline-block;
			color: #FFF;
			border-radius: 2px;
			font-size: 30px;
			line-height: 60px;
			font-weight: 700;
			letter-spacing: -0.6px;
			font-family: "Roboto Condensed";
			text-transform: uppercase;
			margin: 0 0 25px 0;
			padding: 10px 260px;
			/** background: #1ABC9C; **/
			background: #009E77;
		}
#copyright
{
	padding: 20px 0 0 0;
	text-align: center;
	font-size: 18px;
}

/* ==================================================
   Responsive Media Queries - Tablets
================================================== */

@media screen and (max-width: 768px)
{
	
	#outercont #innercont
	{
		padding: 25px;
	}
	
	#content
	{
		padding: 25px;
	}
	
		#content h1
		{
			font-size: 30px;
			line-height: 50px;
		}
	
}

/* ==================================================
   Responsive Media Queries - Mobiles
================================================== */

@media screen and (max-width: 480px)
{		
	
	#outercont #innercont
	{
		padding: 15px;
	}
	
	#content
	{
		padding: 15px;
	}
}

/* CSS */
.button-3 {
	appearance: none;
	background-color: #009E77;
	border: 1px solid rgba(27, 31, 35, .15);
	border-radius: 6px;
	box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
	box-sizing: border-box;
	color: #fff; /* Font color is white, not transparent */
	cursor: pointer;
	display: inline-block;
	font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 20px;
	font-weight: 600;
	line-height: 20px;
	padding: 6px 16px;
	position: relative;
	text-align: center;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: middle;
	white-space: nowrap;
}

/* .button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;  
} */

/*
.button-3:hover {
  background-color: #55bba2;
}

 
.button-3:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
} */
/* 
.button-3:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, .1);
  color: rgba(255, 255, 255, .8);
  cursor: default;
} */
/* 
.button-3:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
} */

