/*
Theme Name: LVADStrong
Theme URI: https://www.lvadstrong.org/
Author: Sean Young
Author URI: https://heartfeltweb.com
Description: Custom theme for LVADStrong
Version: 1.0
Text Domain: lvadstrong
*/

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  src: url('assets/fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Bebas';
  font-style: normal;
  src: url('assets/fonts/BebasNeue-Regular.ttf') format('truetype');
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	width: 100%;
}

* {
	font-family: Roboto, sans-serif;
	padding: 0;
	margin: 0;
}

h1, h2, h3 {
	font-family: Bebas, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
}

p, ul, ol {
	line-height: 2;
	font-size: 1.25rem;
}

button,
form input[type=submit] {
	font-family: Bebas, sans-serif;
	border: 0;
		appearance: none;
	  background-color: #a72a1c;
	  box-sizing: border-box;
	  color: #fff;
	  cursor: pointer;
	  display: inline-block;
	  font-size: 1.5rem;
	  margin-top: 10px;
	  letter-spacing: 1px;
	  opacity: 1;
	  outline: 0;
	  padding: 10px 30px;
	  position: relative;
	  text-align: center;
	  text-rendering: geometricprecision;
	  text-transform: uppercase;
	  transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1), border-color .5s;
	  user-select: none;
	  -webkit-user-select: none;
	  touch-action: manipulation;
	  vertical-align: baseline;
	  white-space: nowrap;
}

button:hover {
	color: #fff;
}

button:before {
	animation: opacityFallbackOut .5s step-end forwards;
	backface-visibility: hidden;
	background-color: #741d13;
	clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: translateZ(0);
	transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
	width: 100%;
	z-index: 0;
}

button:hover:before {
	animation: opacityFallbackIn 0s step-start forwards;
	clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

button:after {
	background-color: #741d13;
	color: #fff;
}

button span {
	font-family: Bebas, sans-serif;
	letter-spacing: 1px;
	z-index: 1;
	position: relative;
}

button i {
	font-size: .9rem;
	display: inline-block;
	padding-left: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-image {
	display: none;
}

header {
	background-color: #fff;
	padding: 10px 0;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 101;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

#menu-primary,
#menu-primary-1 {
	padding-top: 0 !important;
}

#menu-primary-1 .menu-item {
	line-height: 1.25;
}

header .top-nav {
	color: #fff;
	background-color: #000;
	padding: 15px 0;
}

header nav {
	width: 90%;
	margin: 0 auto;
}

header nav img {
	height: 65px;
	margin-top: 15px;
}

header nav a {
	font-family: Bebas, sans-serif;
	font-size: 3rem;
	text-decoration: none;
	color: #000;
}

header nav ul {
	padding-top: 100px;
}

header .links {
	display: inline-block;
	vertical-align: top;
	padding-top: 15px;
	padding-left: 50px;
}

header nav .links a {
  font-size: 1.5rem;
  font-family: Bebas, sans-serif;
  color: #000;
  display: inline-block;
  letter-spacing: 1px;
  margin: 0 15px;
  text-transform: capitalize;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
}

header nav i {
  padding-left: 10px;
  font-size: .9rem;
}

header nav .dropdown {
  position: relative;
  display: inline-block;
}

header nav .dropdown > a {
  padding: 10px;
  position: relative;
  z-index: 5;
  vertical-align: top;
}

header nav .links .submenu {
  position: absolute;
    top: 131%;
    width: 200%;
    left: 100%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0;
    z-index: 10;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden; /* Hidden by default */
    transition: max-height 1.5s ease, opacity .3s ease;
		box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);


}

header nav .links .dropdown:hover .submenu,
header nav .links .submenu:hover {
  visibility: visible;
  max-height: 500px;
  opacity: 1;
}

header nav .links .dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 60px; /* matches the distance from the link to the submenu */
  z-index: 2;
}

header nav .links .submenu a {
	font-family: Bebas, sans-serif;
  color: #000;
  font-size: 1.25rem;
  padding: 10px 20px;
  padding-right: 70px;
  letter-spacing: 1px;
  text-align: left;
  text-decoration: none;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

header nav .links .submenu a:hover {
  background-color: #a72a1c;
  color: #fff;
}

header nav .links .submenu a::before {
  width: 0;
  height: 0;
}

header nav .links .submenu a i {
  font-size: 10pt;
  margin-right: 10px;
  flex-shrink: 0;
}

header nav .fa-magnifying-glass {
	margin-top: 20px;
}

header .hamburger-menu-container {
	z-index: 1100;
	margin-top: 20px;
	margin-left: 0;
	position: relative;
	vertical-align: top;
	display: none;
}

header .hamburger-menu-container:hover {
	cursor: pointer;
}

header .hamburg {
  display: inline-block;
  cursor: pointer;
}

.hamburg .bar1,
.hamburg .bar2,
.hamburg .bar3 {
  width: 35px;
  height: 5px;
  background-color: #000;
  margin: 6px 0;
  transition: .5s;
}

.hamburg.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.hamburg.change .bar2 {opacity: 0;}

.hamburg.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.hamburger-menu-container span {
	display: inline-block;
	font-family: Bebas, sans-serif;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	vertical-align: top;
	font-size: 1.5rem;
	padding-top: 6px;
	padding-left: 15px;
	transition: .5s;
}

.hamburger-menu-container #close-text {
	display: none;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: #fff;
  transform: translateX(-110%);
  transition: transform 1s ease;
  z-index: 1000;
  opacity: 1;
  pointer-events: none;
  overflow: hidden;
  padding-top: 100px;
  padding-left: 75px;
  box-shadow: 10px 0 25px rgba(0, 0, 0, 0.2);
}

.menu-item {
	margin: 25px 0;
}

.menu-item a {
	padding-right: 15px;
	transition: .5s all;
}

.menu-item a:hover {
	color: #a72a1c;
}

nav.display-nav .menu-overlay {
  opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 50%;
}

.menu-overlay i {
	font-size: 1.5rem;
	cursor: pointer;
}

.display-nav {
	display: block;
	height: 100%;
}


.show-overlay {
  transform: translateX(0);
  pointer-events: auto;
}

.menu-item .submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	display: block !important; /* ensure it's not hidden */
	padding-left: 10px;
	margin-top: 15px;
}

.menu-item .submenu a {
	display: block;
	font-size: 1.75rem;
	padding: 10px 0;
	letter-spacing: 1px;
}

.menu-item .submenu i {
	font-size: 1rem;
	padding-right: 10px;
}


.menu-item.open .submenu {
  max-height: 1000px; /* Large enough to fit anything */
}

