/*********** CSS VARIABLES **********/
:root {
	--clr-primary: rgb(0, 22, 137);
	--clr-accent: rgb(255, 207, 1);
	--clr-white: #fff;
	--clr-gray: #333;
}

.angle {
  height: 0;
  width: 200px;
  border-top: 120px solid rgb(0, 22, 137);
  border-left: 0px solid transparent;
  border-right: 60px solid transparent;
}


/*********** UNIVERSAL STYLES **********/
img {
	padding: 10px;
}

/*********** UTILITY CLASSES **********/
.vertical-align {
    display: flex;
    align-items: center;
  }

.no-gutter {
	padding-left: 0;
	padding-right: 0 ;
}

.no-padding {
	padding: 0;
}

.no-top-padding {
	padding-top: 0;
}

.content-container {
	max-width: 1360px;
	margin: 0 auto;
}

.narrow-content-container {
	max-width: 900px;
	margin: 0 auto;
}

/*********** LAYOUT **********/

/*********** BOOTSTRAP 5 COLUMN GRID **********/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

/*********** BOOTSTRAP 7 COLUMN GRID **********/
.col-xs-7ths,
.col-sm-7ths,
.col-md-7ths,
.col-lg-7ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-7ths {
    width: 14.285714285714285714285714285714%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-7ths {
        width: 14.285714285714285714285714285714%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-7ths {
        width: 14.285714285714285714285714285714%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-7ths {
        width: 14.285714285714285714285714285714%;
        float: left;
    }
}

/*********** TYPOGRAPHY **********/
@font-face {
    font-family: 'ostrich_sansblack';
    src: url('../fonts/ostrich-black-webfont.woff2') format('woff2'),
         url('../fonts/ostrich-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TradeGothicLT-Light';
    src: url('../fonts/TradeGothicLT-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.emphasis {
	color: var(--clr-primary);
}

.long-drop-cap {
	font-size: 34px;
	color: var(--clr-primary);
	letter-spacing: -2.3px;
	font-weight: bold
}

a {
	text-decoration: none;
	color: var(--clr-primary);
}

a:hover,
a:focus {
	text-decoration: underline;
}

body {
	font-family: ostrich_sansblack;
}

p, li {
	/*font-family: TradeGothicLT-Light;*/
	font-family: 'Carrois Gothic', sans-serif;
	font-size: 16px;
}

h2 {
	font-size: 40px;
	color: var(--clr-primary);
}

h3 {
	font-size: 30px;
	color: var(--clr-primary);
}

hr {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

/*********** PAGE HEADERS **********/


@media only screen and (min-width : 992px) {
    .page-header {

    }
}

.page-header {
	background: var(--clr-accent);
	height: 180px;
	margin-top: 100px;
	margin-bottom: 75px;
	border: none;
}

.main-header {
	background: var(--clr-primary);
	color: white;
	text-align: right;
	margin-top: 30px;
	padding: 0;
}

.main-header h1 {
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0px 50px 0px 0;
	font-size: 50px;	
}

.sub-header {
	color: var(--clr-primary);
	font-size: 30px;
	margin-top: 27px;
	padding: 0px 8px 5px 50px;
	text-transform: uppercase;
}

.sub-header span {
	font-size: 20px;
}

/*********** NAVBAR **********/
.navbar-brand,
.navbar-nav li a {
    line-height: 60px;
    height: 60px;
    padding-left: 30px;
    padding-top: 0px;
    padding-bottom: 30px;
    font-size: 24px;
}

.navbar ul {
	padding-right: 20px;
}

.navbar img {
  height: 95px;
  padding: 5px;
  padding-left: 25px;
  width: auto;
}

.navbar {
	margin-bottom: 0;
}

nav li {
	font-family: ostrich_sansblack;
	text-transform: uppercase;	
}

.dropdown:hover .dropdown-menu {
	display: block;
}

@media only screen and (min-width : 992px) {

	.navbar-nav li a {
	    line-height: 100px;
	    height: 100px;
	    padding-top: 22px;
	    padding-bottom: 50px;
	    padding-left: 7px;
	}

	.dropdown-menu li a {
	    line-height: 60px;
	    height: 60px;
	    padding-left: 30px;
	    padding-top: 0px;
	    padding-bottom: 30px;
	    font-size: 24px;
	}
}

/*********** TOP BANNER **********/
.top-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
  margin-bottom: -25px;
/*  margin-left: 0px;
  margin-right: 10px;
*/}

.top-banner img {
  transform: scale(0.4);
}

@media screen and (min-width: 992px) {
  .top-banner img {
    transform: scale(1.0);
    /*padding: 10px;*/
  }
  .top-banner {
    margin-top: 102px;
    margin-bottom: 0;
  }

  .top-banner > div {
    display: flex;
    justify-content: center;
  }
}


/*********** SPLASH SCREEN **********/
#splash {
	background: url(../images/splash.jpg);
	height: 700px;
	background-size: cover;
	background-position: center;
	 margin-top: 80px; 
}

#headline {
	color: var(--clr-primary);
	padding-top: 20px;
	margin-right: 4px;
}

@media only screen and (min-width : 992px) {
	#headline {
		padding-top: 75px;
		margin-right: 30px;
	}
	#headline p {
		font-size: 35px;
	}
}

