a{
	color: #006338;
}

a:visited{
	color: #006338;
}

a:active{
	color: black;
}

.header-winter {
	background: 
    /* top, transparent black */ 
    linear-gradient(
      rgba(0, 0, 0, 0.25), 
      rgba(0, 0, 0, 0.25)
    ),
    /* bottom, image */
    url(https://crew316.org/images/slide1.png);
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px;
  margin-top: 55px;
  font-family: Roboto, sans-serif, Helvetica, Arial;
  text-align: center;
  color: white;
  padding-top: 90px;
  padding-bottom:90px;
  font-size: 30px;
}

::-webkit-scrollbar {
    -webkit-border-radius: 100px;
    background-color: rgba(0,0,0,0);
    width: 10.5px;
}
::-webkit-scrollbar {
    height: 16px;
    overflow: visible;
}
::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}
body::-webkit-scrollbar-corner {
    background-clip: padding-box;
    background-color: #f5f5f5;
    border: solid #fff;
    border-width: 3px 0 0 3px;
    -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.14);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.14);
}
::-webkit-scrollbar-corner {
    background: transparent;
}
body::-webkit-scrollbar-thumb {
    border-width: 0px 0px 0px 0px;
}
::-webkit-scrollbar-thumb {
    border: 1px solid rgba(255,255,255,0.4);
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 100px;
    background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb {
    border: solid transparent;
    border-width: 1px 1px 1px 6px;
    min-height: 28px;
    padding: 100px 0 0;
    -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1), inset 0 -1px 0 rgba(0,0,0,.07);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1), inset 0 -1px 0 rgba(0,0,0,.07);
}
::-webkit-scrollbar-track {
    background-clip: padding-box;
    border: solid transparent;
    border-width: 0 0 0 0px;
}
body::-webkit-scrollbar-track-piece {
    background-clip: padding-box;
    background-color: #f5f5f5;
    border: solid #fff;
    border-width: 0 0 0 0px;
    -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.14), inset -1px 0 0 rgba(0,0,0,.07);
    box-shadow: inset 1px 0 0 rgba(0,0,0,.14), inset -1px 0 0 rgba(0,0,0,.07);
}

.contact-form input[type=text], [type=email], [type=tel] {
  width: 85%;
  padding: 10.5px 20px;
  margin: 8px 0;
  border-radius: 6px;
  box-sizing: border-box;
	border: 2px solid white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  font-size: 14.5px;
  background-color: white;
  font-family: 'Open Sans', sans-serif, Helvetica, Arial;
}

.contact-form input[type=text]:focus, [type=email]:focus, [type=tel]:focus {
	border: 2px solid #006338;
	border-radius: 6px;
}

.contact-form select {
  width: 85%;
  padding: 12px 20px;
  margin: 8px 0;
  border-radius: 6px;
  box-sizing: border-box;
	border: 2px solid white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  font-size: 14.5px;
  background-color: white;
  font-family: 'Open Sans', sans-serif, Helvetica, Arial;
}

.contact-form select:focus {
	border: 2px solid #006338;
	border-radius: 6px;
}

.contact-form textarea {
  width: 85%;
  padding: 12px 20px;
  margin: 8px 0;
  border-radius: 6px;
  box-sizing: border-box;
	border: 2px solid white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  resize: none;
  font-family: 'Open Sans', sans-serif, Helvetica, Arial;
  font-size: 14.5px;
  background-color: white;
}

.contact-form textarea:focus {
	border: 2px solid #006338;
	border-radius: 6px;
}

