/*!
Theme Name: ngo_spa
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ngo_spa
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ngo_spa is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;


  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  font-weight: 400;
	font-size: 1.6rem;
  color: #000;
  background-color: #fff;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}


/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

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

a {
  text-decoration: none;
}

.container {
  /* 1440px */
  max-width: 144rem;
  padding: 0 1.6rem;
  margin: 0 auto;
}

header {
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-align: center;
	background-color: #fff;
	z-index: 5;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}
.section {
	margin: 0;
  scroll-margin-top: 30rem;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .site-main {
  padding-top: 28rem;
}
.sticky + header {
	border-bottom: 1px solid #DEE2E6;
}
.nav-menu {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.nav-menu a:link, .nav-menu a:visited {
	color: #000;
	font-weight: 400;
}
.nav-menu a:hover, .nav-menu a:focus {
	color: #136018;
}

.intro {
	background-color: #DEF2D9;
	color: #3F4A3C;
	font-weight: 400;
	text-align: center;
	padding: 2rem;
	margin: 2rem 0rem;
	
	
}
.sub-title {
	font-weight: 500;
	font-size: 2.5rem;
	padding-bottom: .8rem;
}
.about li {
	padding-left: 0.4rem;
	margin-bottom: 1rem;
}
.about li i {
	color: #136018;
	padding-right: .6rem;
}
.about ul {
	margin-bottom: 1rem;
}
.about {
	margin: 2rem 0rem;
	padding: 0 1.5rem;
}
.newsletter {
	background-color: #136018;
	margin: 2rem 0rem;
}
.noptin-form-fields {
	max-width: 75rem !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-family: "Roboto", sans-serif !important;
 }
 .noptin-form-fields input {
	height: 4rem;
	font-size: 1.6rem !important;
 }
 .noptin-form-fields input[type="submit"] {
	font-weight: 500 !important;
	padding-left: 25px !important ;
	padding-right: 25px !important;
 }
 .contact {
	margin: 2rem 0rem;
	padding: 0 2rem;
}
	.contact h2 {
		text-align: center;
	}
 	.contact-body {
		display: flex;
		gap: 2%;
	}
	.contact-info {
		width: 39%;
	}
	.contact-form {
		width: 59%
	}
	.contact-info h4 {
		font-size: 2rem;
		padding-bottom: 0.6rem;
	}
	.contact-info div {
		margin-bottom: 1.8rem;
	}
	.contact-info div h4, .contact-info div p {
		padding-left: 2.5rem;
	}
	.contact-info i {
		color: #136018;
		float: left;
		margin-top: 1rem;
	}
	.contact-info a:link, .contact-info a:visited {
		color: #136018;
	}
	.menu-toggle {
		display: none;
	}
footer {
	background-color: #000;
	height: 8rem;
	text-align: center;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	color: #fff;
	font-weight: 400;
	font-size: 1.4rem;
}

.social-links {
	margin-bottom: 1.5rem;
	
	
}
.social-links a:link, .social-links a:visited {
	color: #fff;
	background-color: #136018;
	padding: 5px 7px;
	border: 1px solid #136018;
	border-radius: 50%;
}

.page-space {
	padding-top: 20rem;
}