#headline p {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	text-align: right;
	text-shadow: 1px 1px 2px white;
}

.yellow-shadow {
	color: var(--clr-accent);
	text-shadow: 1px 1px 2px black;
}

#donate-button {
	margin-top: 430px;
	height: 60px;
	background: rgba(255,255,255,0.5);
}

@media only screen and (min-width : 992px) {
	#donate-button {
		margin-top: 220px;
	}
}

#donate-button a {
	color: var(--clr-accent);
	font-size: 50px;
	padding-left: 24px;
}

#doitlocalad {
	height: 180px;
	margin-top: 205px;
	padding-right: 4px;
}

@media only screen and (min-width : 992px) {
	#doitlocalad {
		height: 180px;
		margin-top: 200px;
		padding-right: 40px;
	}
}

/*********** MISSION **********/
#mission > div {
	background: white;
	text-align: center;
	/*height: 250px;*/
}

#mission-head h2 {
	font-size: 55px;
	color: var(--clr-primary);
	text-transform: uppercase;
	line-height: .8;
	padding: 44px 0px 5px 25px;
}

#mission-body p {
	font-size: 20px;
	padding: 0 25px 0px 25px;
}

#mission img {
	margin: 0 auto;
	padding-bottom: 0px;
}


@media only screen and (min-width : 992px) {
	#mission-head h2 {
		text-align: right;
		margin-top: 40px;
	}

	#mission-body p {
	margin: 80px 10px 50px 0px;
	font-size: 20px;
	text-align: left;
}

	#mission img {
		margin-left: -100px;
		margin-top: -35px;
	}
}

/*********** STATS **********/

#stats img {
	padding: 8px;
}

#stats-1 {
	background: #3369AF;
	overflow: hidden;
}

#stats-2 {
	background: #F7913C;
}

#stats-2 span {
	font-size: 50px;
	font-weight: bold;
}

#stats-3 {
	background: #F7913C;
}

#stats-4 {
	background: #0AB8EB;
}

#stats-5 {
	background: #3369AF;
}

@media only screen and (min-width : 992px) {

	#stats-1 {
		height: 320px;
	}

	#stats-2 {
		height: 320px;
	}

	#stats-3 {
		height: 220px;
	}

	#stats-4 {
		height: 220px;
	}

	#stats-5 {
		height: 220px;
	}

	#stats-5 img {
		padding-top: 25px;
	}
}

/*********** GET INVOLVED **********/
#get-involved {
	background: white;
	padding: 15px;
	text-align: center;
}

#get-involved p {
	padding: 0 55px;
	font-size: 20px;
	line-height: 1;
}

#get-involved h2 {
	color: var(--clr-primary);
	text-transform: uppercase;
	text-shadow: 1px 1px 2px grey;
}

#get-involved div {
	padding: 25px 0;
}

#get-involved a {
	color: #333;
}


/*********** Contact **********/
#social-media {
	color: white;
}

#social-media ul {
	padding-top: 25px;
}

#social-media h2 {
	text-transform: uppercase;
}

#social-media i {
	color: white;
}

#social-media li {
	padding-right: 20px;
}

.social-media-header {
	margin-left: -30px;
}

.social-media-header h2 {
	padding: 10px 0px 0px 30px;
}

#messenger {
	background: var(--clr-primary);
	color: var();
}

#messenger-header h2 {
	background: var(--clr-accent);
}

#messenger p {
	font-size: 20px;
}

#messenger a {
	color: var(--clr-white);
}

#messenger i {
	font-size: 50px;
}

#newsletter {
	background: var(--clr-accent);
	color: var(--clr-primary);
}

#newsletter h2 {
	color: white;
}

#mailing-list-header h2 {
	background: var(--clr-primary);
}

