@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Lexend:wght@100..900&display=swap');

/** mmmmmmmmmmmmmmmmmmmmm Root Variables mmmmmmmmmmmmmmmmmmmmmmmm **/
:root{
	/* Fonts ____________ (must correspond to the font-family names in @font-face*/
	--font-1:"Lexend";                   
	--font-2:"Cal Sans";                 
	--font-3:"Lexend";                   
														
	/* Colors ___________*/                             
	--color-bg-1:#fff;                             
	--color-bg-2:#ffffff;                             
	/*--color-lines:#d0d0d0;                            */
	--color-border-1:#ccc;                         
	--color-border-2:#d7d7d7;                         
	/*--color-accent-1:#db5f00;                         */
	/*--color-accent-2:#ff8819;                         */
	--color-accent-1:#2356aa;                      
	--color-accent-2:#aa0000;                  
	/*--color-accent-ui-1:#ffeeda;                      */
	/*--color-accent-ui-2:#ffe8cc;                      */  
	--color-accent-ui-1:#f30000;
	--color-accent-ui-2:#cb0000;
	--color-text-strong:#333333;                      
	--color-text-normal:#666666;                      
	--color-text-weak:#888888;                        
	--color-text-strong-reverse:#efefef;              
	--color-text-normal-reverse:#888888;              
	--color-text-weak-reverse:#666666;                
	--color-link:#0070c0;                             
	--color-link-visited:#366092;                     
	--color-link-hover:#30aaff;                       
	--color-link-active:#aa0000;                      
														
	/* Text Colors ___________*/                        
	/*--color-text-red: #ff5b5b;                        */
	/*--color-text-green: #87d147;                      */
	/*--color-text-blue: #4790d1;                       */
	/*--color-text-orange: #fcb737;                     */
	/*--color-text-pink: #ff89f7;                       */
	/*--color-text-purple: #a672e5;                     */
	/*--color-text-white: #fff;                         */
	/*--color-text-black: #030303;                      */
	
	/* Backgrounds ___________*/
	/*--background-1:linear-gradient(180deg, var(--color-bg-1) 0%, var(--color-bg-2) 100%) fixed; */
	
	/* Text _____________*/
	/* change main font size here. mostly using vw for landscape and vh for portrait, with a maximum size (using min) */
	/*--main-text-size-landscape:min(3vw, 20px);         */
	/*--main-text-size-portrait:min(3vh, 20px);          */
	
	/* Asthetics ___________*/                           
	/*--border-radius:0.25em;                            */
	/*--topbar-height:50px;                              */
	
}

/** mmmmmmmmmmmmmmmmmmmmm Elements mmmmmmmmmmmmmmmmmmmmmmmm **/

body {
  margin: 0;
  font-family: var(--font-1), Arial, Helvetica, sans-serif;
  color: var(--color-text-normal);
  line-height:1.67em;
  background: var(--color-bg-1);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-2), Arial, Helvetica, sans-serif;
	color: var(--color-text-strong);
}

/** LINKS ***************************************************************************/
a:link{text-decoration:none; color:var(--color-link);}
a:visited{text-decoration:none; color:var(--color-link-visited);}
a:hover, a:visited:hover{text-decoration:none; color:var(--color-link-hover);}
a:active{text-decoration:none; color:var(--color-link-active);}
a img{ border:0px; }

/** mmmmmmmmmmmmmmmmmmmmm Header mmmmmmmmmmmmmmmmmmmmmmmm **/
.header{
	text-align:center;
}

/** mmmmmmmmmmmmmmmmmmmmm Logo mmmmmmmmmmmmmmmmmmmmmmmm **/
.logo{
	text-align:center;
	height:150px;
	background-image: url("logo.png");
	background-position: center;
	background-repeat: no-repeat;
}

/** mmmmmmmmmmmmmmmmmmmmm Navigation mmmmmmmmmmmmmmmmmmmmmmmm **/
.topnav {
  overflow: hidden;
  background-color: var(--color-accent-1);
  position:sticky;
  top:0;
  text-align: center;
}

.topnav a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #aaccff;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  /*.topnav a:not(:first-child) {display: none;}*/
  .topnav a:not(:last-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: sticky;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/** mmmmmmmmmmmmmmmmmmmmm Page Elements mmmmmmmmmmmmmmmmmmmmmmmm **/
.centerpage{
	width:80%;
	max-width:800px;
	margin:auto;
}
.centerpage a{
	text-decoration:underline !important;
}
.fspromotional{
	font-size:1.2em;
	padding:1em;
}
.fscontent, .fsdivdesc{
	padding-top:2em;
}
.fsdivlister{
	border-bottom:1px solid #aaa;
	padding: 1em 0 0 0.5em;
}
.fsdivlister p{
	font-size:0.8em;
	color: var(--color-text-weak);
}
.fsdivlister img{
	display:inline-block;
	width:100%;
}
.fsthumb{
	width:100%;
}

/** mmmmmmmmmmmmmmmmmmmmm Flexible content and sidebar mmmmmmmmmmmmmmmmmmmmmmmm **/
@media screen and (min-width: 800px) {
	.centerpage{
		display:flex;
		gap:4em;
		flex-direction:row;
	}
	.contentbox{
		flex:3; /* 3 units width */
	}
	.sidebar{
		flex:1; /* 1 unit width */
		padding-top:4em;
		border-top:1px solid var(--color-bg-1) !important;
	}
}
.sidebar{
	border-top:1px solid var(--color-border-1);
		padding-top:2em;
}

/** mmmmmmmmmmmmmmmmmmmmm Content Images and videos mmmmmmmmmmmmmmmmmmmmmmmm **/
.fullwidth{
	width:100%;
}

/************ VIDEO CONTAINER ELASTIC **************										
Wrap any video with <div class=video-container> and it will max-out!
Without max-out, wrap it inside another div with a fixed width (limit it) and max-width:100% (elastic)
<div class="width400 maxwidth100p"><div class=video-container> video here </div></div>
*/
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin:1em auto 1em auto;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/** mmmmmmmmmmmmmmmmmmmmm Main Footer mmmmmmmmmmmmmmmmmmmmmmmm **/
.footer{
	background-color: var(--color-accent-1);
	color: var(--color-text-strong-reverse);
	margin-top:2em;
}
.footer h4{ color: var(--color-text-strong-reverse); margin:0.5em 0  0.5em 0}
.footer ul{ margin:0px; }
.footer .inside{
	margin:auto;
	width:80%;
	max-width:800px;
	padding:1em 0 1em 0;
}
.footer .inside a{
	color:var(--color-text-strong-reverse);
	text-decoration:none;
}
.footer .inside .section{
	display:inline-block;
	padding:2em;
	vertical-align:top;
}