@charset "utf-8";
/* CSS Document */

/*fonts*/
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Roboto", sans-serif;
	--font-secondary: "Poppins", sans-serif;
	--font-fancy: "Rancho", cursive;
}

/* Colors */
:root {
	--color-default: #0a0d13;/*black*/
	--color-primary: #b01c0e; /*red*/
	--color-primary-alt: rgba(176, 28, 14, 0.7); 
	--color-secondary: #00765b; /*green*/
	--color-secondary-alt: rgba(0,118,91,0.7); 
	--color-tertiary: #d0ac09; /*yellow*/
	--color-tertiary-light: #fdf8e0; /*brighter-yellow*/ /*another: #f4ca15*/ 
	--color-gray: #E6E6E6;
	--color-grey: #bec2cb;/
	--color-accent: #daa520; 
	--color-black: #1e1e1e; 
	--color-white: #ffffff;
	--color-p: #444; /*lighter black*/
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
::before,
::after {
	box-sizing: border-box;
}

* {
  padding: 0;
  border: 0;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  font-weight: 400;
  background: #fff;
  font-size: 18px;
  margin: 0 auto;
  line-height: 1.5;
}

/*forces footer to stay at bottom*/
body {min-height: 100vh; display: flex; flex-direction: column;}
footer{margin-top: auto;}

a {
  color: var(--color-primary);
  text-decoration: none;  
  transition: all 0.3s ease-in-out 0s;
  font-weight: 600;
}

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

h1, h2, h3, h4, h6 {
  font-family: var(--font-secondary);
  margin-bottom: .5em;
  color: var(--color-default);
  text-transform: capitalize;
}

.lc {
	text-transform: lowercase;
}

h5 {
  font-family: var(--font-fancy);
  color: var(--color-primary);
  font-size: 30px;
  letter-spacing: .5px;
}

/*header font-size changes from default*/

h6 {
  font-size: 20px;
  margin-bottom: .5em;
}

/*additional header changes*/

.h4 {
	font-size: 18px;
	text-transform: uppercase;
    margin-bottom: .5em;
} 

.h5 {
	font-family: var(--font-fancy);
	font-size: 30px;
}

.h6 {
	text-transform: uppercase;
    margin-bottom: .5em;
}

/*paragraph*/

p {
	font-family: var(--font-default);
	color: var(--color-p);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

@media (max-width: 991px){
	p {
		font-size: 16px;
		line-height: 1.7;
	}
}

.lead {
	font-size: 1.15rem;
	line-height: 1.8rem;
	font-weight: 400;
}

.site-bi-line {
	align-items: center;
	text-align: center;
	font-family: var(--font-fancy);
	background: var(--color-primary);
	color: #F4CA15;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 3px;
	padding: 10px 0;
	margin-bottom: 15px;
}

.site-bi-line-inner {
	align-items: center;
	text-align: center;
	font-family: var(--font-fancy);
	background: #222;
	color: #F4CA15;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 3px;
	padding: 10px 0;
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.site-bi-line {
		font-size: 14px;
		letter-spacing: 2px;
	}
	.site-bi-line-inner {
		font-size: 12px;
		letter-spacing: 2px;
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 60px; 
}

@media screen and (max-width: 1400px) {
	#header .logo img {
	  max-height: 50px; 
	}
}

@media screen and (max-width: 991px) {
	#header .logo img {
	  max-height: 40px; 
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*Desktop*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary);
}

  .navbar .donate {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .donate:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .donate:hover {
    color: #fff;
    background: var(--color-tertiary);
  }

  .navbar .donate:focus:hover {
    color: #fff;
    background: #b01c0e;
  }

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid var(--color-primary);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
  background: var(--color-primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*mobile*/

.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
  text-transform: capitalize;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

  .navbar .donate,
  .navbar .donate:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
	display: inline-block;
  }

  .navbar .donate:hover,
  .navbar .donate:focus:hover {
    background: var(--color-tertiary);
    color: #fff;
  }

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fff;
  background: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
#Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/home/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  color: rgba(255, 255, 255, 0.5); 
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .1);
  z-index: -1;
}