#newsletter p {
	font-size: 22px;
	color: var(--clr-primary);
	padding-top: 16px;
	line-height: 1;
}

#newsletter form {
	padding-top: 30px;
}

#newsletter button {
	color: var(--clr-primary);
	background: var(--clr-accent);
	height: 55px;
	font-size: 30px;
	font-weight: bold;
}

#newsletter i {
	color: var(--clr-primary);
}

#contact {
	background: var(--clr-primary);
}

#contact h3 {
	color: white;
	margin: 0;
	font-size: 30px;
	padding-top: 16px;
	padding-bottom: 0;
}

#contact h4 {
	margin: 0;
	font-size: 23px;
	padding-top: 16px;
}

#contact p {
	font-size: 15px;
}

#contact a {
  color: white;
}

#contact-header h2 {
	color: var(--clr-primary);
	background: var(--clr-accent);
}

.align-icon {
	display: inline-block;
	text-align: center;
}

#kit {
	padding: 0;
}

@media only screen and (min-width : 992px) {
	#contact {
		height: 450px;
	}

	#contact p {
		font-size: 17px;
	}

	#follow {
		height: 125px;
	}

	#newsletter {
		height: 450px;
	}

	#messenger {
		height: 450px;
	}
}

/*********** EMBRACE **********/
#embrace p {
  font-size: 20px;
  padding: 25px;
  line-height: 1.1;
}

#embrace > div {
  background: white;
  text-align: center;
}

#embrace img {
	max-width: 250px;
}

@media only screen and (min-width : 992px) {
  #embrace p {
  padding: 30px 30px 30px 0;
  font-size: 20px;
  text-align: left;
  }
}

/*********** DONATE **********/

#donate-page .btn {
	width: 150px;
	margin-top: 25px;
}

#donate-page img {
	text-align: center;
}

#donate-page p > a {
  text-decoration: none;
  color: var(--clr-primary);
}

.donate-icon {
	color: var(--clr-primary);
	font-size: 140px;
	margin: auto;
	display: inline-block;
	text-align: center;
	padding-bottom: 25px;
}

#donate-page h2 {
	color: var(--clr-primary);
	text-transform: uppercase;
	/* text-shadow: 1px 1px 1px black; */
}

/*********** BOOTSTRAP GRID WITH NO PADDING **********/
alt-grid [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

.alt-grid .row {
	margin-left: 0;
	margin-right: 0;
}

.alt-grid p {
	margin-bottom: 0;
}

/* container adjusted */
.alt-grid .container-fluid {
	width: 100%;
	max-width: none;
	padding: 0;
}

/*********** EVENTS **********/

.sidebar-btn {
	background: var(--clr-primary);
	color: white;
	border: 0 none;
}

#events-page li {
	padding: 5px;
}

#sponsors {
	margin-top: 60px;
}

#summerdaze-info {
	margin-top: 50px;
}


/***********  CAREERS **********/

#careers .btn {
	margin-bottom: 45px;
	background: var(--clr-primary);
}

/*********** HISTORY **********/

#history img {
	padding: 0;
	margin: 0;
}

#history .page-header {
	margin-bottom: 0px;
}

/*********** ABOUT US **********/

#core-team .page-header,
#board .page-header {
	margin-bottom: 0;
	border: none;
}

#core-team .panel,
#board .panel {
	border: none;
	box-shadow: none;
}

#core-team .panel-footer,
#board .panel-footer {
	background-color: inherit;
	border: none;
}

.core-pic {
	width: 100%;
	padding: 0;
}

.employee-name {
	font-size: 2.5rem;
}

.employee-title {
	text-transform: uppercase;
	color: var(--clr-gray);
}

.employee-email {
	color: var(--clr-gray);
	letter-spacing: 1.5px;
}

#program-leadership h2 {
	/* color: var(--clr-accent);
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 50px;
	padding-top: 5px; */
}

@media only screen and (min-width : 992px) {
	.bio {
		/* display: none; */
	}
}

.bio {
	padding: 10px;
}

.bio p {
	font-size: 15px;
	text-align: left;
}

#board .bio {
	margin-top: 10px;
}

.board-member h3 {
	font-size: 30px;
	margin-bottom: 0;
}

.board-member h4 {
	font-size: 16px;
	color: var(--clr-primary);
	margin-top: 0px;
}

#board .page-header {
	margin-bottom: 0;
}

#program-leadership .page-header {
	margin-bottom: 0;
}

/*********** PROGRAMS **********/

@media only screen and (min-width : 992px) {
	.program-description {
		/* background-color: #F7913C; */
	}
}

