@charset "utf-8";
/* CSS Document */

/*
Framework by Andy Shearouse
*/
html, body{
	margin:0px !important;
	padding:0px !important;
	background-color: #231b3b;
	color: aliceblue;
	font-family: Arial, Helvetica, sans-serif;
}

img{
	max-width:100% !important;	
}

.container{
	max-width:2400px;
	width:100%;
	margin:0 auto;
	position:relative;
}

.header{
    width: 100%;
    display:grid;
}
h1{
	font-size: 60px;
	font-family: Arial, Helvetica, sans-serif;
}
h2{
    font-size:50px;
}
 p{
	font-size: 20px;

}

.logo{
    place-self:center;
    padding:10px;
}

/*Use the following for top drop-down nav
Change the background-color in #nav to change the color of the navigation bar
Change the background-color in #nav ul li ul to change the background color of the dropdown menus
These values do also need to be changed further down, in the 600px, 400px, and 300px wide sections 
*/
/* -------------------- Start Navigation -------------------- */
	#nav{
	width: 100%;
	z-index:10;
	position:relative;
	float:left;
	font-size:18px;
	margin-bottom:15px;
	place-self:center;
	}

	#nav > a{
	display: none;
	}

	#nav li{
	position: relative;
	list-style-position:inside;
	list-style-type:none;
	}
	#nav li a{
	color: aliceblue;
	display: block;
	text-decoration:none;
	}

	#nav li a:hover{
		color: #a7138e;
	}

	/* first level */

	#nav > ul{
	padding-left:0px !important;
	margin-left:0px !important;
	}
	#nav > ul > li{
	margin:0px 15px;
	padding:4px 8px;
	height: 100%;
	display:inline-block;
	}
	#nav > ul > li > a{
	height: 100%;
	text-align: center;
	}
	#nav > ul > li:not( :last-child ) > a{

	}

	#nav > ul > li:hover > a,
	#nav > ul:not( :hover ) > li.active > a{

	}

	/* second level */

	#nav li ul{
	background-color:#ccc;
	display: none;
	position: absolute;
	top: 100%;
	margin-left:0 !important;
	padding-left:0 !important;
	width:170px;
	text-align:left;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	}
	#nav li:hover ul{
	display: block;
	left: 0;
	right: 0;
	}
	#nav li:not( :first-child ):hover ul{
	left: -1px;
	}
	#nav li ul a{
	color:#000;
	padding: 0.75em; /* 15 (20) */
	}
	#nav li ul li a:hover,
	#nav li ul:not( :hover ) li.active a
	{
	}
/* -------------------- End Navigation -------------------- */

.content{
	width:100%;
	display:inline-block;
	padding-bottom:20px;
}
#footer-fst{
	padding:10px 0;
	place-items: center;
	text-align: center;	
	
}
#footer-fst ul{
list-style: none;
}


.grid-two-thirds-one-third{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:2fr 1fr;
	grid-template-columns:2fr 1fr;
}

.grid-one-fourth-three-fourths{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:1fr 3fr;
	grid-template-columns:1fr 3fr;
}

.grid-three-fifths-two-fifths{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:3fr 2fr;
	grid-template-columns:3fr 2fr;
}

.grid-two-fifths-three-fifths{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:2fr 3fr;
	grid-template-columns:2fr 3fr;
}

.grid-two-columns{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:1fr 1fr;
	grid-template-columns:1fr 1fr;
}

.grid-three-columns{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:1fr 1fr 1fr;
	grid-template-columns:1fr 1fr 1fr;	
}

.grid-four-columns{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:1fr 1fr 1fr 1fr;
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.grid-five-columns{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns:1fr 1fr 1fr 1fr 1fr;
	grid-template-columns:1fr 1fr 1fr 1fr 1fr;
}

.grid-one-fifth-four-fifths{
	-ms-grid-columns:1fr 4fr;
	grid-template-columns:1fr 4fr;
}

.footer{
	
	
}

.no-margin{
	margin:0px !important;
}

.no-padding{
	padding:0px !important;	
}

.no-bold{
	font-weight:normal !important;	
}

.no-border{
	border:none !important;
}

.center{
	text-align:center;	
}

.block{
	display:block !important;	
}

.board-grid{
    grid-gap:15px;
    margin:0 2%;
}

.mission{
    margin:3% auto;
}

#footer-fst a{
    color:#fff;
}

#footer-fst a:visited{
    color:#fff;
}
@media only screen and (max-width:1200px){
	
}

@media only screen and (max-width:960px){	
	.grid-four-columns{
		-ms-grid-columns:1fr 1fr;
		grid-template-columns:1fr 1fr;
	}
	.grid-five-columns{
		
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns:1fr 1fr;
	}
}