.hero .content {
	align-content: center;
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

@media(min-width:575px) and (max-width: 991px){
	.hero h2 {
    	font-size: 38px;
	}
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 40px;
	
}

.cta-btn {
  font-family: var(--font-primary);
  background: var(--color-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 0;
  border: 2px solid #fff;
  color: #fff;
}

.cta-btn:hover {
  background: var(--color-secondary);
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0 40px;
  overflow: hidden;
}

.section-bg-gray {
  background-color: #E6E6E6;
}

.section-bg-grey {
  background-color: #bec2cb; 
}

.section-bg-sec {
  background: var(--color-secondary);
}

.section-bg-light {
  background: var(--color-tertiary-light);
}

.section-bg-secondary {
  background: rgba(55, 64, 89, 0.7); ;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  color: var(--color-default);
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media (max-width: 991px){.section-title h2 {font-size: 28px;}}
@media (max-width: 575px){.section-title h2 {font-size: 21px;}}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title lead {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  font-family: var(--font-default);
  padding: 20px 0 15px 0;
  background-image: linear-gradient(45deg, #b01c0e, #bc1e0f); 

  min-height: 40px;
  margin-top: 152px;
}

.breadcrumbs h2 {
	padding-top: 5px;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol a:hover {
  color: var(--color-tertiary-light);
}

.breadcrumbs ol li {
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  font-weight: 600;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
.breadcrumbs {
  padding: 20px 0 15px 0;
  margin-top: 118px;
  }

.breadcrumbs h2 {
  font-size: 21px;
}

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .breadcrumbs {
    padding: 25px 0 15px 0;
  }
	
  .breadcrumbs ol {
    display: none;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/****************************************COLORS*/

.color-white {
	color: #ffffff;
}
.color-bg-white {
	background: #ffffff;
}
.color-gray {
  color: #E6E6E6;
}
.color-bg-gray {
  background: #E6E6E6;
}

.color-grey {
  color: #bec2cb; 
}

.color-bg-grey {
  background: #bec2cb; 
}

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

.color-secondary {
	color: var(--color-secondary);
}

.color-bg-primary {
	background: var(--color-primary);
}

.color-bg-secondary {
	background: var(--color-secondary);
}

.color-tertiary {
	color: var(--color-tertiary);
}

.color-bg-tertiary-dark {
	background: var(--color-tertiary);
}

.color-bg-tertiary {
	background: var(--color-tertiary-light);
}

.color-sec-alt {
  color: rgba(0,118,91,0.7);
}

.color-bg-sec-light {
	background: rgba(0,118,91,0.7);
}


/****************************************************************PAGES*/

/*homepage*/

 #jumbo-home {
	background-image: linear-gradient(45deg, #444, #000, #222);
	background: var(--color-black);
	border-top: 1px solid #e6e6e6;
}

#jumbo-home .section-title h2 {
  color: #fff;
}

#jumbo-home .section-title h2::after {
  background: #fff;
}

#jumbo-home .lead {
	color: #fff;
	font-weight: 500;
	text-align: center;
}

@media (max-width: 575px){
	#jumbo-home .lead {
		font-size 1.15rem;
	}
	
	.lead {
		font-size 1.15em;
	}
}

#pillars .container {
  position: relative;
}

#pillars .photo-title {
  position: absolute;
  text-align: center;
  bottom: -40px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff; 
  padding: 10px 30px; 
  border-radius: 0px; 
  border-top: 10px solid var(--color-primary);
}

#pillars h2 {
  font-family: var(--font-secondary);
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 500;
}

.pillars p {
	font-weight: 500;
	padding-top: .8em;
	font-size: 1rem;
}

