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

/*

Branding Colors

Dark Blue and H1: #06364a
Lighter Blue: #5996b0
Dark Green: #2c4e47
Light Green: #76978e
Light Green Text: #78a1a3
h2 Orange Text: #F76D4E
h3 Blue: #5996b0
Sepia: #eadbcb
body p #5a5a5a

*/


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

html {font-size: 16px; scroll-behavior: smooth;}


body { 
    /* background-color:#f2dbb9; */
	margin:0;
	padding:0;
	font-family:Verdana, Geneva, sans-serif;
}

/* Global styles ensuring consistent box-sizing */
#bce, #bce * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Styles, setting up font, background, and text alignment */
#bce {
  text-align: center;
  background-color: #EFCE56;
  color: #5a5a5a;
	/*background-image: url("images/gold-bright_bricks.jpg");
	background-attachment: fixed;
	background-repeat: repeat;*/
}

/* H1 style */
#bce h1 {
  margin-top: 0;
	margin-bottom: 10px;
  color: #06364a;
  font-size: 1.6rem;
}

/* H2 style */
#bce h2 {
  color: #F76D4E;
  font-size: 1.5rem;
  font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
}

/* H3 style */
#bce h3 {
  color: #000;
  font-size: 1.2rem;
	font-weight: normal;
}

/* Paragraph style */
#bce p {
  color: #5a5a5a;
  font-weight: normal;
  font-size: 1.0rem;
	line-height: 1.4;
}

/* Unordered and ordered list font size */
#bce ul, ol {
  font-size: 0.9rem;
	line-height: 1.0rem;
}

/* List item style, with margin bottom for spacing */
#bce ul li {
  font-weight: normal;
	margin-bottom: 1.0rem;
}

/* Header container style */
#bce header {
  width: 100%;
  margin: 0 auto;
  background-color: #06364a;
	display: inline-block;
	/*background-image: url("images/cloud8.jpg");
	background-attachment: fixed;
	background-repeat: repeat;*/
	padding-bottom: 3px;
    padding-top: 30px;
}

#bce .banner {
  max-width: 960px;
  position: relative;
  display: inline-block;
  height: auto;
}

#bce .banner img {
  width: 100%;
	display: block;
	margin-bottom: -6px;
}

#bce .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1000;
  width: 25%;
  aspect-ratio: 1 / 1; /* Force the aspect ratio to 1:1 */
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 4px 4px 15px 0 #000000;
}

#bce .logo img {
  width: 100%;
  height: auto;
}


/* Navigation Styles */
#bce nav {
	display: flex;
  justify-content: center; /* Centers navigation items horizontally */
  align-items: center; /* Aligns navigation items vertically */
  background-color: #000;
  padding: 10px;
	padding-bottom: 0;
}

#bce nav ul {
  display: flex;
  list-style: none; /* Removes default list styling */
  padding: 0; /* Removes default padding */
  margin: 0; /* Aligns with the rest of the header/footer styles */
}

#bce nav ul li {
  margin-right: 30px; /* Spacing between nav items */
  color: #fff;
}

#bce nav ul li:last-child {
  margin-right: 0; /* Remove margin-right for the last item to avoid extra spacing */
}

#bce nav a {
  text-decoration: none; /* Removes underline from links */
  color: white; /* Sets link color */
  font-weight: bold; /* Optional: makes the nav items stand out */
}

#bce nav a:hover {
  color: yellow !important; /* "!important;" is only to display correctly in our tool. Use "color: yellow;" if used elswhere */
	text-decoration: underline; /* Adds an underline on hover for visual feedback */
}

#bce nav a:active, nav a:visited, nav a:focus {
  color: white; /* Ensures nav links always stay white except hover */
}

/* Inner page container style */
#bce .inner-page {
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  max-width: 960px;
  border: none;
  background-color: white;
}

.portal {
  display: inline-block;
  width: inherit;
  margin-bottom: 20px;
}
.portal img {
  width: 100%;
  border-radius: 10px;
}

/* Image floated to the right styles */
#bce .portal-vertical {
  float: right;
	margin: 0 0 10px 20px;
	border: 1px solid #5e2a8e;
	max-width: 400px;
	display: none;
}

#bce .portal-vertical img {
  width: 100%;
	display: block;
}

/* Footer styles, including background, text alignment, and padding */
#bce footer {
  width: 100%;
  margin: 0 auto;
  background-color: #06364a;
  color: white;
  min-height: 40px;
  text-align: center;
  padding: 10px;
}

/* Footer paragraph style */
#bce footer p {
  color: white;
  font-size: 0.8rem;
}

#bce .ad-callout {
  background-color: #06364a;
  color: white;
  padding: 10px 20px 0 20px;
  float: right;
  margin-left: 20px;
	margin-bottom: 20px;
  width: 190px; /* Adjust based on your layout */
  box-shadow: -4px 6px 14px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
	opacity: 1.0;
}

#bce .ad-callout h2 {
  margin-top: 0;
	margin-bottom: 7px;
	font-size: 1.0rem;
	line-height: 1.3;
	font-weight: 600;
}

#bce .ad-callout ul {
  list-style: none;
  padding: 0;
	margin-top: 0;
}

