@charset "UTF-8";

html, body {
	height: 100%;
}
html {
	font-family: sans-serif;
}
body {
	margin: 0;
	background-color: #e0fff5;
}
.text-center {
	text-align: center;
}
a {
	color: #0a714e;
	background-color: transparent;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	font-weight: 600;
}
a:visited {
	color: #0a714e;
}
div.center {
	margin-left: auto;
	margin-right: auto;
}
div.header {
	top: 0;
	position: sticky;
	padding-top: 20px;
	padding-bottom: 20px;
}
div.header_div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
div.logo_img_div {
	flex-basis: content;
}
div.header_txt_div {
	flex-basis: content;
	padding-left: 4px;
}
.header_txt {
	color: #0a714e;
	padding-left: 6px;
	font-size: 2em;
	font-weight: 500;
}
.info {
	position: relative;
	left: 6px; /* same as header_txt.padding-left */
	top: -7px;
	margin-left: 6px;
	color: #0a714e;
	font-size: 90%;
}
div.main_info_wrapper {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	max-width: 70%;
}
div.main_info_list {
	display: grid;
	grid-template-columns: 32px min-content 1fr;
}
#link_img_div_1 {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}
#link_txt_div_1 {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}
#content_div_1 {
	grid-row: 2 / 3;
	grid-column: 2 / span 2;
}
#link_img_div_2 {
	grid-row: 3 / 4;
	grid-column: 1 / 2;
}
#link_txt_div_2 {
	grid-row: 3 / 4;
	grid-column: 2 / 3;
}
#content_div_2 {
	grid-row: 4 / 5;
	grid-column: 2 / span 2;
}
#link_img_div_3 {
	grid-row: 5 / 6;
	grid-column: 1 / 2;
}
#link_txt_div_3 {
	grid-row: 5 / 6;
	grid-column: 2 / 3;
}
#content_div_3 {
	grid-row: 6 / 7;
	grid-column: 2 / span 2;
}
#link_img_div_4 {
	grid-row: 7 / 8;
	grid-column: 1 / 2;
}
#link_txt_div_4 {
	grid-row: 7 / 8;
	grid-column: 2 / 3;
}
#content_div_4 {
	grid-row: 8 / 9;
	grid-column: 2 / span 2;
}
#link_img_div_5 {
	grid-row: 9 / 10;
	grid-column: 1 / 2;
}
#link_txt_div_5 {
	grid-row: 9 / 10;
	grid-column: 2 / 3;
}
#content_div_5 {
	grid-row: 10 / 11;
	grid-column: 2 / span 2;
}
img.link_img {
	margin-top: 3px;
	margin-right: 5px;
	margin-left: auto;
}
div.link_txt_div {
	padding-left: 6px;
}
A.link_txt_link {
	font-size: 2em;
	font-weight: 400;
}
.link_txt_closed {
	color: #0a714e;
}
.link_txt_open {
	color: #d3af31;
}
div.content_div {
	border: 3px solid #d3af31;
	padding: 4px;
	display: none;
}

/* ****************************************
*  WIDTH < 600 (phone)
*/
@media screen and (width < 600px) {

#logo_img {
	width: 80px;
	height: 64px;
}

} /* END @media WIDTH < 600 */

/* ****************************************
*  600 <= WIDTH < 1200  (tablet)
*/
@media screen and (600px <= width) and (width < 1000px) {

#logo_img {
	width: 103px;
	height: 82px;
}
div.header_txt_div {
	padding-left: 10px;
}	
.header_txt {
	color: #0a714e;
	padding-left: 6px;
	font-size: 3em;
}

} /* END @media 600 <= WIDTH < 1200 */


@media screen and (1000px <= width) {

a:active,
a:hover {
	outline: 0 none;
}
a:hover {
	color: #d3af31;
	text-decoration: none;
}
div.header {
	padding-top: 40px;
	padding-bottom: 40px;
}
#logo_img {
	width: 125px;
	height: 100px;
}
div.header_txt_div {
	padding-left: 20px;
}
.header_txt {
	color: #0a714e;
	padding-left: 6px;
	font-size: 4em;
}
div.main_info_wrapper {
	margin-top: 40px;
}
A.link_txt_link {
	font-size: 2.2em;
}

} /* END Width >= 600 */