.pillar {
	padding: 1.6em 2.5em 0 2.5em;
	margin-bottom: 0;
	background-image: linear-gradient(45deg, #fdf8e0, #fff, #fdf8e0);
	border-radius: 50px 0 50px 0;
}

.pillar h4 {
	font-family: var(--font-secondary);
	text-align: center;
	font-size: 24px;
	color: var(--color-default);
	text-transform: none;
    font-weight: 400;
	line-height: 1.5em;
}

@media (max-width: 575px) {
	.pillar  {
		background-image: none;
	}
}

@media (max-width: 991px) {
	.pillars p {
		padding-left: 30px;
		padding-right: 30px;
	}
	.pillar h4 {
		font-size: 19px;
		/*text-align: left;*/
	}
}


#three-pillars {
	margin-bottom: 0;
}

#three-pillars .container {
  display: flex;
}

#three-pillars .box {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

#three-pillars .box {
	
}

/*#three-pillars .box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px; 
  background: rgba(0, 0, 0, 0.15);
  height: 50%; 
}*/

#three-pillars h4 {
  font-family: var(--font-secondary);
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: .5em;
}

#three-pillars .wrap-icon {
  margin: 0 auto;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#three-pillars .wrap-icon img {
  transition: all 0.3s ease-in-out;
}
#three-pillars .wrap-icon:hover img {
  transform: scale(1.1);
}

#three-pillars .education {
	color: var(--color-primary);
}

#three-pillars .health {
	color: var(--color-secondary);
}

#three-pillars .youth{
	color: var(--color-tertiary);
}

#three-pillars p {
	font-size: 1em;
	text-align: center;
	margin-bottom: 10px;
}     

@media (max-width: 991px) {

	#three-pillars {
		margin-bottom: 60px;
	}
	
	#three-pillars .box {
		display: block;
		flex: none;
		padding: 20px 25px 0 25px;
		margin-bottom: 1em;
	}
	
	#three-pillars .box:last-child {
		margin-bottom: 0;
	}
	
	/* Hide the divider line for all boxes */
	/*#three-pillars .box::after {
		display: none;
	}*/

	#three-pillars h4 {
		font-weight: 400;
		font-size: 19px;
	}

	#three-pillars p {
		font-weight: 400;
		font-size: 16px;
	}
}

/*Values*/


#values {
  width: 100%;
  min-height: 300px;
  background-image: url("../images/home/flag.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  z-index: 1;
  border-bottom: 10px solid var(--color-secondary);
}

#values::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .3);
  z-index: -1;
}

#values h3 {
  font-family: var(--font-fancy);
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 2px;
}


/*Four Values Start*/

#four-values {
	padding-top: 0px;
}

@media (max-width: 991px) {
	#four-values {
		background: #fff;
	}
}

@media (max-width: 991px) {
	#four-values {
		padding-bottom: 0;
	}
}

.four-values {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 50px 0px 0 60px;
}

.four-values .box {
	margin: 0 1rem 1.5rem 0;
}

@media (max-width: 1199px) {
	.four-values .box {
		margin: 0 1.5rem 1.7rem 0;
	}
	.four-values .box:first-child {
		margin-top: 1em;
	}
}

@media (max-width: 991px) {
	.four-values .box:first-child {
		margin-top: 3em;
	}
}

@media (max-width: 575px) {
	.four-values {
		box-shadow: none;
	}
}

@media (max-width: 991px) {
	.four-values .approach {
		margin-bottom: -20px ;
	}
}

.four-values .box h4 {
	font-size: 21px;
}

.four-values .h6 {
	font-weight: 500;
	margin-bottom: 1rem;
}

.four-values .box p{
	font-size: 16px;
	line-height: 1.6rem;
}

.four-values ul {
    list-style: none;
    padding: 0;
	margin-bottom: 1rem;
}

.four-values ul li {
	font-size: 16px;
	line-height: 1.6rem;
    padding-bottom: 10px;
}

.four-values ul li:last-child {
  padding-bottom: 10px;
}

.four-values ul li i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--color-secondary);
}

.four-values .content p:last-child {
  margin-bottom: 10px;
}