.program-description p {
	padding-left: 12px;
	padding-right: 12px;
}

.program-description h2,
.program-description h3 {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 0;
}

.contact-info {
	padding-left: 12px;
	text-align: center;
	padding-bottom: 30px;
}


@media only screen and (min-width : 992px) {
	.contact-info {
		text-align: left;
	}
}

.contact-info a {
  text-decoration: none;
  color: #333;
}

.contact-info a:hover {
  color: var(--clr-primary);
}

.contact-info p {
	margin: 0;
}

.pm-photo {
	max-width: 200px;
	/* margin: 0 auto; */
	border-radius: 100%;
	/* padding-left: 24px; */
}

#giving-back p {
	/* color: white; */
	display: inline;
	/* padding: 0px 5px; */
}

#giving-back h3 {
	color: var(--clr-primary);
	text-transform: uppercase;
	/* text-shadow: 1px 1px 1px black; */
}

#giving-back li {
	/* padding: 5px; */
}

/*********** VOLUNTEER **********/
.flush-img {
	width: 100%;
	padding: 0;
	margin: 0;
}

#volunteer .page-header {
	margin-bottom: 0;
}

#volunteer a {
  text-decoration: none;
  color: var(--clr-primary);
}


/*********** Stake In the Future **********/
#stakeinthefuture .page-header {
	margin-bottom: 0;
}

#stakeinthefuture .btn {
	 margin-top: 10px;
	 margin-left: 0px;
	 margin-bottom: 50px;
	 letter-spacing: 3px;
	 padding: 18px;
	 font-size: 14px;
   background-color: var(--clr-primary);
   color: white;
}

#event-sponsors li a {
	color: var(--clr-primary);
}

@media only screen and (min-width : 992px) {
	#stakeinthefuture .btn {
		margin-bottom: 0;
	}
}


/*********** DONATE **********/
#wishlist h3 {
    font-size: 24px;
    color: var(--clr-primary);
    /* text-shadow: 1px 1px 1px black; */
}

/*********** FOOTER **********/
#footer {
	padding: 0;
	margin-right: -15px;
	margin-left: -15px;
	margin-top: 0px;
	background-color: rgb(88,89,91);
	text-align: center;
}

#footer h2 {
	text-transform: uppercase;
	font-size: 25px;
	padding-top: 0px;
	color: var(--clr-accent);
}

#footer li {
	font-size: 15px;
	color: white;
}

#footer a {
	font-size: 15px;
	color: white;
}

#footer a:focus-visible {
	padding: 5px;
}

#footer ul {
	padding-bottom: 25px;
}


@media only screen and (min-width : 992px) {
	#footer h2 {
		padding-top: 30px;
	}
}

.vex-dialog-form {
	background-color: #f1f1f1;
	color: var(--clr-gray);
	padding: 1rem;
	border-radius: 10px;
}

.vex-dialog-form h3 {
	font-weight: 700;
	color: var(--clr-primary);
}

.vex-dialog-form a {
	color: var(--clr-white);
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--clr-primary);
	/* border: 1px solid var(--clr-white); */
	/* display: inline-block; */
	margin: 0 auto;
	padding: .5rem 1rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	width: 50%;
}

.vex.vex-theme-default .vex-content {
	/* padding: 0;
	background: transparent;
	background-color: aqua; */
}

.vex.vex-theme-top .vex-content {
	/* padding: 0;
	background: transparent; */
	/* width: 600px; */
}

.vex-dialog-message {
	display: flex;
	flex-direction: column;
	text-align: center;

}

.vex-dialog-message > a > img {
	max-width: 100%;
}

.vex-dialog-buttons {
	display: flex;
	justify-content: center;
}


/*********** SQUARE PURCHASE BUTTONS **********/

@media only screen and (min-width : 992px) {
  .square {
    margin: 5px;
  }
}

.square {
  overflow: auto;
  margin:  20px 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: -2px 10px 5px rgba(0, 0, 0, 0);
  border-radius: 10px;
  /*font-family: SQ Market, SQ Market, Helvetica, Arial, sans-serif;*/
}

.square-price {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}

.square-item {
  font-size: 18px;
  line-height: 20px;
}

.square-button {
  display: inline-block;
  font-size: 24px;
  line-height: 48px;
  height: 48px;
  color: #ffffff;
  min-width: 212px;
  background-color: var(--clr-accent);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
  border-radius: 5px;
}

.square-price-sub {
  font-size: .7em;
  color: gray;
}