:root {
  --blue:#0A3161;
  --red: #B31942;
}

body {
  background-color: var(--blue);
  margin: 0 auto;
  width: 90%; 
}

.everything {
  background-color: whitesmoke;
  width: 90%; 
  margin: 0 auto;

  /*
  display: flex;
  flex-direction: column;
  */
}

header {
  flex: 1 1 15%;
}

/* nav bar */

nav, nav ul, nav li{
	margin:0;
	padding:0px;
}

nav ul{
  list-style:none;
  display: flex;
  flex-direction: row; 
  margin: 0 auto;
}

nav ul li {
  flex: 1 1 15%;
}

nav ul a{
  display: block;
  text-align: center;
	padding:6px 10px;
	color: #FFFFFF;
	background-color: var(--blue);
	text-decoration:none;
  font-size: 1.25em;
  height: 100px;
  align-content: center;
}

nav ul li:hover a:hover{ 
    background-color: var(--red);
}

nav img {
  border-radius: 50%;
  height: 100px;
}

/* End Nav Bar */

.main {
  margin: 0 auto;
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  font-size: 1.35em;
}

h1 {
  font-weight: bolder;
  text-decoration: underline;
  text-transform: capitalize;
  /* font-size: 2em; */
  font-family: serif;
  text-align: center;
  color: var(--blue);
}

h2 { font-size: 1.25em;}

h3 { font-size: 1.15em;}

h1 ~ p:not(.vision) {
  text-align: center;
  font-size: 1.25em;
  font-style: italic;
}

.full-banner {
  padding: 0;
  display: block;
  margin: 0 auto;
  width: 100%; 
}

.container {
  flex: 1 1 10%;
  padding: 10px;
  margin: 10px 0;

  display: flex;           /* makes this a flex container */
  flex-direction: row;  
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 4%;

}

.container img {
  margin:0 5%;
  width: 18rem;  
}

.container img.horizontal-img {
  width: 25rem;
}

.container p {
 
  width: 45%;
}


p.importantPoint {
  font-weight: bold;
  font-size: 1.5em;
  color: var(--red);
}

.clear {
  background-color: blue;
  font-size: 50px;
  font-weight: bolder;
  text-align: center;
  clear: both;
}
  
.interact{
  flex: 1 1 10%;
  display: flex;
  flex-direction: column;
}

.div-button{
  text-align: center;
}

a.donateBTN:link, a.donateBTN:visited {
  color: white;
  padding: 14px 25px;
  background-color: var(--red);
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 50%;
  margin: 0 auto;
  margin-top: 10px;
}

a.donateBTN:hover, a.donateBTN:active {
  background-color: var(--blue);
}

.container_contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
  flex: 1 1 90%; 
  align-items: center;
 
}


div.contact_info {
    display: flex;
    flex-direction: row;
   flex-wrap: wrap; 
    padding: 20px;
    justify-content: space-around;
    font-size: 1em;
    line-height: 1.1em;
    color: var(--red);
    align-items: flex-start;
    background-color: whitesmoke;
    border-top: 25px var(--blue) solid;
    padding-left: 35px;
}

footer h3 {
  color: var(--blue);
}

footer .contact_info a, footer .contact_info a:visited {
  color: var(--blue);
}





.contact_us {
  border-radius: 5px;
  padding: 20px;
  flex: 1 1 45%;
}

.contact_info a {
  color: var(--blue);
}

/* start form */
input[type=text], input[type=email], select, textarea, input {
  width: 90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: var(--red);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: var(--blue);
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

fieldset {
  width: 90%;
  padding: 10px;
}

legend {
  font-size: 1.35em;
  text-decoration: underline;
}
/* End Form */


/* Resume page */

  ul.no-bullet {
    list-style-type: none;
    font-style: italic;
    margin: 0;
    padding: 0;
  }

/* end resume page */

/* start policy page */

.everyones-sheriff {
  text-decoration: underline;
  font-style: italic;
}

/* end policy page */

/* start events page */
.events-container {
  justify-content: space-around;
  margin: 0 auto;
  width: 60%;
  text-align: center;
}

.container-golf {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      flex-wrap: wrap;
    }
.container-golf img {
  width: 30%;
  margin-bottom: 10px;
}

.calendar h2{
   text-align: center;
  
}
.calendar iframe {
  width: 75%;
  min-width: 20rem;
  display: block;   
  margin: 0 auto;
  
}
/* end events page */

/* start Press Release Page */

.collapsible {
  background-color: var(--blue);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
}

.active, .collapsible:hover {
  background-color: var(--red);
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  margin: 0 auto;
}


.collapsible:after {     /* +/- sign */
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

/* end press release page */



footer {
    flex: 1 1 5%;
    background-color: var(--red);
  color: whitesmoke;
}

footer nav {
  height: auto; 
}

footer nav a {
  height: 50px;
  font-size: 1em;
}
/*

@media screen and (max-width: 480px) {
  .bodyContent {overflow: auto; display: block;}
    nav {
      margin: 0; 
      padding: 0;
    }
    nav ol {margin: 0; 
            padding: 0;
           }
    nav li {
      list-style: none;
    }
    nav a {
      display: block; 
      margin: 0; 
      padding: 10px; 
      width: 90%; 
      border-bottom: 1px solid black; 
      text-align: center; 
      color: white; 
      background-color: var(--blue); 
      text-decoration: none; 
    }
}

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

*/

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 3em;
  color: white;
  cursor: pointer;
  padding: 10px;
  background-color: var(--blue);
}

/* Mobile nav behavior */
@media screen and (width <= 850px) {
  body {
    font-size: 8px;
  }
  
.container img {
  margin:0 5%;
  width: 40%;  
}

.container img.horizontal-img {
  width: 40%;
}

  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--blue);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    flex: none;
    width: 100%;
    border-bottom: 1px solid white;
  }

  nav ul a {
    height: 1.25em;
    padding: 10px;
    font-size: 1.25em;
  }

  nav img {
  border-radius: 50%;
  height: 2.3em;
    margin-bottom: 10px;
}
  .container {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;

  }

  .container img {
     width: 60%;
  margin:0 auto;

}

.container img.horizontal-img {
  width: 60%;
  margin: 0 auto;
}

.container p {
 text-align: justify;
 width:100%;
}

.interact {
    font-size: 1em;
}
  .collapsible {
  background-color: var(--blue);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}

div.contact_info {
   font-size: 1.35em;
    padding-left: 0;
}

.col-25 {
    width: 30%;
    font-size: 1.2em;
}

.col-75 {
    width: 70%;
    font-size: 1.2em;
}

input[type=text], input[type=email], select, textarea, input {
  width: 90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.2em;

}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-size: 1.2em;
}
}