#bce .ad-callout ul li {
  margin-bottom: 6px;
	font-size: 0.85rem;
	line-height: 1.4;
}

#bce .ad-callout ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

#bce .ad-callout ul li a:hove {
  color: #00aeef; /* Highlight color on hover */
}

#bce .ad-callout ul li a:focus, #bce .ad-callout ul li a:visited {
  color: #fff; /* Highlight color on hover */
}

#bce section {
  /*background-color: #efefef;*/
  background-color: #06364a;
  border: 1px solid #06364a;
  border-radius: 5px;
  padding: 20px;
	padding-bottom: 20px;
  margin-top: 20px;
}

#bce section article {
  border-bottom: 1px solid #aaa;
	margin-bottom: 20px;
}

#bce section article:last-child {
  border-bottom: none;
	margin-bottom: 0;
}

#bce section h2 {
  margin-top: 0;
  color: #efce56;
}

#bce section h3 {
  color: #fff;
	font-size: 1.1rem;
	margin-bottom: 0;
}

#bce section h4 {
  color: #db9d4f;
	font-size: 1.1rem;
	margin-top: 0;
}

#bce section h5 {
  color: #00688b;
	font-size: 1.0rem;
	margin-bottom: 5px;
	margin-top: 0;
}

#bce section p {
  /*color: #06364a;*/
    color: #fff;
	font-size: 0.9rem;
	line-height: 1.4;
}

#bce section ul li {
    color: #ccc;
}

#bce section a, #bce section a:hover, #bce section a:visited {
    color: #fff;
}

#bce section img {
  float: right;
	width: 400px;
	margin: 0 0 10px 20px;
	display: inline-block;
	border-radius: 7px;
	border: 1px solid #000;
}

#bce section time {
  color: #00688b;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.4;
}

#bce a.button {
  border: none;
	padding: 5px 8px 6px 8px;
	border-radius: 5px;
	background-color: #06364a;
	color: #fff;
  margin-top: 0;
	margin-bottom: 20px;
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
}

#bce a.button:hover {
  background-color: #00688b;
	color: #fff;
}

#bce section .youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
	border: 1px solid #000;
	border-radius: 7px;
}

.accordion {
margin-bottom: 30px;
}

.accordion-item {
margin-bottom: 0;
}

.accordion-button {
  background-color: #00688b;
  color: #fff;
  cursor: pointer;
  padding: 18px;
	padding-left: 43px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.2s ease-in-out;
  border-bottom: 1px solid #ddd;
	line-height: 18px;
	background-image: url("images/accordion-arrow-down-white.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: 10px 50%;
	border-radius: 5px;
	margin-bottom: 10px;
}

.accordion-button.active {
  background-image: url("images/accordion-arrow-up-white.png");
}

.accordion-button:hover {
  background-color: #76978e;
}

.accordion-button:focus {
  background-color: #00688b;
}

.accordion-content {
  padding: 0 18px 18px 18px;
  display: none;
  overflow: hidden;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
}

.accordion-content p {
  margin: 18px 0;
}

.accordion-content .discussionWebsite {
  margin-top: 10px;
	margin-bottom: -10px;
}

#bce .third {
width: 25%;
display: inline-block;
}

.image-right {
  float: right;
	width: 45%;
	margin: 23px 0 10px 20px;
	border: 1px solid #000;
	border-radius: 5px;
	overflow: hidden;
}

.image-right img {
width: 100%;
display: block;
}










@media screen and (min-width: 0px) and (max-width: 780px) {

#bce .logo {
    width: 20%;
}

#bce section img {
   width: 35%;
}

}

@media screen and (min-width: 0px) and (max-width: 700px) {

#bce .portal-vertical {
    display: inline-block;
    width: 100%;
		float: none;
		margin: 0 auto;
		margin-bottom: 20px;
		max-width: 100%;
}

#bce .portal {
    display: none;
}

#bce section img {
	width: 100%;
	float: none;
	margin: 0;
	margin-top: 20px;
}

#bce .third {
width: 47%;
}

}

@media screen and (min-width: 0px) and (max-width: 500px) {

#bce .logo {
    width: 25%;
}

.image-right {
 float: none;
 width: 100%;
 margin: 0;
 margin-top: 20px;
}

}

@media screen and (min-width: 0px) and (max-width: 440px) {

#bce .ad-callout {
    position: relative;
    width: 100%;
		margin-left: 0;
		float: left;
}

}

@media screen and (min-width: 0px) and (max-width: 360px) {

#bce h1 {
  font-size: 1.3rem;
}

#bce h2 {
  font-size: 1.2rem;
}

#bce h3 {
  font-size: 1.1rem;
}

#bce p {
  font-size: 1.0rem;
}

#bce .logo {
    width: 30%;
		left: 0;
    top: 0;
		border: none;
		border-radius: 0 0 7px 0;
}

#bce section h3 {
	font-size: 1.1rem;
}

#bce section h4 {
  color: #db9d4f;
	font-size: 1.0rem;
}

#bce section h5 {
  color: #00688b;
	font-size: 0.9rem;
}

#bce section time {
  color: #00688b;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 0.75;
}

}