input[type=button], input[type=submit], input[type=reset], button {
  text-decoration: none;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	padding: 14px 16px;
	color: white;
	background-color: white;
	text-align: center;
	margin: 3px;
	border: 2px solid;
	border-color: #008A20;
	border-radius: 6px;
	background-color: #008A20;
	float: left;
	font-size: 16px;
	outline: none;
	cursor: pointer;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active, button:active {
	color: black;
	background-color: white;
}

label{
	cursor: text;
}

/* The container */
.container2 {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;

  border-radius: 50%;
  border-style: solid;
  border-color: #006338;
  border-width: 4px;
  
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container2 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container2 .checkmark:after {
 	top: 3px;
	left: 3px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #006338;
}

.header {
	background: 
    /* top, transparent black */ 
    linear-gradient(
      rgba(0, 0, 0, 0.25), 
      rgba(0, 0, 0, 0.25)
    ),
    /* bottom, image */
    url(https://crew316.org/images/ribbon.png);

	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px;
  margin-top: 55px;
  font-family: Roboto, sans-serif, Helvetica, Arial;
  text-align: center;
  color: white;
  padding-top: 90px;
  padding-bottom:90px;
  font-size: 30px;
}

.menu {
	display: none;
	float: right;
	font-size: 39px;
	padding-right: 10px;
	cursor: pointer;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 2; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Navbar container */
.navbar {
  background-color: white;
  font-family: 'Open Sans', sans-serif, Helvetica, Arial;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  width: 100%; 
  border-bottom: #cccccc solid 1px;
    z-index: 1;
  }

/* Links inside the navbar */
.navlink a{
  text-decoration: none;
  float: Right;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  font-family: 'Open Sans', sans-serif, Helvetica, Arial;
  margin-bottom: 0;
  border: 2px solid white;
  display: block;
}

/* Add a green background color to navbar links on hover */
.navlink a:hover {
  background-color: #008A20;
  color: white;
  border: 2px solid #008A20;
  border-color: #008A20;
}

.navlink a:active {
  background-color: white;
  color: black;
  border: 2px solid #008A20;
}

#logo{
	float: left;
	float: top;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-left: 10px;
}	

body {
	margin: 0;
	background-color: #e6efeb;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
}

.sechead{
	font-family: Roboto, sans-serif, Helvetica, Arial;
	margin-left: 10px;
	color: #008A20;
	width: 97.95;
}

.sechead a{
	color: #006338;
}

.sechead a:visited{
	color: #006338;
}

.sechead a:active{
	color: black;
}

.secbody{
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	margin-left: 50px;
	padding-right: 20px;
	width: 97.95;
}

.secbody a{
	color: #006338;
}

.secbody a:visited{
	color: #006338;
}

.secbody a:active{
	color: black;
}

.but1 a{
	text-decoration: none;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	padding: 14px 16px;
	color: white;
	background-color: white;
	text-align: center;
	margin: 3px;
	border: 2px solid;
	border-color: #008A20;
	border-radius: 6px;
	background-color: #008A20;
	float: left;
}

.but1 a:active{
	color: black;
	background-color: white;
}

#butlearn a{
	margin-left: 5%;
}

.calendar-wrapper {
	width: 80%;
	padding-left: 0;
}

.calendar-container {
  overflow: hidden;
  padding-top: 75%;
  position: relative;
}

.calendar-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.calendar-text {
	display: none;
}

@media screen and (max-width : 700px){
	.calendar-wrapper {
	display: none;
}

.calendar-container {
  display: none;
}

.calendar-container iframe {
   display: none;
}

.calendar-text {
	display: block;
}
}

.location-wrapper {
	width: 60%;
	padding-left: 20%;
}

.location-container {
  overflow: hidden;
  padding-top: 75%;
  position: relative;
}

.location-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.hd-video-wrapper {
	width: 70%;
	padding-left: 15%;
}

.hd-video-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.hd-video-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.footer1{
	background-color: #008A20;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	padding: 14px;
	bottom: 0;
	width: 90;
	color: white;
	text-align: center;
	margin-top: 20px;
}
.sidenav2{
	float: left;
	border: 2px solid;
	border-color: white;
	border-radius: 6px;
	margin-left: 20px;
	margin-top: 20px;
	background-color: #dcf4e7;
}

.sidenav2 a {
	text-decoration: none;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
}

.sidenav2 li a:hover {
	background-color: #008A20;
	color: white;
	border: #008A20 solid 2px;
}

.sidenav2 li a:active {
	background-color: #dcf4e7;
	color: black;
	border: #008A20 solid 2px;
}

.sidenav2 li a {
	display: block;
	color: black;
	background-color: #dcf4e7;
	padding: 8px 16px;
	text-decoration: none;
	margin: 0px;
	border: #dcf4e7 solid 2px;
}

.sidenav2 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 200px;
	margin: 7px;
}

.container{
	float: right;
	width: 80%;
}

.footer2{
	background-color: #008A20;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	padding: 14px;
	bottom: 0;
	color: white;
	text-align: center;
	margin-top: 20px;
	clear: left;
	clear: right;
}

.footer2 a{
	color: white;
}

.footer2 a:active{
	color: white;
}

.footer2 a:visited{
	color: white;
}

.footer1 a{
	color: white;
}

.footer1 a:active{
	color: white;
}

.footer1 a:visited{
	color: white;
}

.secbodypro{
	float: right;
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	width: 80%;
}

.proimg{
	float: left;
	margin-left:10px;
}

.procontainer{
	overflow: auto;
}

.links{
	overflow: auto;
	margin-bottom: 7px;
	float: right;
	width: 98%;
}

.secred{
	font-family: 'Open Sans', sans-serif, Helvetica, Arial;
	margin-left: 50px;
	padding-right: 20px;
	width: 97.95;
	color: red;
}

.gform{
	text-align: center;
	margin-bottom: 0px;
}

.event {
	margin: 5%;
}

.event td {
	text-align: center;
	width: 50%;
	padding: 5px;
}

/* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #0c28b4;
  border-radius: 50%;
  border-top: 16px solid white;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}
::-moz-selection { /* Code for Firefox */
  background: #bbd3fd;
}

::selection {
  background: #bbd3fd;
}

@media screen and (max-width : 760px){
   .sidenav {
  display: block;
   }
   #menu {
	display: block;
	float: right;
	cursor: pointer;
}
.navlink {
	display: none;
}

.dropdown {
	display: none;
}

.menu {
	display: block;
}
}