.menu-item .dropdown-toggle {
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.menu-item.open .dropdown-toggle {
  transform: rotate(180deg);
}






.fa-magnifying-glass {
	display: inline-block;
	margin-left: 25px;
	font-size: 1.25rem;
	cursor: pointer;
	padding: 15px 10px;
	vertical-align: top;
}

.search-bar-container {
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  text-align: center;
  z-index: 10000000;
}

.search-bar-container form {
	width: 100%;
}

.search-bar-container.active {
  max-height: 100px;
  opacity: 1;
}

.search-form {
  text-align: center;
  padding: 15px 0;
}

.search-form button {

}


.search-icon {
	margin-top: 15px;
	display: none;
	vertical-align: top;
}

.search-icon i {
	font-size: 1.5rem;
}



.donate-cta {
	float: right;
	margin-top: 22px;
}

.hero {
	height: 700px;
	background-color: #000;
	width: 100%;
	position: relative;
}

.hero img {
	height: 700px;
	width: 100%;
	opacity: .4;
	object-fit: cover;
}

.hero .hero-text {
	color: #fff;
	width: 50%;
	position: absolute;
	bottom: 50px;
	left: 100px;
}

.hero .hero-text h1 {
	text-shadow: 0 0 10px #000;
}

.hero .hero-text span {
	font-size: 1.5rem;
	display: block;
	line-height: 2;
	padding: 15px 0;
}

.hero .hero-text button span {
	padding: 0;
}

.landing {
	margin-top: 100px;
}

.landing p {
	font-size: ;
}

.center {
	text-align: center;
}

.center hr {
	margin: 25px auto;
}

.black {
	background-color: #000;
	color: #fff;
}

.black hr {
	border-color: #fff;
}

.red {
	background-color: #a72a1c;
	color: #fff;
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	opacity: .2;
	object-fit: cover;
}

.container {
	width: 80%;
	margin: 0 auto;
	padding: 25px;
	position: relative;
	z-index: 2;
}

.container p {
	width: 65%;
	margin: 0 auto;
}

section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

section hr {
	border-top: 4px solid #a72a1c;
  width: 30%;
  margin: 25px 0;
}

.two-col {
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
}

.two-col .col {
	width: 50%;
	display: inline-block;
	float: left;
	overflow: hidden;
	position: relative;
}

.two-col .col iframe {
	height: 400px;
	width: 100%;
}

.two-col .col img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}

.two-col .col .content {
	width: 90%;
	float: left;
	text-align: left;
}

.two-col .col .content p {
	padding-bottom: 25px;
}

#stats {
	width: 100%;
	padding: 50px 0;
	text-align: center;
	position: relative;
	z-index: 2;
	padding-bottom: 150px;
}

#stats .stat {
	width: 30%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	z-index: 2;
}

#stats .stat img {
	height: 100px;
}

#stats .stat span {
	display: block;
}

#stats .stat .amount {
	font-family: Bebas, sans-serif;
	font-size: 5rem;
	color: #880000;
	letter-spacing: 2px;
	padding: 25px 0;
}

#stats .stat .category {
	letter-spacing: 1px;
	font-family: Roboto, sans-serif;
	font-size: 1.25rem;
	display: inline-block;
	width: 75%;
	margin: 0 auto;
	line-height: 2;
}

.four-grid {
	overflow: hidden;
	width: 80%;
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.four-grid .grid {
	background-color: #a72a1c;
	width: 45%;
	margin: 50px 0;
	display: inline-block;
	position: relative;
	z-index: 6;
	padding: 100px 0;
}

.four-grid .grid:nth-child(1),
.four-grid .grid:nth-child(3) {
	float: left;
}

.four-grid .grid:nth-child(2),
.four-grid .grid:nth-child(4) {
	float: right;
}

.four-grid .grid .content {
	position: relative;
	z-index: 7;
}

.four-grid .grid .content h3 {
	text-shadow: 0 0 50px #741d13;
	width: 90%;
	margin: 0 auto;
}

.four-grid .grid .content span {
	display: inline-block;
	font-size: 1.25rem;
	line-height: 2;
	width: 80%;
	margin: 0 auto;
	padding: 25px 0;
}

.four-grid .grid .content button {
	background-color: #000;
}

.four-grid .grid .content button:before {
	background-color: #333;
	color: #fff;
}

.four-grid .grid .content button span {
	padding: 0;
}

.testimonial-slider {
  position: relative;
  text-align: center;
}

.slides {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 2s ease;
  font-size: 1.25rem;
  line-height: 2;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slider-nav {
	position: absolute;
	bottom: -75px;
	left: 0;
	width: 100%;
	text-align: center;
}

.nav-arrows {
	height: 25px;
	width: auto;
	display: inline-block;
}

.nav-arrows span {
	display: inline-block;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 15px 20px;
  margin: 0 25px;
  border: 1px solid #c0c0c0;
}


.dots {
  margin-top: 15px;
  height: 15px;
  display: inline-block;
}

.dots button {
  width: 50px;
  height: 10px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #fff;
  padding: 0;
  border: 1px solid #c0c0c0;
  margin: 0 10px;
  display: inline-block;
}

.dots button.active {
  background-color: #a72a1c;
  border-color: #a72a1c;
}

#impact-stories .content {
	float: right;
}

#impact-stories .col .content p {
	padding-top: 25px;
}

#events {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	padding: 100px 0;
}

.event-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
}

.event-card {
	display: flex;
	flex-direction: column;
	width: 30%;
	margin: 10px;
	background: white;
	border: 1px solid #f0f0f0;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.event-card:nth-child(1) {
	float: left;
}

.event-image {
	background-color: #000;
	line-height: 0;
}

.event-image img {
	opacity: .5;
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.event-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-date {
	background-color: #a72a1c;
  text-align: center;
  color: #fff;
  height: 85px;
  width: 85px;
  margin-top: -85px;
  z-index: 4;
  position: relative;
}

.event-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 25px;
}

.event-info .description {
  flex-grow: 1;
  padding: 15px 0;
}

.event-info a {
  margin-top: 15px;
}

.event-date .day {
	font-family: Bebas, sans-serif;
  display: block;
  padding-top: 15px;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

.event-date .number {
	font-family: Bebas, sans-serif;
  display: block;
  font-size: 2rem;
}

.event-info .location {
	text-transform: uppercase;
  font-size: .9rem;
  margin: 0;
  color: #333;
  padding: 10px 0;
}

.event-info .location i {
	padding-right: 10px;
}

.event-info .title {
  margin: 4px 0;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #111;
}

.event-info .description {
  font-size: 1.1rem;
  color: #333;
  margin: 4px 0 8px;
  padding: 15px 0;
}

#landing-resources {
	margin-top: 100px;
}

.resource-card-container {
	width: 90%;	
	margin: 0 auto;
	text-align: center;
}

.resource-card-container .resource-card {
	background-color: #000;
	vertical-align: top;
	width: 22%;	
	display: inline-block;
	overflow: hidden;
	position: relative;
	margin: 50px 20px;
	line-height: 0;
	height: 500px;
}

.resource-card-container .resource-card img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	opacity: .4;
	transition: .5s all;
}

.resource-card-container .resource-card .content {
	position: absolute;
	bottom: 25px;
	left: 0;
	color: #fff;
	line-height: 1.5;
	width: 95%;
	text-align: left;
}

	.resource-card-container .resource-card .content span {
		display: block;
		padding-left: 15px;
	}

	.resource-card-container .resource-card .content .title {
		font-family: Bebas, sans-serif;
		font-size: 2.5rem;
		letter-spacing: 1px;
		text-shadow: 0 0 25px #000;
	}

	.resource-card-container .resource-card .content .excerpt {
		font-size: 1.25rem;
		text-shadow: 0 0 25px #000;
	}

		.resource-card-container .resource-card .content .arrow {
			text-align: right;
			padding-top: 25px;
			font-size: 1.5rem;
		}

		.resource-card-container a:hover img {
			opacity: .7;
		}


