/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

/* Give Today Bar */
/* ready section */
.applyBar {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	padding: 10px;
	right: 0;
	width: 100%;
	color: #fff;
	text-align: center;
	overflow: hidden;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0,0,0,.4);
	transition: all 0.5s;
}
.headroom--unpinned:not(.headroom--bottom) .applyBar {
	top: 0;
    padding-left: 2px;
}
.headroom--pinned .applyBar, .headroom--bottom .applyBar {
	top: var(--headroom-height);
    padding-left: 2px;
}

/* End Give Today Bar */

body#index.evergreen .jumbo header {
	padding: 20px;
}

body#index.evergreen .page-header {
	padding: 160px 20px 100px 20px;
}

.content-wrap h1, .content-wrap h2, .content-wrap h3, .content-wrap h4 {
	font-family: "Rajdhani", sans-serif; 
	text-transform: uppercase;
	font-weight: 600;
}

.content-wrap {
	font-family: "Georgia", sans-serif;
}

.bg-uvu-dark-green {
	background-color: #003300;
}

.image-fade li figcaption {display: none;}

.grow { 
transition: all .2s ease-in-out; 
}

.grow:hover { 
transform: scale(1.1); 
}

.give-today-action {
	font-size: 24px; 
	text-transform: 
	none !important; 
	text-align: center; 
	color: #009933;
	margin: 0 15% 0 15%;
}

.home-intro-text {
	font-size: 17px;

}

/* Forms */
.evergreen-form .wFormContainer { margin: 0px auto; }

.evergreen-form .wFormContainer .wFormHeader { height: 0px; margin-bottom: 0px; }

.evergreen-form .wFormContainer .supportInfo { display: none; }

/* End Forms */


/* ============= Home page styles ====================*/

.make-difference-text {
	color: #00B050;
	font-size: 60px;
}

.bg-home {
	background-position: top center;	
}

.bg-home.fullbleed:not([class*="parallax"]) {
	background-size: contain;
	background-repeat: no-repeat;
}

.bg-home header {
	padding: 130px 20px 20px 20px;
	justify-content: center;
}

.bg-home.fullbleed:before {
	background-image: url('/evergreen/images/mosaic.png');
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 60%;
}


/* =============== Progress Bar Styles ============== */

.campaignprogressbar {
  box-sizing: content-box;
  height: 50px; /* Can be anything */
  position: relative;
  margin: 20px 0 20px 0; /* Just for demo spacing */
  background: #275D3B;
  border-radius: 0px;
  padding: 0px;
}
.campaignprogressbar > span {
  display: block;
  height: 100%;
  border-radius: 0px;
  background-color: rgba(0,153,51,1);
  position: relative;
  overflow: hidden;
}
.campaignprogressbar > span:after,
.animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(0,153,51,1) 0%, rgba(0,107,0,1) 100%);
  z-index: 1;
  border-radius: 0px;
  overflow: hidden;
}

/* =============== End Progress Bar Styles ==================== */


/* ============== Hover Card Styles ==================== */

.hover-card {
	width: 100%;
	height: 200px;
	transition: background-image 0.75s ease;
	background-repeat: no-repeat;
	background-position: top center;
	object-fit: cover;
}

.hover-card p {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4)
}

.hover-card a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: "Rajdhani", sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
}

.hover-card a:hover {
	text-decoration: none;
	color: #fff;
}

.hover-card.givetoday {
	background-image: url(/evergreen/images/give-bw.jpg);	
}

.hover-card.givetoday:hover {
	background-image: url(/evergreen/images/give-color.jpg);
}

.hover-card.involved {
	background-image: url(/evergreen/images/involved-color.jpg);
}

.hover-card.involved:hover {
	background-image: url(/evergreen/images/involved-bw.jpg);
}

.hover-card.learnmore {
	background-image: url(/evergreen/images/learnmore-bw.jpg);
}

.hover-card.learnmore:hover {
	background-image: url(/evergreen/images/learnmore-color.jpg);
}



/* =============== End Hover Card Styles =================== */


/*End mobile and up styles*/


/* ============== Start of Social Media Styles ==================== */

.facebook {
	--brandColor: #4267B2;
	--textColor: white;
	--icon: '\f230';
}
.instagram {
	--brandColor: #e95950;
	--textColor: white;
	--icon: '\f16d';
}
.twitter {
	--brandColor: #1da1f2;
	--textColor: white;
	--icon: '\f099';
}
.linkedin {
	--brandColor: #2867b2;
	--textColor: white;
	--icon: '\f0e1';
}

/*.social .display-social{
	margin: -5px;
	display:flex;
	flex-direction:row;
	flex-wrap: wrap;
	justify-content:flex-start;
	align-items:center;
	align-content:center;
	
}*/
.social .button-solid {
	background-color: var(--brandColor);
	border-color: var(--brandColor);
	color: var(--textColor);
	margin: 5px;
	flex: 1 1 30%;
}
.social .button-solid:hover {
	text-decoration: none;
}
.social .button-solid::before {
	content: var(--icon, inherit);
	color: currentColor;
	font: inherit;
	font-family: 'FontAwesome';
	margin-right: 20px;
}