@media(max-width: 991px) {

	.four-values {
		background: #fff;
		padding: 0 20px 0 50px;
		border-top: none;
	}
	
	.four-values ul li {
		font-size: 16px;
		line-height: 1.5rem;
		padding-bottom: 8px;
	}
	
	.four-values ul li:last-child {
		padding-bottom: 0;
	}
}

.values .core {
	color: var(--color-secondary);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
    margin-bottom: .5em;
}

#four-values ul li i {
	color: var(--color-secondary);
		font-size: 1.5rem;
		line-height: 1.5rem;
		padding-bottom: 8px;
}


/**********************************************************Design Elements*/

/*buttons*/

.btn {
  background: var(--color-primary);
  border: medium none;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
}

.btn:hover, .btn:focus {
  background: var(--color-secondary);
  color: #fff;
}


/*list*/

.list {
	margin-right: 15px;
	margin-bottom: 20px;
}

.list  ul {
  list-style: none;
  padding: 0;
}

.list  ul li {
  padding-bottom: 10px;
}

.list  ul li:last-child {
  padding-bottom: 10px;
}

.list ul li i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--color-primary);
}

.list  p:last-child {
  margin-bottom: 0px;
}

/*CARDS*/

/*for homepage*/

/*#pillars .row {
	display: flex;
	flex-wrap: wrap;
}

#pillars .col-lg-4 {
	display: flex;
	flex-direction: column;
}

#values .row {
	display: flex;
	flex-wrap: wrap;
}

#values .col-lg-6 {
	display: flex;
	flex-direction: column;
}

#four-values .row {
	display: flex;
	flex-wrap: wrap;
}

#four-values .col-lg-4 {
	display: flex;
	flex-direction: column;
}*/

/*generic reuasable*/

/*to use the following, include the # and col.*/

/*.card-border {
	border: 1px solid #ddd;
	padding: 1.2em 1em .5em 1.7em; 
  	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 2em;
    flex: 1;
}

.card-border-top {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1.2em 1em .5em 1.7em;
  border-top: 5px solid var(--color-primary);
  margin-bottom: 2em;
  flex: 1;
}

.card-border-top p {
  font-size: 18px;
}

.card-border-top ul {
  list-style: none;
  padding: 0;
}

.card-border-top ul li {
  padding-bottom: 10px;
}

.card-border ul li:last-child {
  padding-bottom: 10px;
}

.card-border-top ul li i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--color-primary);
}

.card-border-top .content p:last-child {
  margin-bottom: 10px;
}*/

/*Tabs*/

.nav-tabs .nav-link {
  color: #495057;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-bottom-color: transparent;
}

.tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 20px;
  background-color: #fff;
}

/*Tabs Modified*/

.project-link {
  display: block;
  margin: 10px 0;
  color: #007bff;
  text-decoration: none;
}

.project-link:hover,
.project-link:focus {
  text-decoration: underline;
}

.collapse {
  margin-top: 15px;
}

/*Vertical divider lines*/

 
#divider .container {
  display: flex;
}

#divider .box {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

#divider .box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px; /* Width of the divider line */
  background: rgba(0, 0, 0, 0.85);
  height: 50%; /* Height of the divider line */
	
}

/*Horizontal divider line*/

#divider hr {
  border: none;
  height: 1.3px; /* Height of the horizontal rule */
  background: #000; /* Color of the horizontal rule */
  width: 50%; /* Width of the horizontal rule */
  margin: 0 auto; /* Centers the horizontal rule */
}

hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);;
  width: 50%;
  margin: 0 auto;
  margin-top: 2rem;
  padding-bottom: 1.5rem;
}


/*Div designs*/

.b-bottom {
	border-bottom: 10px solid var(--color-primary);
}

.b-top {
	border-top: 10px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  position: relative; 
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(55, 64, 89, 0.7)), url("../images/work/cta.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0 100px 0;
  z-index: 0;
}

@media (max-width: 1400px){
	.cta { 
  		position: relative; 
		background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(55, 64, 89, 0.7)), url("../images/work/cta-xl.jpg")
		scroll top center;
  		background-size: cover;
		background-repeat: no-repeat;
  		padding: 100px 0 80px 0;
	}
}