.newsletter .container {
  width: 80%;
  padding: 50px 0;
}

.newsletter hr {
  all: unset;
  display: block;
  border-top: 6px solid #880000;
  width: 50%;
  margin: 35px 0;
}

.newsletter p {
  font-size: 1.25rem;
  width: 100%;
  padding-bottom: 35px;
}

.newsletter form {
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

.newsletter input[type="email"] {
  font-family: Bebas, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
  color: #f0f0f0;
  background-color: #333;
  padding: 25px 10px;
  border: 0;
  width: 65%;
  transition: .5s all;
}

.newsletter input:focus {
  background-color: #1d1d1d;
  outline: 0;
}

.newsletter fieldset {
  text-align: left;
  float: left;
  border: 0;
  padding: 25px 0;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background-color: #111;
  border: 2px solid #333;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #880000;
  border-color: #880000;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.newsletter form label {
  font-family: Roboto, sans-serif;
  margin-top: 5px;
  font-size: 1.1rem;
}

.newsletter form label a {
  color: #880000;
}

.newsletter input[type=submit] {
  background-color: #880000;
  width: 30%;
  float: right;
  font-family: Bebas, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 2rem;
  color: #fff;
  border: 0;
  padding: 20px 10px;
  transition: 0.3s ease all;
  margin: 0;
}

.newsletter input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}

.newsletter input[type=submit]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#gallery {
	margin-top: -75px;
	line-height: 0;
}

.rl-gallery-container {
	line-height: 0;
	margin-top: 50px;
}

.rl-gallery {
	display: block !important;
	margin-top: 40px;
}

.rl-gallery-item {
	background-color: #000;
	width: 28% !important;
	height: 375px !important;
	display: inline-block;
	margin: 0 !important;
	line-height: 0;
}

.rl-gallery .rl-gallery-link {
	display: inline !important;
}

.page-container .rl-gallery-item a {
	border-bottom: 0 !important;
}

.page-container .rl-gallery-item {
	width: 33% !important;
}

.page-container .rl-gallery-item img {
	margin: 0;
	width: 100% !important;
	height: 100% !important;
}

.rl-basicgrid-gallery .rl-gallery-item img {
	height: 100% !important;
}

.rl-gallery-item img {
	opacity: .6;
	width: 100%;
	height: 375px;
	object-fit: cover;
	line-height: 0;
	transition: .5s all;
}

.rl-gallery-item img:hover {
	opacity: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 50px;
  width: 80%;
  margin: auto;
  max-height: 600px;
}

.grid-item {
	background-color: #000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.grid-item img {
	opacity: .4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.large {
  grid-row: span 2;
}

.overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  max-width: 90%;
}

.overlay h3 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px #000;
  letter-spacing: 2px;
}

.large h3 {
	font-size: 3.5rem;
}


.page-meta {
	background-color: #f0f0f0;
	overflow: hidden;
	height: 500px;
	position: relative;
	padding-top: 0;
}

.page-meta .content {
	width: 50%;
	display: inline-block;
	float: left;
	position: absolute;
	bottom: 50px;
}

.page-meta .content .breadcrumbs {
	text-transform: uppercase;
	font-size: .9rem;
	letter-spacing: 1px;
	display: block;
}

.page-meta .content .breadcrumbs a {
	color: #a72a1c;
	font-weight: bold;
}

.page-meta .content .breadcrumbs a:hover {
	text-decoration: none;
}

.page-meta .content .breadcrumbs i {
	padding: 0 10px;
}

.page-meta .content h1,
.page-meta .content p,
.page-meta .content .breadcrumbs {
	width: 80%;
	margin: 0 auto;
	padding-bottom: 10px;
}

.page-meta .image {
	width: 50%;
	display: inline-block;
	float: right;
	background-color: #000;
}

.page-meta .image img {
	opacity: .4;
	width: 100%;
	height: 700px;
	object-fit: cover;
}

.page-landing {
	overflow: hidden;
	padding: 100px 0;
}

.page-landing .two-col {
	overflow: hidden;
}

.two-col .content h3 {
	line-height: 1;
}

.page-container {
	width: 60%;
	margin: 0 auto;
	text-align: left;
	overflow: hidden;
}

.page-container img {
	width: 400px;
}

.page-container p {
	padding: 15px 0;
}

.page-container form p {
	padding: 0;
}

.page-container h2 {
padding-top: 50px;
padding-bottom: 10px;
}

.page-container a {
	color: #a72a1c;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 2px solid #a72a1c;
	transition: .5s all;
}

.page-container a:hover {
		border-bottom: 2px solid transparent;
}

.page-container ul,
.page-container ol {
	padding: 15px 0;
		padding-left: 50px;
}

.page-container ul li ul,
.page-container ol li ul {
	padding: 0;
	padding-left: 50px;
}

.page-container ul li ul li,
.page-container ol li ul li {
	padding: 5px 0;
}

.page-container ul li,
.page-container ol li {
	padding: 10px 0;
}

.page-container img {
	margin: 0 25px;
}

.page-container .right {
	float: right;
	margin-left: 100px;
}

.page-container .left {
	float: left;
	margin-right: 100px;
}

#about-impact {
padding-top: 100px;
padding-bottom: 50px;
}

.contents i {
	font-size: .9rem;
	padding-right: 10px;
}

#locator {
	width: 100%;
	border: 0;
	height: 600px;
}

.resources {
	padding: 100px 0;
}

.resources img {
	opacity: .6;
}

.resources .col .content {
	float: right;
}

.resources .col .content p {
	padding-top: 25px;
}

.resources:nth-child(even) .col:nth-child(1) {
	float: right;
}


.resources:nth-child(even) .col .content {
	float: left;
}

.resources .col:nth-child(1) {
	background-color: #000;
	line-height: 0;
}

.page-landing .event-card {
	margin-top: 20px;
}

.page-container h3 {
	padding-top: 25px;
}

.page-landing form {
	width: 65%;
	margin-top: 25px;
}

.page-landing form input, .page-landing form textarea, .page-landing form select,
.search-form input {
	display: block;
	padding: 15px 10px;
	font-family: Bebas, sans-serif;
	letter-spacing: 1px;
	font-size: 2rem;
	width: 80%;
	margin: 25px 0;
	margin-top: 10px;
	border: 2px solid #000;
	outline: 0;
	transition: .5s all;
}

.page-landing form select {
	margin-top: 10px;
	cursor: pointer;
}

.page-landing form textarea {
	height: 300px;
}

.page-landing form select option {
	font-family: Bebas, sans-serif;
	color: #000;
	font-size: 1.5rem;
	letter-spacing: 1px;
}

