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

* {
  box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}
a {
	 font-weight: bold;
	color: white;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h2 {
	margin-top: 0px;
}
.primary-box {
	width: 100%;
	height: 100%;
	text-align: center;
	margin-bottom: 50px;
}
.primary-box img {
	max-width: 90%;
}
.banner {
	background: #5D9FA0;
	background: linear-gradient(90deg,rgba(93, 159, 160, 1) 0%, rgba(67, 111, 115, 1) 100%);
	height: 40px;
	margin-bottom: 40px;
}
.announcing {
	color: #5d9fa0;
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 20px
}
.sub-text {
	color: #5d9fa0;
	font-size: 26px;
	margin-top: 10px;
}
.row-1 {
	background: #5d9fa0;
	color: white;
	padding: 40px;
	text-align: center;
}
.row-1-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
	font-size: 18px;
	line-height: 30px;
}
/*
.row-2 {
	display: flex;
	flex-wrap: wrap;
	padding: 0 40px;
	gap: 40px;
	margin: 40px 0;
}
*/
.left-box,
.right-box {
	background: #5d9fa0;
	color: white;
	padding: 0 40px 40px 40px;
	flex: 50%;
/*	margin: 30px 15px;*/
	text-align: center;
}
.flex-container {
  color: white;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.flex-item-left,
.flex-item-right{
  background-color: #5d9fa0;
  padding: 30px;
  flex: 50%;
  border: 20px solid white;
}


@media (max-width: 600px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
	.sub-text {
	font-size: 18px;
	}
}