/* ============== End of Social Media Styles ==================== */

/* ============== Home Header Media Styles ==================== AF*/

.grid-container {
  display: flex;
  justify-content: flex-end;
  background-image: url('');
}


.logo-center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

/* ============== End Home Header Media Styles ==================== */


/* ============== Start Dynamic Info ==================== AF*/
.dynamic-icon {
    font-size: 50px;
    margin-left: 13px;
}

.icontext-font {
	font-size: 25px;
}

.icon-number-font {
	font-size: 45px;
	padding-bottom: 10px;
}

.boarder-right {
	border-right: none;
}

.boarder-right-2 {
	border-right: none;
}

/* ============== End of Dynamic Info Styles ==================== */

/* ============== Start of Image Fader Styles ==================== AF*/

.image-fade {
  position: relative;
}

.image-fade img {
	position: absolute;
}

.top {
	animation-name: fade;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation-direction: alternate;
	animation-delay:5s;
}

@keyframes fade {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.carousel {
  position: relative;
  margin: 0 auto;
  	animation-name: fadeCarousel;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation-direction: alternate;
	animation-delay:5s;
}

.carousel img {
	-webkit-animation-name: fadeCarousel;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 8s;
    -moz-animation-name: fadeCarousel;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite;
    -moz-animation-duration: 8s;
    -o-animation-name: fadeCarousel;
    -o-animation-timing-function: ease-in-out;
    -o-animation-iteration-count: infinite;
    -o-animation-duration: 8s;
    animation-name: fadeCarousel;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 8s;
}

@keyframes fadeCarousel {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.carousel img:nth-of-type(1) {
  animation-delay: 15s;
}
.carousel img:nth-of-type(2) {
  animation-delay: 12s;
}
.carousel img:nth-of-type(3) {
  animation-delay: 9s;
}
.carousel img:nth-of-type(4) {
  animation-delay: 6;
}
.carousel img:nth-of-type(5) {
  animation-delay: 3;
}
.carousel img:nth-of-type(6) {
  animation-delay: 0;
}
/* ============== Start of Image Fader Styles ==================== */

/* ============== ABOUT PAGE Styles ==================== AF*/

.alternate-h2 {
	font-size: 40px;
	text-transform: none !important;
	font-weight: bold !important;
}

.subtitle {
	font-size: 35px;
}

.about-titles {
  text-transform: none;
}

.evergreen-button {
  background-color: #009933;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 30px;
  font-family: Rajdhani;
  cursor: pointer;
  border-radius: 10px;
}

.flex-row-about .flex-row {
	align-items: center;
}

.image-right {
	text-align: right;
}


/* ============== End ABOUT PAGE Styles ==================== */

/* ============== STYLE GUIDE PAGE Styles ==================== AF*/


.table-center table {
  width: 100%;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.style-colors {
	padding: 15px;
    width: 225px;
    margin: 20px;
    border-radius: 10px;
    text-align: left;
}


/* ============== End STYLE GUIDE PAGE Styles ==================== */

/* ============== PRIORITIES GUIDE PAGE Styles ==================== */

.priorities-flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.card-shadow:hover {
	box-shadow: 5px 10px 18px #888888;
}

.priorities-flex-container > div {
  width: 350px;
  height: 350px;
  margin-bottom: 50px;
}

.priorities-card-title {
  position: absolute;
  z-index: 1;
  text-align: center;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: #009933;
  color: #ffffff;
  padding: 10px;
}



/* ============== End PRIORITIES GUIDE PAGE Styles ==================== */


.contact-flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.contact-flex-container > div {
  width: 350px;
  margin-bottom: 50px;

}



/* ============== PRESIDENTS MESSAGE PAGE Styles ==================== */

.president-image {
	background-color: #003300;
}
/* ============== End PRESIDENTS MESSAGE PAGE Styles ==================== */

/* ============== CAMPAIGN PRIORITIES PAGE Styles ==================== */

.priority-background {
	background-color: #275D38;
}
/* ============== End CAMPAIGN PRIORITIES PAGE Styles ==================== */


/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	.bg-home header {
		padding: 80px 0;
		justify-content: flex-end;
	}
	
	.bg-home.fullbleed:not([class*="parallax"]) {
		background-size: cover;
	}
	.boarder-right {
		border-right: 1px solid #eeeeee;
	}
	.boarder-right-2 {
		border-right: none;
	}
	.flex-container {
		justify-content: normal;
	}
	
}
	

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
	.bg-home {
		background-position: left center;
		background-size: cover;
	}

	.bg-home header {
		padding: 180px 0;
	}	

	.boarder-right {
		border-right: 1px solid #eeeeee;
	}
	.boarder-right-2 {
		border-right: 1px solid #eeeeee;
	}

	.president-image {
		background-image: url("/evergreen/images/presidents_message/presidents-message-profile.jpg");
		height: 100%;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	.home-intro-text {
		font-size: 24px;
	}

	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	

	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/