.page-landing form label {
	font-family: Bebas, sans-serif;
	color: #000;
	font-size: 2rem;
	letter-spacing: 1px;
	padding-bottom: 25px;
}

.page-landing form .consent {
	font-family: Roboto, sans-serif;
	font-size: 1.1rem;
	letter-spacing: 0;
	display: inline-block;
	width: 80%;
}


.page-landing form input[type=submit] {
	transition: .5s all;
	border: 0;
	display: inline-block;
	width: 50%;
	margin-top: 20px;
}

.page-landing form input[type=submit]:hover {
	background-color: #741d13;
}

.search-form input[type="text"] {
	font-size: 1.5rem;
	padding: 8px 5px;
	width: 30%;
	margin: 0 auto;
	display: inline-block;
}

.page-landing form input:focus,
.page-landing form textarea:focus,
.page-landing form input[type=submit]:focus {
	background-color: #d8d8d8;
	border: 2px solid transparent;
}


.team {
  display: flex;
  flex-wrap: wrap;
  gap: 75px;
  margin: 75px 0;
}

.member {
  width: 45%;
}

.photo {
  position: relative;
  overflow: hidden;
  height: 450px;
  background-color: #000;
}

.photo img {
	opacity: .6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
  margin: 0;
}

.bio {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  color: #333;
  transition: bottom 0.5s ease;

}

.bio p {
	width: 90%;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.5;
	letter-spacing: 1px;
	text-align: left;
}

.photo:hover img {
  transform: scale(1.05);
  opacity: 1.0;
}

.photo:hover .bio {
  bottom: 0;
}

.team .name {
	font-family: Bebas, sans-serif;
  font-size: 2rem;
  display: inline-block;
}

.team .title {
	font-family: Roboto, sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-left: 10px;
}

.team .info {
	padding-top: 25px;
}

.team .info a {
	display: block;
	color: #0a66c2;
	border: 0;
	font-size: 2rem;
	padding-top: 10px;
}

.card-container,
.latest-cards {
	width: 80%;
	margin: 75px auto;
	display: block;
	overflow: hidden;
}

.card-container .card,
.latest-cards .card {
	width: 35%;
	display: inline-block;
	margin: 50px 75px;
	vertical-align: top;
}

.card-container .card .image,
.latest-cards .card .image {
	background-color: #000;
		line-height: 0;
}

.card-container .card img,
.latest-cards .card img {
	width: 100%;
	height: 300px;
	opacity: .5;
	object-fit: cover;
	transition: .5s all;
}

.card-container .card img:hover,
.latest-cards .card img:hover {
	opacity: 1;
}

.card-container .card .meta,
.latest-cards .card .meta {
	text-transform: uppercase;
		letter-spacing: 1px;
	text-align: left;
	display: block;
		font-size: .9rem;
	padding: 15px 0;
}

.card-container .card .meta span a,
.latest-cards .card .meta span a {
	color: #a72a1c;
	font-weight: bold;
	text-decoration: none;
}

.card-container .card .content,
.latest-cards .card .content {
	text-align: left;
}

.card-container .card .title,
.card-container .card .excerpt,
.latest-cards .card .title,
.latest-cards .card .excerpt {
	display: block;
	line-height: 1.5;
}

.card-container .card .title,
.latest-cards .card .title {
	font-family: Bebas, sans-serif;
	font-size: 1.75rem;
		letter-spacing: 1px;
}

.card-container .card .excerpt,
.latest-cards .card .excerpt {
	font-size: 1.15rem;
	padding: 15px 0;
}

.latest-cards {
	text-align: center;
	margin: 25px auto;
}

.latest-cards .card {
	width: 28%;
	margin: 0;
}

.latest-cards .card:nth-child(1) {
	float: left;
}

.latest-cards .card:nth-child(3) {
	float: right;
}

.pagination {
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	color: #a72a1c;
	padding-top: 100px;
}

.pagination span {
		font-family: Bebas, sans-serif;
		display: inline-block;
		margin: 0 15px;
		transition: .5s all;
}

.pagination a {
	text-decoration: none;
}

.pagination span i {
	font-size: 1rem;
}

.pagination .page-numbers {
	color: #a72a1c;
}

.pagination span:hover {
	border-bottom: 2px solid transparent;
	cursor: pointer;
}

.pagination .current {
	color: #000;
	border: 0;
}

.pagination .current:hover {
	cursor: auto;
	border: 0;
}

.guide a {
	all: unset;
	cursor: pointer;
}

.guide .act {
	padding: 50px 0;
	border-bottom: 1px solid #c0c0c0;
}

.guide .act:hover .number {
	padding-left: 50px;
}

.guide .act i {
	font-size: 2rem;
	padding: 0 25px;
}

.guide .act span {
	font-family: Bebas, sans-serif;
	letter-spacing: 1px;
	display: inline-block;
	vertical-align: middle;
}

.guide .act .number {
	color: #a72a1c;
	font-size: 4rem;
	transition: .5s all;
}

.guide .act .title {
	font-size: 3rem;
}


.faq-container .faq-item {
	padding-bottom: 25px;
}

.faq-container .faq-item p {
	width: 90%;
	font-size: 1.25rem;
}

.faq-container .faq-question,
.faq-container .faq-answer {
	line-height: 2;
}