@media (max-width: 768px){
	.cta { 
  		position: relative; 
        background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(55, 64, 89, 0.7)), url("../images/work/cta-lg.jpg") scroll center center;
  		background-size: cover;
		background-repeat: no-repeat;
  		padding: 90px 0 70px 0;
	}
}

.cta .wrapper {
  position: relative; 
	z-index: 1;
}
.cta h3 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  font-size: 1.23rem;
  text-align; center;
  color: #fff;
}

.cta .cta-btn {
  text-align: center;
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  font-weight: 600;
}
.cta .cta-btn:hover {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
}

@media (max-width: 768px){
	.cta p {
		font-size: 18px;
	}
	.cta .cta-btn {
  		font-size: 14px;
		padding: 12px 20px;	
	}
}

#privacy {
	text-align: center;
}

#privacy p {
	font-size: 16px;
}

#privacy .content-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 35px 8px 38px;
  background: #fff;
}

@media(max-width: 575px){
	#privacy .content-wrap {
	  box-shadow: none;
	  padding: none;
	}
}

#privacy .h6  {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	margin-bottom: 1em;
}

#privacy h5 {
	margin-bottom: .5em;
}

#privacy ul {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 1.5em;
}

#privacy .newsletter p:first-of-type {
	font-weight: 600;
}
#privacy .newsletter p:nth-of-type(2) {
	margin-top: -15px;
}

#privacy .donation p:nth-of-type(2) {
	font-weight: 600;
}
#privacy .donation p:nth-of-type(3) {
	margin-top: -15px;
}
#privacy .zeffy {
	padding: 2em;
	background-image: linear-gradient(45deg, #e4e4e4, #ffffff, #e4e4e4);
	margin-bottom: 1.5em;
}

@media(max-width: 575px){
	#privacy .donation {
		margin-top: -50px;
	}
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1e1e1e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 a {
  display: block; 
  margin: 0;
  padding: 0;
  vertical-align: top;
  font-size: 21px;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-contact h3 a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1199px) {#footer .footer-top .footer-contact h3 a {font-size: 18px;}}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.7);	
}

#footer .footer-top .footer-contact p a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}

#footer .footer-top .footer-contact p a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
	font-weight: 400;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/*SUBSTACK CSS GOES HERE*/

#footer .footer-newsletter form {
  border: none;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
	line-height: 1.6em;
	font-size: .875em;
	font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}


@media (max-width: 575px) {
	#footer .footer-top {padding: 30px};
}

/*gradients*/

.diagonal {
	position: relative;
	isolation: isolate;
}

.diagonal::after {
	content:'';
	background-image: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
	position: absolute;
	z-index: -1;
	inset: 0;
	transform: skewY(-2deg);
}

.outline-yellow {
	outline: 1px solid var(--color-tertiary);
	outline-offset: -10px;
}

.outline {
	outline: 2px solid var(--color-white);
	outline-offset: -5px;
}

.outline-secondary {
	outline: 2px solid rgba(55, 64, 89, 0.1); ;
	outline-offset: -20px;
}

.content-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 35px 8px 38px;
  background: #fff;
}

.border {
  position: relative;
  padding: 1em;
  background: #fff;
  outline: 2px solid #0DAD63; 
}

.border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  outline: 2px solid #004e3b;
}

/*popup for fundraiser (see fundraiser.css)*/


		

 /* Add Animation */
        @keyframes animatetop {
            from {transform: translateY(-50%) translate(-50%, -50%); opacity: 0}
            to {transform: translateY(0%) translate(-50%, -50%); opacity: 1}
        }

		@media(max-width: 768px){
			@keyframes animatetop {
			  from {transform: translateY(-60%) translateX(-50%); opacity: 0}
			  to {transform: translateY(-10%) translateX(-50%); opacity: 1}
			}
		}
		

        /* The Close Button */
        .close {
            color: #aaaaaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

       