*
{
	margin:0;
	padding:0;
	outline: none;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing: border-box;
}

:root 
{
	--color_bg: #fff;
	--color_text: #000;
	--color_accent: #008337; /* #e3180a */
}

@font-face 
{
  font-family: 'Exo';
  font-style: normal;
  font-weight: 300;
  src: local('Exo-Light.ttf'), url('../fonts/Exo-Light.ttf') format('truetype');
}

@font-face 
{
  font-family: 'Exo';
  font-style: normal;
  font-weight: 400;
  src: local('Exo-Medium.ttf'), url('../fonts/Exo-Medium.ttf') format('truetype');
}

@font-face 
{
  font-family: 'Exo';
  font-style: normal;
  font-weight: 700;
  src: local('Exo-Bold.ttf'), url('../fonts/Exo-Bold.ttf') format('truetype');
}

a:link{text-decoration: none; color: var(--color_accent);}
a:hover{text-decoration: underline; color: var(--color_accent);}
a:visited{color: var(--color_accent);}

body
{
	margin: 0px auto;
	font-family: 'Exo';
	color: var(--color_text);
	font-size: 15px;
}

p
{
	padding-bottom: 8px;
	line-height: 140%;
}

h1, h2, h3
{
	color: var(--color_accent);
}

table
{
    border-collapse: collapse;
}

table tr
{
	border-bottom: 1px solid var(--color_text);
}
table tr:last-child
{
	border-bottom: 0px solid var(--color_text);
}
table td
{
	padding: 10px;
	border-right: 1px solid var(--color_text);
}
table td:last-child
{
	border-right: 0px solid var(--color_text);
}

main
{
	position: relative;
	width: 100%;
	min-height: calc(100svh - 200px);
	/* overflow: hidden; */
}

#hero
{
	padding: 40px 15px;
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: var(--color_bg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#hero::after
{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--color_bg);
	opacity: 0.4;
}

#hero .content_center
{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	z-index: 1;
}

#hero .content_center img
{
	width: 100%;
	height: auto;
}

.content_center
{
	text-align: center;
}

.content_center h4
{
	font-size: 20px;
}

.content
{
    width: 100%;
    max-width: 1024px;
    padding: 30px 15px;
    margin: 0px auto;
}

footer
{
	position: relative;
	padding: 30px 50px;
	width: 100%
}

.foo_content
{
	width: 100%;
	text-align: center;
	overflow-wrap: break-word;
}

.ego55
{
	position: absolute;
	width: 50px;
	height: auto;
	bottom: 0px;
	right: 0px;
}

@media (max-height: 800px)
{
	#hero .content_center
	{
		width: 300px;
	}
}

@media (max-width: 991px)
{
	#hero .content_center
	{
		width: 300px;
	}
}

@media (max-width: 600px)
{
	footer
	{
		padding: 30px 15px;
		padding-bottom: 80px;
	}
}