.faq-answer {
    max-height: 0;  /* Hide answers by default */
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-question {
	font-family: Roboto, sans-serif;
	color: #a72a1c;
	font-size: 1.25rem;
	font-weight: bold;
    padding: 10px;
    cursor: pointer;
}

.faq-question i {
	font-size: 12pt;
    margin-right: 10px;
    transition: transform 0.3s ease-out;
}

/* Rotate the chevron when the FAQ is open */
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.post-date {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: .9rem;
	font-weight: bold;
	font-style: italic;
}

.post-date i {
	display: inline-block;
	padding-right: 10px;
}

.page-container blockquote {
	border-left: 5px solid #a72a1c;
	font-size: 1.5rem;
	width: 90%;
	margin: 25px auto;
	padding: 10px 25px;
	font-weight: bold;
	line-height: 1.5;
	font-style: italic;
}

.event-page .event-details {
	padding: 25px 0;
	overflow: hidden;
	display: block;
}

.event-page .event-details div {
	width: 49%;
	display: inline-block;
	float: left;
	border-right: 1px solid #c0c0c0;
	border-bottom: 1px solid #c0c0c0;
	padding-bottom: 50px;
}

.event-page .event-details div:nth-child(2) {
	border-right: 0;
}

.event-page .event-details span {
	font-family: Bebas, sans-serif;
	font-size: 4rem;
	display: block;
}

.event-page .event-details span:nth-child(1) {
	color: #a72a1c;
}

.event-page iframe {
	width: 100%;
	height: 400px;
}

.philosophy-container {
	width: 90%;
	overflow: hidden;
	text-align: center;
	margin: 50px auto;
}

.philosophy-container .philosophy {
	width: 28%;
	display: inline-block;
	vertical-align: top;
}

.philosophy-container .philosophy:nth-child(1) {
	float: left;
}

.philosophy-container .philosophy:nth-child(3) {
	float: right;
}

.philosophy-container .philosophy img {
	height: 150px;
}

.philosophy-container .philosophy .content {
	width: 100%;
}

.philosophy-container .philosophy .content span {
	display: block;
}

.philosophy-container .philosophy .content .name {
	font-family: Bebas, sans-serif;
	font-size: 2rem;
	letter-spacing: 1px;
	padding: 10px 0;
}

.philosophy-container .philosophy .content .description {
	font-size: 1.25rem;
}

.comment-list {
	padding: 0 !important;
	margin: 0 !important;
}

.comment-list li {
	list-style-type: none;
	padding: 25px !important;
}

.comment-list li:nth-child(even) {
	background-color: #f0f0f0;
}

.comment-date {
	text-transform: uppercase;
	font-size: .9rem;
	font-style: italic;
}

.search-result {
	transition: .5s all;
	padding: 50px 25px;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
}

.search-result p {
	padding-top: 5px !important;
	font-size: 1.1rem;
}

.search-results-section a {
	all: unset;
	cursor: pointer;
}

.search-results-section .pagination .page-numbers {
	padding: 0 5px;
	font-family: Bebas, sans-serif;
}

.search-result:hover {
	background-color: #f0f0f0;
}

.search-result .result {
	color: #a72a1c;
	font-family: Bebas, sans-serif;
	font-size: 2.5rem;
	letter-spacing: 1px;
}

.search-result .type {
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: bold;
	padding-bottom: 10px;
	display: block;
}

.search-result .breadcrumbs {
	display: block;
	padding: 15px 0;
	font-weight: bold;
	color: #737373;
	text-transform: uppercase;
	font-size: .8rem;
}

.search-result .breadcrumbs i {
	padding: 0 10px;
}

footer {
	background-color: #000;
	overflow: hidden;
}

footer .footer-ctas {
	background-color: #a72a1c;
	overflow: hidden;
}

footer .footer-ctas a {
	text-shadow: 0 0 25px #741d13;
	color: #fff;
}

footer .footer-ctas .cta {
	font-family: Bebas, sans-serif;
	letter-spacing: 1px;
	font-size: 2.5rem;
	width: 25%;
	display: inline-block;
	float: left;
	text-align: center;
	padding: 25px 0;
}


footer .footer-ctas .cta i {
	font-size: 1.5rem;
	padding-left: 5px;
}

footer .link-wrapper {
	overflow: hidden;
	padding: 100px 0;
}

footer .link-container {
	width: 25%;
	display: inline-block;
	float: left;
}

footer .link-container span {
	display: block;
	width: 70%;
	margin: 0 auto;
	color: #fff;
	font-family: Bebas, sans-serif;
	font-size: 1.5rem;
	letter-spacing: 1px;
}

footer .link-container ul {
	width: 70%;
	margin: 0 auto;
}

footer .link-container ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	border-bottom: 1px solid #fff;
	transition: .5s all;
}

footer .link-container ul li a:hover {
	border-bottom: 1px solid transparent;
}

footer #footer-socials {
	text-align: center;
}

footer #footer-socials a {
	color: #fff;
	padding: 10px;
	margin: 0 5px;
	font-size: 1.25rem;
}

footer #footer-socials span {
	font-family: Roboto, sans-serif;
	display: inline-block;
	padding-top: 25px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: .9rem;
}

footer .footer-copy {
	background-color: #1d1d1d;
	display: block;
	overflow: hidden;
	padding: 25px 0;
}

footer .footer-copy a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	transition: .5s all;
}

footer .footer-copy a:hover {
	border-bottom: 1px solid transparent;
}

footer .footer-copy div {
	width: 50%;
	display: inline-block;
	text-align: center;
}

footer .footer-copy .left {
	float: left;
}

footer .footer-copy .right {
	float: right;
}

footer .footer-copy span {
	display: inline-block;
	width: 85%;
	margin: 0 auto;
	color: #c0c0c0;
	text-transform: uppercase;
	font-size: .8rem;
}


@media only screen and (max-width: 1630px) {
	.resource-card-container .resource-card {
		width: 25%;
		margin: 50px 35px;
	}

	.resource-card-container a:nth-child(7),
	.resource-card-container a:nth-child(8) {
		display: none;
	}

	.resource-card-container .resource-card .content .arrow {
		padding-top: 5px;
	}
}

@media only screen and (max-width: 1580px) {
	header nav img {
		height: 50px;
	}

	header .links {
		padding-top: 15px;
		padding-left: 25px;
	}

	header nav .links a {
		font-size: 1.25rem;
	}

	header nav .links .submenu a {
		font-size: 1.1rem;
	}

	header nav .links .submenu {
		top: 124%;
	}

	.donate-cta {
		margin-top: 14px;
	}

	.event-container {
		width: 90%;
	}

	.fa-magnifying-glass {
		margin-top: -3px;
	}

	.page-landing {
		padding-top: 50px;
	}

	.rl-gallery-item {
		width: 30% !important;
		height: 375px !important;
	}

	.rl-gallery-item img {
		height: 375px !important;
	}
}

@media only screen and (max-width: 1575px) {
	.four-grid .grid .content span {
		width: 90%;
	}


}

@media only screen and (max-width: 1550px) {
	.two-col {
		width: 90%;
	}
}

@media only screen and (max-width: 1500px) {
	.hero .hero-text h1 {
		font-size: 4.5rem;
	}

	footer .footer-ctas .cta {
		font-size: 2rem;
	}

	#about-impact .col img {
		width: 99%;
		height: auto;
	}


}


@media only screen and (max-width: 1400px) {

	body > header > nav > i {
		display: none !important;
	}
	.search-icon {
		display: inline-block;

	}

	.search-icon .fa-magnifying-glass {
		display: inline-block;
		margin-top: -3px;
	}

	.menu-overlay {
		width: 50%;
	}


	header nav img {
		float: right;
		height: 65px;
		margin-top: 10px;
	}

	.donate-cta {
		float: none;
		display: inline-block;
		margin-top: 5px;
		margin-left: 35px;
	}

	header .links {
		display: none;
	}

	header .hamburger-menu-container {
		display: inline-block;
	}

	.four-grid {
		width: 90%;
	}

	.event-image img {
		height: 200px;
	}

	.event-info a {
		margin-top: 5px;
	}

	.page-container {
		width: 70%;
	}

	.image-grid {
		width: 90%;
	}

	.newsletter .container {
		width: 90%;
	}

	.philosophy-container .philosophy {
		width: 30%;
	}

	.philosophy-container .philosophy .content .description {
		font-size: 1.1rem;
	}

	.latest-cards {
		width: 90%;
	}

	#locator {
		margin-top: 50px;
	}

	.resource-card-container .resource-card {
		width: 28%;
		margin: 40px 20px;
	}

	.rl-gallery-item {
		width: 33% !important;
		height: 375px !important;
	}

}

@media only screen and (max-width: 1350px) {
	.hero .hero-text {
		width: 65%;
	}

	#stats .stat {
		width: 33%;
	}

	#stats .stat .category {
		width: 85%;
		font-size: 1.1rem;
	}

}