@media only screen and (max-width:720px){
	/* -------------------- Start Navigation -------------------- */
	#nav{
        position: relative;
    }
    #nav img{
        vertical-align:middle;
    }
	#nav > a{
	}
	
	#nav:not( :target ) > a:first-of-type,
	#nav:target > a:last-of-type{
		display: block;
		width:100%;
		text-align:center;
		color:#fff;
		font-size:20px;
		padding:5px 0px;
		text-decoration:none;
	}
	
	#nav a{
		font-size:18px;	
	}
 
    /* first level */
    
    #nav li a{
        color:#000;
    }
 
    #nav > ul{
        height: auto;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
		background-color:#ccc;
		margin-top:8px !important;
		padding-bottom:10px;
    }
	#nav:target > ul{
		display: block;
	}
	#nav > ul > li{
		width: 100%;
		float: none;
		margin:0px !important;
		padding:4px 0px;
	}

    /* second level */
 
    #nav li ul{
        position: static;
		width:98%;
		margin:0 !important;
		text-align:center;
		padding:0 !important;
    }
	#nav li ul a{
		padding:0.5em 0;
		margin:0.25em 0;
	}
	/*End Navigation*/
	
	.grid-two-thirds-one-third{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-one-fourth-three-fourths{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-one-fifth-four-fifths{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-two-fifths-three-fifths{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-three-fifths-two-fifths{
    	-ms-grid-columns:1fr;
		grid-template-columns:1fr;
    }
	
	.grid-two-columns{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-three-columns{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	
	.grid-four-columns{
		-ms-grid-columns:1fr;
		grid-template-columns:1fr;
	}
	.grid-five-columns{
		
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.footer{
		text-align:center;
	}
	
	.footer-left{
		float:none;
		padding:10px 0px 0px 0px;
		display:block;
	}
	
	.footer-right{
		float:none;
		padding:0px 0px 0px 0px;
		display:block;
	}
	
	.how_it_works{
	    padding-top:10px;
	    margin:4% auto !important;
	}
	
	.hero{
	    padding:0 0 60px 0 !important;
	}
	
}

@media only screen and (max-width:600px){
	
}

@media only screen and (max-width:480px){
	
}


/*Custom add-ins*/
/*Hero*/
	.hero{
		margin: auto;
		padding: 0 20px 60px 20px;
		font-weight: bold;
		font-family: Arial, Helvetica, sans-serif;
		max-width:1000px;
		width:100%;
		position:relative;
	}
	
	
	.hero button {
		align-items: center;
		background-color: #231b3b;
		border: 1px solid aliceblue;
		border-radius: 30px;
		box-sizing: border-box;
		color: #a7138e;
		display: flex;
		font-size: 18px;
		justify-content: center;
		line-height: 28px;
		max-width: 100%;
		padding: 14px 22px;
		text-decoration: none;
		transition: all .2s;
		user-select: none;
		-webkit-user-select: none;
		touch-action: manipulation;
		width: 100%;
	}

	.hero button:active,
	.hero button:hover {
	outline: 0;
	}

	.hero button:hover {
	background-color: #a7138e;
	color: aliceblue;
	border: 1px solid #231b3b;

	}

	@media (min-width: 768px) {
	.hero button {
		font-size: 20px;
		min-width: 200px;
		padding: 14px 16px;
	}
	}

	

	
/*Hero end*/

/*how it works*/
	.how_it_works{
		background-image: url(images/airplane-bg.jpg);
		background-color: transparent;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width:100%;
		margin:0 auto;
		position:relative;
		display:grid;
	}
	

	.how_it_works .grid-four-columns div{
		padding: 10px;
		text-align: center;
	}

/*end*/

/*board*/
  
  .description {
	white-space: wrap;
  }
  
  .wrap {
	display: flex;
	justify: space-between;
	align-items: stretch;
	width: 100%;
	gap: 24px;
	padding: 24px;
	flex-wrap: wrap;
  }
  
  .box {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	position: relative;
	padding: 24px;
  }
  
  .box-top {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 12px;
	margin-bottom: 36px;
  }
  
  .box-image {
	width: 100%;
	object-position:50%;
  }
  
  .title-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .box-title {
	border-left: 3px solid purple;
	padding-left: 12px;
  }
  

  
  /* RESPONSIVE QUERIES */
  
  @media (min-width: 320px) {
	.title-flex {
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-start;
	  align-items: start;
	}
	
  }
  
  @media (min-width: 460px) {
	.title-flex {
	  display: flex;
	  flex-direction: row;
	  justify-content: space-between;
	  align-items: start;
	}
	
  }
  
  @media (min-width: 640px) {
	.box {
	  flex-basis: calc(50% - 12px);
	}
	.title-flex {
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-start;
	  align-items: start;
	}
	
  }
  
  @media (min-width: 840px) {
	.title-flex {
	  display: flex;
	  flex-direction: row;
	  justify-content: space-between;
	  align-items: start;
	}
	
  }
  
  @media (min-width: 1024px) {
	.box {
	  flex-basis: calc(33.3% - 16px);
	}
	.title-flex {
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-start;
	  align-items: start;
	}
	
  }
  
  @media (min-width: 1100px) {
	.box {
	  flex-basis: calc(25% - 18px);
	}
  }
  
/*end*/