@media only screen and (max-width: 1300px) {
	.two-col .col img {
		height: 350px;
		width: 90%;
	}

	.two-col .col {
		text-align: center;
	}

	.two-col .col .content {
		width: 95%;
	}

	.two-col .col p {
		font-size: 1.1rem;
	}

	#about-impact p {
		font-size: 1.25rem;
	}

	#about-impact .col {
		width: 100%;
		text-align: center;
	}

	#about-impact .col img {
		width: 600px;
		height: auto;
	}

	.two-col .col h2 {
		font-size: 3.5rem;
	}

	.resources {
		padding: 50px 0;
	}

	.resources .col img {
		width: 100%;
	}

	.resources .col .content {
		width: 85%;
	}

	.card-container .card {
		width: 40%;
		display: inline-block;
		margin: 50px 25px;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 325px !important;
	}
}

@media only screen and (max-width: 1281px) {
	.donate-cta {
		margin-top: 1px;
	}

	header .hamburger-menu-container {
		margin-left: 10px;
	}

	.menu-overlay {
		padding-top: 85px;
	}

	.menu-item {
		margin: 5px 0;
	}

	.menu-item a {
		font-size: 2.5rem;
	}

	.two-col .col img {
		height: 400px;
	}

	.four-grid .grid {
		width: 48%;
		margin: 25px 0;
	}

	#ctas {
		padding-bottom: 50px;
	}

	.container {
		width: 85%;
	}

	footer .footer-ctas .cta {
		font-size: 1.5rem;
	}

	footer .footer-ctas .cta i {
		font-size: 1.25rem;
	}

	footer .link-container {
		width: 33%;
	}

	footer .link-container:nth-child(3) {
		display: none;
	}

	.page-meta .content h1 {
		font-size: 4rem;
	}

	.hero {
		top: 0;
		left: 0;
		height: 100vh;
	}

	.hero img {
		top: 0;
		left: 0;
		height: 100vh;
	}

	.latest-cards .card {
		width: 30%;
	}

	.resource-card-container .resource-card {
		width: 40%;
		margin: 30px;
	}

	.event-card {
		width: 40%;
		margin: 50px 25px;
	}

	#events .event-card:nth-child(3) {
		display: none;
	}

	.photo {
		height: 425px;
	}

	.guide .act:hover .number {
		padding-left: 25px;
	}
}

@media only screen and (max-width: 1200px) {
	.hero .hero-text {
		left: 50px;
	}

	.hero .hero-text h1 {
		font-size: 3.5rem;
	}

	.hero .hero-text span {
		font-size: 1.1rem;
	}

	.image-grid {
		height: 500px;
		gap: 30px;
	}

	.image-grid .small .overlay h3 {
		font-size: 2rem;
	}

	#cta-links {
		padding-top: 0;
	}

	.newsletter .container {
		width: 90%;
		padding: 25px 0;
	}

	.page-container {
		width: 80%;
	}

	.philosophy-container {
		text-align: center;
		width: 100%;
		margin: 0;
	}

	.philosophy-container .philosophy {
		width: 45%;
		margin: 50px 0;
		text-align: center;
	}

	.philosophy-container .philosophy img {
		display: inline-block;
		text-align: center;
	}

	.philosophy-container .philosophy .content {
		width: 80%;
		margin: 0 auto;
	}

	.philosophy-container .philosophy .content .description {
		font-size: 1.25rem;
	}

	.philosophy-container .philosophy:nth-child(1),
	.philosophy-container .philosophy:nth-child(3) {
		float: none;
	}

	.latest-cards .card:nth-child(2) {
		float: right;
	}

	.latest-cards {
		width: 80%;
	}

	.latest-cards .card:nth-child(3) {
		display: none;
	}

	.latest-cards .card {
		width: 45%;
	}

	.page-landing form {
		width: 80%;
	}
}

@media only screen and (max-width: 1150px) {
	.four-grid {
		width: 50%;
	}

	.four-grid .grid {
		width: 100%;
		margin: 50px 0;
	}

	.guide .act .number {
		font-size: 3rem;
	}

	.guide .act i {
		font-size: 1.75rem;
	}

	.guide .act .title {
		font-size: 2.5rem;
	}
}

@media only screen and (max-width: 1100px) {
	#stats {
		width: 80%;
		margin: 0 auto;
	}
	#stats .stat {
		text-align: left;
		width: 100%;
		margin: 50px 0;
	}

	#stats .stat img,
	#stats .stat .amount {
		float: left;
		display: block;
	}

	#stats .stat .amount {
		padding: 10px;
		padding-left: 25px;
	}

	#stats .stat .category {
		float: right;
		width: 50%;
		font-size: 1.25rem;
	}

	.four-grid {
		width: 65%;
	}

	.image-grid {
		width: 90%;
	}


}

@media only screen and (max-width: 1050px) {
	.two-col .col h2 {
		font-size: 3rem;
	}

	.two-col .col .content p {
		font-size: 1rem;
	}

	.two-col .col {
		text-align: right;
	}

	#stats {
		width: 90%;
	}

	.page-container h2 {
		font-size: 3.5rem;
		font-weight: normal;
	}

	.page-container h3 {
		font-size: 2.5rem;
		font-weight: normal;
	}

}

@media only screen and (max-width: 1000px) {
	.event-card {
		width: 45%;
		margin: 50px 0;
	}

	footer .footer-ctas .cta {
		font-size: 1.25rem;
	}

	footer .footer-ctas .cta i {
		font-size: 1rem;
	}

	.menu-overlay {
		width: 75%;
	}

	.page-meta .content,
	.page-meta .image {
		width: 100%;
	}

	.page-meta .content {
		z-index: 2;
		color: #fff;
		text-shadow: 0 0 25px #000;
	}

	.page-meta .content .breadcrumbs a {
		color: #c93322;
		text-decoration: none;
		border-bottom: 2px solid #c93322;
		transition: .5s all;
	}

	.page-meta .content .breadcrumbs a:hover {
		border-bottom: 2px solid transparent;
	}

	.page-meta .content .breadcrumbs {
		line-height: 2;
	}

	.page-meta .image {
		z-index: 1;
	}

	.page-meta .image img {
		opacity: .4;
	}

	.page-meta {
		height: 400px;
	}

	.team {
		gap: 50px;
	}

	.resource-card-container .resource-card {
		width: 42%;
		margin: 25px;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 275px !important;
	}
}

@media only screen and (max-width: 950px) {
	#impact-stories {
		width: 85%;
	}
	#impact-stories .col {
		width: 100%;
	}

	#impact-stories .col img {
		width: 100%;
	}

	#impact-stories .col .content {
		text-align: center;
		width: 100%;
	}

	#impact-stories .col .content h3 {
		padding-top: 15px;
	}

	#impact-stories .col .content p {
		font-size: 1.25rem;
		width: 80%;
		margin: 0 auto;
	}

	.slider-nav {
		bottom: -80px;
	}

	footer .link-container {
		width: 50%;
	}

	footer #footer-socials {
		width: 100%;
		display: block;
		margin-top: 100px;
	}

		footer #footer-socials .content {
			width: 50%;
			margin: 0 auto;
		}

		.search-form input[type="text"] {
			width: 50%;
		}

		.page-meta .content h1 {
			font-size: 3.5rem;
			padding: 15px 0;
		}

		.resources .col img {
			height: 325px;
		}

		.guide .act .number {
			padding-right: 15px;
		}

		.guide .act i {
			display: none;
		}
}

@media only screen and (max-width: 900px) {
	#stats .stat img, #stats .stat .amount, #stats .stat .category {
		float: none;
	}

	#stats {
		width: 40%;
		padding-top: 0;
	}

	#stats .stat .category {
		width: 100%;
	}

	#stats .stat img {
		display: inline-block;
	}

	#stats .stat {
		text-align: center;
	}

	#stats .stat .amount {
		padding: 20px 0;
	}

	.event-card {
		width: 100%;
	}

	.event-container {
		width: 60%;
	}

	.event-card {
		width: 100%;
	}

	.event-image img {
		height: 300px;
	}

	#events .event-card:nth-child(3) {
		display: inline-block;
	}

	.image-grid .small .overlay h3 {
		font-size: 1.75rem;
	}

	.image-grid .small .overlay {
		padding: 0;
		max-width: 95%;
	}

	.image-grid .small button {
		font-size: 1.25rem;
		padding: 10px 15px;
	}

	.latest-cards .card {
		width: 80%;
		margin: 50px auto;
	}

	.latest-cards .card:nth-child(1),
	.latest-cards .card:nth-child(2) {
		float: none;
	}

	.latest-cards .card:nth-child(1) {
		margin-top: 0;
	}

	.latest-cards .card:nth-child(3) {
		display: inline-block;
		float: none;
	}

	.team {
		gap: 100px;
		margin: 25px 0;
		text-align: center;
		justify-content: center;
	}

	.team .member {
		width: 80%;
	}

	.guide .act .number {
		padding-right: 0;
	}

	.guide .act:hover .number {
		padding-left: 0;
	}

	.guide .act i {
		display: inline-block;
		padding: 0 15px;
	}

	.guide .act .title {
		display: block;
	}

	.card-container .card {
		width: 43%;
		margin: 50px 15px;
	}

	.card-container .card img {
		height: 250px;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 225px !important;
	}
}

@media only screen and (max-width: 850px) {
	#stats {
		width: 60%;
	}

	.hero .hero-text {
		width: 80%;
	}

	footer .footer-ctas .cta {
		width: 49.75%;
		font-size: 2rem;
		border-left: 1px solid #982619;
		border-bottom: 1px solid #982619;
	}

	footer .footer-ctas .cta i {
		font-size: 1.5rem;
	}

	.philosophy-container {
		width: 90%;
		margin: 0 auto;
	}

	.philosophy-container .philosophy {
		width: 100%;
		display: block;
		overflow: hidden;
	}

	.philosophy-container .philosophy img {
		float: left;
	}

	.philosophy-container .philosophy .content {
		display: inline-block;
		text-align: left;
		float: right;
		width: 75%;
	}

	.card-container .card {
		width: 100%;
		margin: 50px 0;
	}

	.card-container .card img {
		height: 350px;
	}

	.page-landing form {
		width: 100%;
	}

	.page-landing form input, .page-landing form textarea, .page-landing form select, .search-form input {
		width: 95%;
	}

	.page-container h2 {
		font-size: 3rem;
	}

	.resource-card-container .resource-card {
		width: 100%;
		margin: 25px 0;
	}
}


@media only screen and (max-width: 800px) {
	header nav {
		width: 90%;
	}

	.four-grid {
		width: 80%;
	}

	.four-grid .grid .content span {
		width: 80%;
	}

	h2 {
		font-size: 3rem;
	}

	.image-grid {
		display: block;
		margin: 0 auto;
		height: auto;
		max-height: none;
	}

	.image-grid .grid-item {
		height: 300px;
		margin: 25px 0;
	}

	.image-grid .small .overlay h3 {
		font-size: 3.5rem;	
	}

	.image-grid .small .overlay {
		max-width: 90%;
		padding: 1rem;
	}

	.image-grid .small button {
		font-size: 1.5rem;
		padding: 10px 30px;
	}

	#cta-links {
		padding-bottom: 0;
	}

	.newsletter .container {
		width: 100%;
	}

	.newsletter .container .container {
		width: 90%;
	}

	footer #footer-socials .content {
		width: 70%;
	}

	.philosophy-container .philosophy img {
		height: 125px;
	}

	.philosophy-container .philosophy .content {
		width: 70%;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 175px !important;
	}

	#gallery {
		margin-top: -10px;
}

@media only screen and (max-width: 750px) {


	header nav img {
		float: right;
	}

	header .hamburger-menu-container {
		margin-left: 0;
	}

	.two-col {
		width: 100%;
	}

	#impact-stories {
		width: 85%;
	}

	.two-col .col {
		width: 100%;
		text-align: center;
	}

	.two-col .col .content p {
		font-size: 1.25rem;
	}

	#impact-stories .col .content p {
		font-size: 1.25rem;
	}

	.two-col .col:nth-child(2) {
		background-color: #000;
		margin-top: 100px;
		line-height: 0;
	}

	#impact-stories .col:nth-child(2) {
		margin-top: 0;
		background-color: #fff;
	}

	.two-col .col:nth-child(2) img {
		width: 100%;
		opacity: .5;
		height: 400px;
	}

	.two-col .col .content {
		display: inline-block;
		width: 75%;
		margin: 0 auto;
		float: none;
	}

	.landing {
		padding-bottom: 50px;
	}

	.donate-cta {
		display: none;
	}

	#about-impact .col:nth-child(2) {
		background-color: transparent;
		margin: 0;
	}

	#about-impact .col:nth-child(2) img {
		width: 80%;
		opacity: 1;
	}

	.resources .col:nth-child(2) {
		background-color: transparent;
	}

	.resources:nth-child(even) .col .content {
		float: none;
	}

	.resources .col .content {
		width: 80%;
	}

	#locator {
		height: 400px;
	}
}

@media only screen and (max-width: 700px) {
	.hero,
	.hero img {
		height: 600px;
	}

	.hero .hero-text span {
		display: none;
	}

	.hero .hero-text button span {
		display: inline-block;
	}

	#impact-stories .col .content p {
		width: 95%;
	}

	.event-container {
		width: 80%;
	}

	footer .footer-ctas .cta {
		font-size: 1.5rem;
	}

	footer .footer-ctas .cta i {
		font-size: 1.25rem;
	}

	.team .member {
		width: 100%;
	}

	.event-page .event-details span {
		font-size: 3rem;
	}

	.page-container h3 {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 650px) {

	.hero .hero-text h1 {
		font-size: 3.5rem;
	}

	.landing {
		margin-top: 50px;
	}

	.two-col {
		width: 100%;
	}

	.two-col .col .content p {
		font-size: 1.25rem;
	}

	.two-col .col h2 {
		font-size: 2.25rem;
	}

	.four-grid .grid {
		padding: 50px 0;
	}

	.two-col .col:nth-child(2) img {
		height: 300px;
	}

	#impact-stories .col img {
		height: 350px;
	}

	.nav-arrows span {
		margin: 0 10px;
	}

	.dots button {
		margin: 0 3px;
	}

	footer .link-container span,
	footer .link-container ul {
		width: 80%;
	}

	.page-meta .content h1, .page-meta .content p, .page-meta .content .breadcrumbs {
		width: 90%;
	}

	.philosophy-container .philosophy {
		width: 100%;
	}

	.philosophy-container .philosophy img {
		display: inline-block;
		float: none;
	}

	.philosophy-container .philosophy .content {
		display: block;
		width: 80%;
		float: none;
		text-align: center;
	}

	.latest-cards .card {
		width: 100%;
	}

	.page-container ul, .page-container ol {
		padding-left: 30px;
	}

	.page-container ul li ul li, .page-container ol li ul li {
		padding: 0;
		margin-left: -25px;
	}

	.resources .col .content {
		width: 90%;
	}

	.resources {
		padding: 25px 0;
	}

	.resources .col:nth-child(2) {
		margin-top: 25px;
	}

	.resources .col img {
		height: 250px;
	}

	.page-landing form input, .page-landing form textarea, .page-landing form select {
		width: 90%;
		font-size: 1.5rem;
	}

	.page-landing form label {
		font-size: 1.5rem;
	}

	.page-container blockquote {
		font-size: 1.25rem;
		padding: 5px 25px;
	}

	.rl-gallery-item,
	.page-container .rl-gallery-item {
		width: 50% !important;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 250px !important;
	}
}


@media only screen and (max-width: 600px) {
	.menu-overlay {
		width: 100%;
		padding-top: 75px;
	}

	.menu-item a {
		font-size: 2.25rem;
	}

	.menu-item .submenu a {
		font-size: 1.5rem;
	}

	.menu-overlay i {
		font-size: 1.25rem;
	}

	.photo {
		height: 350px;
	}

	.page-container h2 {
		font-size: 2.5rem;
	}

	.page-meta {
		margin-top: 50px;
	}
}


@media only screen and (max-width: 550px) {

	.hero,
	.hero img {
		height: 100vh;
	}

	.hero .hero-text {
		width: 90%;
		left: 25px;
		bottom: 50px;
	}

	.hero .hero-text h1 {
		font-size: 3.5rem;
	}

	.hero .hero-text button {
		padding: 5px 15px;
	}

	.meta-wrapper {
		margin-top: -25px;
	}

	header .hamburger-menu-container {
		margin-top: 15px;
	}

	header nav img {
		height: 50px;
	}

	footer .footer-ctas .cta {
		width: 100%;
		border: 0;
		border-bottom: 1px solid #982619;
	}

	#stats {
		width: 80%;
		padding-bottom: 50px;
	}

	#impact-stories .col .content h3 {
		font-size: 2.5rem;
	}

	#impact-stories {
		width: 90%;
	}

	#impact-stories .col img {
		height: 275px;
	}

	#impact-stories .col .content p {
		padding-bottom: 10px;
	}

	.dots button {
		width: 30px;
	}

	.event-container {
		width: 90%;
	}

	.event-image img {
		height: 250px;
	}

	.event-card {
		margin: 25px 0;
	}

	.newsletter .container img {
		width: 100%;
	}

	.newsletter input[type="email"],
	.newsletter input[type=submit] {
		width: 100%;
		display: block;
	}

	.newsletter input[type=submit] {
		margin-top: 10px;
	}

	footer .link-container {
		width: 100%;
		margin: 25px 0;
	}

	footer .link-container span, footer .link-container ul {
		width: 70%;
	}

	footer .link-container:nth-child(3) {
		display: inline-block;
	}

	footer #footer-socials {
		margin-top: 50px;
	}

	footer .link-wrapper {
		padding: 50px 0;
	}

	footer #footer-socials .content {
		width: 100%;
	}

	footer .footer-copy .left, 
	footer .footer-copy .right {
		float: none;
		width: 100%;
		margin: 10px 0;
	}

	header nav {
		width: 90%;
	}

	header nav img {
		float: right;
	}

	header .hamburger-menu-container {
		margin-left: 0;
	}

	.search-icon {
		margin-top: 10px;
	}

	.menu-overlay {
		padding-left: 30px;
	}

	section hr {
		width: 65%;
	}

	.page-meta .content .breadcrumbs {
		display: none;
	}

	#about-impact .col:nth-child(2) img {
		width: 90%;
	}

	.card-container {
		width: 90%;
		margin: 0 auto;
	}

	.card-container .card img {
		height: 250px;
	}

	.faq-container .faq-item p {
		width: 100%;
	}

	.event-page .event-details span {
		font-size: 2.5rem;
	}

	.hamburger-menu-container span {
		font-size: 1.25rem;
	}

	.search-icon i {
		font-size: 1.5rem;
	}

	.page-landing form .consent {
		width: 100%;
	}

	.resource-card-container .resource-card,
	.resource-card-container .resource-card img {
		height: 400px;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 200px !important;
	}
}

@media only screen and (max-width: 500px) {
	.hero .hero-text h1 {
		font-weight: bold;
		text-shadow: 0 0 25px #000;
	}

	.hero .hero-text {
		bottom: 75px;
	}

	.hero,
	.hero img {
		height: 90vh;
	}

	.landing {
		margin-top: 0;
	}

	.landing .two-col .col .content {
		text-align: center;
	}

	.landing .two-col .col .content hr {
		margin: 25px auto;
	}

	.two-col .col .content {
		width: 90%;
	}

	.search-icon {
		margin-left: -8px;
	}

	.two-col .col h2 {
		font-size: 3rem;
	}

	.two-col .col .content p {
		font-size: 1.25rem;
	}

	.four-grid {
		width: 90%;
	}

	.four-grid .grid {
		margin: 25px 0;
	}

	#ctas {
		padding: 25px 0;
	}

	.image-grid .large .overlay h3,
	.image-grid .small .overlay h3 {
		font-size: 2.5rem;
	}

	footer .footer-copy span {
		width: 90%;
	}

	.search-form input[type="text"] {
		width: 50%;
	}

	.search-form button,
	.search-form input[type="text"] {
		padding: 10px 20px;
		font-size: 1.25rem;
	}

	.page-meta .content h1 {
		font-size: 3rem;
	}

	.page-container {
		width: 85%;
	}

	.philosophy-container .philosophy .content {
		width: 90%;
	}

	.latest-cards .card img {
		height: 250px;
	}

	.team .info span {
		display: block;
	}

	.team .title {
		padding: 0;
		padding-top: 10px;
	}

	.guide .act i {
		font-size: 1.5rem;
	}

	#locator {
		height: 350px;
	}

	.event-page .event-details span {
		font-size: 2.25rem;
	}

	.event-page .event-details div {
		padding-bottom: 15px;
	}

	.page-container h2 {
		font-size: 2rem;
	}

	.page-container h3 {
		font-size: 1.75rem;
	}

	.search-result {
		padding: 25px 0;
	}

	.rl-gallery-item,
	.rl-gallery-item img {
		height: 175px !important;
	}
}