/*
Theme Name: Hunch Website
Theme URI: Your Theme's URI
Description: A brief description.
Version: 1.0
Author: HCI Group @ NASA Ames
Author URI: Your website address.
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Oswald');
body {
  background: #fff;
  /*color: magenta;*/
  /* font-family: 'Roboto', sans-serif; */
  /* font-weight: 100; */
}

.row {
	margin-right: 0;
}

html {
	margin-right: 0;
}

a2 {
  color: #000;
}

a:hover,
a:active,
a:focus {
  color: #6c757d !important;
  outline: none;
  text-decoration: none !important;
}

a1:hover, a1:active, a1:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}


p {
  font-family: 'Roboto', sans-serif;
  color: black;
  font-weight: 100%;
  font-size: 12pt;
  padding: 0;
  margin: 0 0 30px 0;
}




h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Open Sans', sans-serif !important;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
}

p .job-title {
  font-family: 'Oswald', 'Open Sans', sans-serif !important;
  font-size: 18px;
  margin-bottom: 5px;
}

.job-title {
  font-size: 18px;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  /* position: fixed; */
  padding: 20px 0;
  height: 92px;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: #000;
  opacity: .99;
}

#header #logo {
  float: left;
  margin-right: 40px;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: 'Oswald', 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#logo img {
  padding: 0;
  margin: 0;
  width: 80px;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 100%;
  }
}

#header.header-fixed {
  padding: 10px 0px;
  height: 72px;
  transition: all 0.5s;
}

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

/* Nav Menu Essentials */

.new-nav-float {
  float: right;
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu li:hover>ul, .nav-menu li.sfHover>ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Meu Container */

#nav-menu-container {
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: white;
  font-family: 'Oswald', 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu {
  display: flex;
}

.nav-menu>li {
  margin-top: 8px;
  margin-left: 20px;
  text-align: center;
}

.nav-menu>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover>a:before, .nav-menu .menu-active>a:before {
  visibility: visible;
  -webkit-transform: scaleX(.6);
  transform: scaleX(.6);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #ffbb3b;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

.search {
  float: right;
  margin-top: 15px;
  margin-left: 40px;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 30px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -100%;
  width: 100%;
  overflow-y: auto;
  transition: 0.4s;
}

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

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

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

#homepage-hero {
  width: 100%;
  height: 100vh;
  background: url(img/hero.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #homepage-hero {
    background-attachment: fixed;
  }
}

#homepage-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#homepage-hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#homepage-hero h1 {
  margin: 120px 0 50px 0;
  font-size: 110px;
  font-weight: 700;
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: 2px 3px 20px #000;
  color: #fff;
}

@media (max-width: 768px) {
  #homepage-hero h1 {
    font-size: 50px;
    line-height: 36px;
  }
}

#homepage-hero h2 {
  color: #eee;
  width: 65%;
  margin-bottom: 50px;
  font-size: 24px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 768px) {
  #homepage-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#homepage-hero .btn-get-started {
  font-family: 'Oswald', 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#homepage-hero .btn-get-started:hover {
  background: #ffbb3b;
  border: 2px solid #ffbb3b;
}

#homepage-hero .hero-button {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Subpage-Hero Sections
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #subpage-hero .subpage-pic {
    background-attachment: fixed;
  }
}

#subpage-hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#subpage-hero h1 {
  margin: 60px 0 50px 0;
  font-size: 110px;
  font-weight: 700;
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: 2px 3px 20px #000;
  color: #fff;
}

@media (max-width: 768px) {
  #subpage-hero h1 {
    font-size: 50px;
    line-height: 36px;
  }
}

#subpage-hero h2 {
  color: #eee;
  width: 65%;
  margin-bottom: 50px;
  font-size: 24px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 768px) {
  #subpage-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#subpage-hero .programs-hero {
  width: 100%;
  height: 70vh;
  background-image: url(/wp-content/uploads/programs.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#subpage-hero .projects-hero {
  width: 100%;
  height: 70vh;
  background-image: url(/wp-content/uploads/projects.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#subpage-hero .impact-hero {
  width: 100%;
  height: 70vh;
  background-image: url(/wp-content/uploads/impact.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#subpage-hero .social-hero {
  width: 100%;
  height: 70vh;
  background-image: url(/wp-content/uploads/projects.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#subpage-hero .getinvolved-hero {
  width: 100%;
  height: 70vh;
  background-image: url(/wp-content/uploads/signup.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

/*--------------------------------------------------------------
# Program-Hero Sections
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #program-hero .subpage-pic {
    background-attachment: fixed;
  }
}

#program-hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#program-hero h1 {
  margin: 60px 0 50px 0;
  font-size: 110px;
  font-weight: 700;
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: 2px 3px 20px #000;
  color: #fff;
}

@media (max-width: 768px) {
  #program-hero h1 {
    font-size: 50px;
    line-height: 36px;
  }
}

#program-hero h2 {
  color: #eee;
  width: 65%;
  margin-bottom: 50px;
  font-size: 24px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 768px) {
  #program-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  #program-hero .subpage-pic {
    background-attachment: fixed;
  }
}

#program-hero .software-hero {
  width: 100%;
  height: 70vh;
  background-image: url(img/software.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#program-hero .hardware-hero {
  width: 100%;
  height: 70vh;
  background-image: url(img/hardware.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#program-hero .softgoods-hero {
  width: 100%;
  height: 70vh;
  background-image: url(programs/sewn/food-pantry-iss-sewn.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#program-hero .video-hero {
  width: 100%;
  height: 70vh;
  background-image: url(img/video.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

#program-hero .design-hero {
  width: 100%;
  height: 70vh;
  background-image: url(img/design.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#program-hero .culinary-hero {
  width: 100%;
  height: 70vh;
  background-image: url(img/culinary.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

/*--------------------------------------------------------------
# Project-Hero Sections
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #project-hero .subpage-pic {
    background-attachment: fixed;
  }
}

#project-hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#project-hero h1 {
  margin: 60px 0 50px 0;
  font-size: 110px;
  font-weight: 700;
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: 2px 3px 20px #000;
  color: #fff;
}

@media (max-width: 768px) {
  #project-hero h1 {
    font-size: 50px;
    line-height: 36px;
  }
}

#project-hero h2 {
  color: #eee;
  width: 65%;
  margin-bottom: 50px;
  font-size: 24px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 768px) {
  #project-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#project-hero .iss-footpads-hero {
  width: 100%;
  height: 70vh;
  background-image: url(projects/iss-footpads/footpads.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#project-hero .crew-quarter-orgs {
  width: 100%;
  height: 70vh;
  background-image: url(projects/crew-quarters-organizer/crew-quarters-org.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

#project-hero .misse-hardware {
  width: 100%;
  height: 70vh;
  background-image: url(projects/misse-hardware/misse-hardware1.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#project-hero .double-lockers {
  width: 100%;
  height: 70vh;
  background-image: url(projects/double-lockers/double-locker2.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

#project-hero .video-2018-1 {
  width: 100%;
  height: 70vh;
  background-image: url(projects/video-2018-1/video-2018-1.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

#project-hero .video-2018-2 {
  width: 100%;
  height: 70vh;
  background-image: url(projects/video-2018-2/video-2018-2.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 51%;
}

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/*--------------------------------------------------------------
# Article-Hero Sections
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #article-hero .subpage-pic {
    background-attachment: fixed;
  }
}

#article-hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#article-hero h1 {
  margin: 60px 0 50px 0;
  font-size: 110px;
  font-weight: 700;
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: 2px 3px 20px #000;
  color: #fff;
}

@media (max-width: 768px) {
  #article-hero h1 {
    font-size: 50px;
    line-height: 36px;
  }
}

#article-hero h2 {
  color: #eee;
  width: 65%;
  margin-bottom: 50px;
  font-size: 24px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 768px) {
  #article-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#article-hero .culinary-2018 {
  width: 100%;
  height: 70vh;
  background-image: url(../articles/culinary-challenge-2018/blackberry-orange-croissant.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#article-hero .video-2018 {
  width: 100%;
  height: 70vh;
  background-image: url(../articles/video-challenge-2018/video-2018.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#article-hero .jsc-recognition-2018 {
  width: 100%;
  height: 70vh;
  background-image: url(../articles/jsc-recognition-2018/jsc-recognition-2018.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

#article-hero .final-culinary-2018 {
  width: 100%;
  height: 70vh;
  background-image: url(../articles/final-culinary-challenge/finalist.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

/*--------------------------------------------------------------
Sections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Section Headers
--------------------------------------------------------------*/

.section-header .section-title-black {
  font-size: 40px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  padding-top: 80px;
  padding-bottom: 60px;
}

.section-header .section-title-white {
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  padding-top: 80px;
  padding-bottom: 20px;
}

.program-info {
  font-size: 16px;
  color: #000;
  text-align: left;
}

/*--------------------------------------------------------------
# Hunch Programs Section - White text
--------------------------------------------------------------*/

#hunch-programs-white {
  background: #000;
  background-size: cover;
  padding-bottom: 10px;
}

#hunch-programs-white .box {
  padding-top: 90px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #000;
}

#hunch-programs-white .title {
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

#hunch-programs-white .title a {
  color: #fff;
}

#hunch-programs-white .description {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

#hunch-programs-white .design {
  background: url(img/design.jpg);
  background-size: cover;
}

#hunch-programs-white .software {
  background: url(img/software.jpg);
  background-size: cover;
}

#hunch-programs-white .hardware {
  background: url(img/hardware.jpg);
  background-size: cover;
}

#hunch-programs-white .softgoods {
  background: url(img/softgoods.jpg);
  background-size: cover;
}

#hunch-programs-white .video {
  background: url(img/video.png);
  background-size: cover;
}

#hunch-programs-white .culinary {
  background: url(img/culinary.jpg);
  background-size: cover;
}

/*--------------------------------------------------------------
# Hunch Programs Section - Black text
--------------------------------------------------------------*/

#hunch-programs-black {
  background: #fff;
  background-size: cover;
}

#hunch-programs-black .box {
  padding-top: 90px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fff;
}

#hunch-programs-black .title {
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

#hunch-programs-black .title a {
  color: #000;
}

#hunch-programs-black .description {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

#hunch-programs-black .design {
  background: url(img/design.jpg);
  background-size: cover;
}

#hunch-programs-black .software {
  background: url(img/software.jpg);
  background-size: cover;
}

#hunch-programs-black .hardware {
  background: url(img/hardware.jpg);
  background-size: cover;
}

#hunch-programs-black .softgoods {
  background: url(img/softgoods.jpg);
  background-size: cover;
}

#hunch-programs-black .video {
  background: url(img/video.png);
  background-size: cover;
}

#hunch-programs-black .culinary {
  background: url(img/culinary.jpg);
  background-size: cover;
}

/*--------------------------------------------------------------
# Intro Blurb Section
--------------------------------------------------------------*/

#intro-blurb {
  background: #fff;
  text-align: center;
  padding-bottom: 80px;
}

#intro-blurb .section-title-black {
  margin-bottom: 0px;
}

#intro-blurb .signup-info {
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-size: 12pt;
}

#intro-blurb a {
  color: #000;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Latest Updates Section
--------------------------------------------------------------*/

#latest-updates .offset-bg {
  background: black;
  padding: 50px;
  height: 1990px;
  width: 100%;
  position: absolute;
  z-index: -1;
}

/* #latest-updates,
#latest-updates .row {
  margin-bottom: 50px;
} */

#latest-updates .latest-image-container {
  max-width: 700px;
  max-height: 450px;
  object-fit: cover;
  overflow: hidden;
}

#latest-updates .latest-updates-white {
  color: #fff;
/*   padding-bottom: 20px; */
}

#latest-updates .latest-updates-black {
  color: #000;
/*   padding-bottom: 20px; */
}

#latest-updates .latest-updates-white p,
#latest-updates .latest-updates-black p {
  color: inherit;
}

#latest-updates .latest-img {
  width: 100%;
}

/*--------------------------------------------------------------
# Program Timeline Section
--------------------------------------------------------------*/

#timeline .container {
  margin-top: 0px;
}

#timeline .project-timeline {
  max-width: 100%;
}

#timeline .container {
  margin-bottom: 100px;
}

#timeline .timeline-text5 {
  font-size: 10pt;
  max-width: 200px;
  float: right;
  margin-right: 0px;
  float: left;
  margin-left: 20%;
}

#timeline .timeline-text6 {
  font-size: 10pt;
  max-width: 200px;
  float: right;
  margin-right: 0px;
  float: right;
}

#timeline .timeline-text1 {
  font-size: 10pt;
  max-width: 200px;
  margin-left: 15px;
}

#timeline .timeline-text2 {
  font-size: 10pt;
  max-width: 200px;
  margin-left: 250px;
}

#timeline .row {
  margin-top: 30px;
}

#timeline .row-t {
  margin-top: 30px;
}

#timeline-v .timeline-vertical {
  text-align: center;
}

#timeline-v span.timelineV1 {
  margin-left: 20px;
  margin-bottom: 50px;
  display: block;
  max-width: 200px;
  font-family: 'Roboto', sans-serif;
  font-size: 12pt;
}

@media (max-width: 768px) {
  #timeline {
    display: none;
  }
}

@media (min-width: 769px) {
  #timeline-v {
    display: none;
  }
}

/*--------------------------------------------------------------
# Reach Section - White text
--------------------------------------------------------------*/

#reach-white {
  background: #000;
  padding-bottom: 20px;
}

#reach-white .counters span {
  font-size: 48px;
  color: #fff;
  display: block;
}

#reach-white .counters p {
  color: #fff;
  padding: 0;
  margin: 0 0 20px 0;
  font-family: 'Oswald', 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Reach Section - Black text
--------------------------------------------------------------*/

#reach-black {
  background: #fff;
  padding-bottom: 20px;
}

#reach-black .counters span {
  font-size: 48px;
  color: #000;
  display: block;
}

#reach-black .counters p {
  color: #000;
  padding: 0;
  margin: 0 0 20px 0;
  font-family: 'Oswald', 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../uploads/iss.jpg) fixed center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 30px;
}

.cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .row {
  margin-bottom: 70px;
}

.cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.cta-btn {
  font-family: 'Oswald', 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-btn:hover {
  background: #4A90E2;
  border: 2px solid #4A90E2;
  color: #fff;
}

#call-to-action .newsletter-signup {
  display: flex;
}

#call-to-action .newsletter-signup>input {
  width: 110%;
  font-family: 'Roboto', sans-serif;
  font-size: 10pt;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/

#partners {
  background: #fff;
}

#partners .row {
  margin-bottom: 0px;
}

#partners img {
  max-width: 50%;
}

#partners .logo {
  text-align: center;
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# Point of Contact Section - White text
--------------------------------------------------------------*/

#poc-white {
  background: #000;
  padding-bottom: 1px;
}

#poc-white img {
  width: 200px;
  border-radius: 50%;
  margin: auto;
  height: 200px;
  object-fit: cover;
}

#poc-white .poc-content {
  margin-top: 20px;
  text-align: center;
}

#poc-white .description {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}

#poc-white .sub-head {
  color: #fff;
}

/*--------------------------------------------------------------
# Point of Contact Section - Black text
--------------------------------------------------------------*/

#poc-black {
  background: #fff;
  padding-bottom: 1px;
}

#poc-black img {
  width: 200px;
  border-radius: 50%;
  margin: auto;
  height: 200px;
  object-fit: cover;
}

.description {
	margin-right: 8px;
}

#poc-black .poc-content {
  margin-top: 20px;
  text-align: center;
}

#poc-black .description {
  margin-top: 20px;
  text-align: center;
  color: #000;
}

#poc-black .sub-head {
  color: #000;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

#testimonials {
  color: #fff;
  background: #000;
  padding-top: 80px;
  padding-bottom: 20px;
}

#testimonials img {
  border-radius: 50%;
  max-width: 400px;
}

#testimonials .test-quote {
  font-size: 22px;
  font-style: italic;
  padding-top: 90px;
  text-shadow: 2px 3px 20px #000;
}

#testimonials .test-info {
  font-size: 22px;
  padding-top: 90px;
  text-shadow: 2px 3px 20px #000;
  margin-left: 35px;
}

#testimonials .test-info-title {
  font-size: 20px;
  text-shadow: 2px 3px 20px #000;
  margin-left: 35px;
}

#testimonials .test-title {
  font-size: 20px;
  text-shadow: 2px 3px 20px #000;
}

@media (max-width: 990px) {
  #testimonials img {
    margin: auto;
    border-radius: 50%;
    max-width: 75%;
    display: inherit;
  }
}

/*--------------------------------------------------------------
# Triple Feature Section - Black text
--------------------------------------------------------------*/

#triple-feature-black {
  background: #fff;
}

#triple-feature-black .picture-box {
  height: 195px;
  overflow: hidden;
  margin-bottom: 10px;
  margin-right: 8px;
}

#triple-feature-black img {
  width: 100%;
}

#triple-feature-black h4 {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Triple Feature Section - White text
--------------------------------------------------------------*/

#triple-feature-white {
  background: #000;
  padding-bottom: 1px;
}

#triple-feature-white .picture-box {
  max-height: 195px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #e6e6e6;
  margin-right: 8px;

}

#triple-feature-white h4 {
  margin-bottom: 10px;
  color: #fff;
}

#triple-feature-white img {
  width: 100%;
}

#triple-feature-white p {
  color: #fff;
}

/*--------------------------------------------------------------
# Social Feed Section
--------------------------------------------------------------*/

#social-feed {
  background: #000;
  text-align: left;
}

#social-feed img {
  margin-top: 50px;
  width: 50px;
}

#social-feed .container {
  text-align: center;
  position: relative;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.fill img {
  object-fit: cover;
  height: 300px !important;
  width: 350px;
}

.descriptionbox {
  color: transparent;
  position: absolute;
  bottom: 70px;
  height: 310px;
  width: 95%;
  padding: 20px;
  margin-right: 8px;
}

.descriptionbox:hover {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

/*--------------------------------------------------------------
# Project Title Section
--------------------------------------------------------------*/

#project-name {
  background: #fff;
}

#project-name .section-title-projects {
  color: #fff;
}

#project-content {
  background: #fff;
}

#project-content img {
  width: 100%;
}

/*--------------------------------------------------------------
# Blog Post Section
--------------------------------------------------------------*/

#blog-posts {
  background: #000;
  color: #fff;
  padding-bottom: 80px;
}

#blog-posts .blog-content {
  font-weight: 100%;
  color: black;
  padding-bottom: 40px;
}

#blog-posts .pic-caption {
  text-align: center;
  padding: 10px 0px;
}

#blog-posts img {
  width: 100%;
}

#blog-posts li {
  font-weight: normal;
}

#blog-posts .twitter-tweet {
  padding-bottom: 50px;
}

/*--------------------------------------------------------------
# Running Posts Section
--------------------------------------------------------------*/

#running-posts {
  background: #000;
  color: #fff;
}

#running-posts h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#running-posts div>p {
  padding-bottom: 40px;
  margin-bottom: 0px;
}

#running-posts img {
  width: 100%;
}

#running-posts .blog-pic {
  height: 500px;
  object-fit: cover;
  overflow: hidden;

}


/*--------------------------------------------------------------
# Forms Section
--------------------------------------------------------------*/

#forms {
  background: #fff;
}

#forms h2 {
  color: #000;
}

#forms p {
  color: #000;
}

#forms a {
  color: #000;
  font-weight: bold;
}

#forms .form-links {
  color: #000;
}

#forms .row {
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# HUNCH Map Section White text
--------------------------------------------------------------*/

#hunch-map-white {
  background: #000;
}

#hunch-map-white #google-map {
  height: 600px;
}

#hunch-map-white h3 {
  padding-bottom: 20px;
}

#hunch-map-white .address-finder {
  display: flex;
  padding-bottom: 30px;
}

#hunch-map-white .address-finder>input {
  width: 110%;
  font-family: 'Roboto', sans-serif;
  font-size: 10pt;
}

/*--------------------------------------------------------------
# HUNCH Map Section Black text
--------------------------------------------------------------*/

#hunch-map-black {
  background: #fff;
}

#hunch-map-black #google-map {
  height: 600px;
}

#hunch-map-black h3 {
  padding-bottom: 20px;
}

#hunch-map-black .address-finder {
  display: flex;
  padding-bottom: 30px;
}

#hunch-map-black .address-finder>input {
  width: 110%;
  font-family: 'Roboto', sans-serif;
  font-size: 10pt;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #000;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .row {
  margin-bottom: 0px;
}

#footer .footer-content {
  text-align: center;
  justify-content: center;
  align-content: center;
  padding: 15px 0px;
}

#footer .social-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#footer .newsletter-signup {
  display: flex;
}

#footer .social-links img {
  width: 30px;
  text-align: center;
}

#footer img {
  width: 50px;
}

#footer .newsletter-signup>input {
  font-family: 'Roboto', sans-serif;
  font-size: 10pt;
}

/*--------------------------------------------------------------
# Project Nav PAGE
--------------------------------------------------------------*/

/* SEARCH BAR */

/*
.topnav {
  background-color: black;
} */

.topnav input[type=text] {
  padding: 6px;
  margin-right: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  font-size: 17px;
}

#searchnav .topnav {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  flex-direction: column;
  text-align: right;
  /* padding-right: 10px; */
}

/* PINTEREST GRID  */

body {
  font-family: Oswald, sans-serif;
  min-height: 1000px;
}

#columns {
  column-width: 320px;
  column-gap: 15px;
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
  orphans: 1 !important;
  widows: 1 !important;
}

div#columns figure {
  background: #fefefe;
  border: 2px solid #fcfcfc;
  box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
  margin: 0 2px 15px;
  padding: 15px;
  padding-bottom: 10px;
  /* transition: opacity .4s ease-in-out; */
  display: inline-block;
  column-break-inside: avoid;
}

div#columns figure img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 5px;
}

div#columns figure figcaption {
  font-family: 'Roboto', sans-serif;
  font-size: 10pt;
  color: #444;
  line-height: 1.5;
}

div#columns small {
  font-size: 1rem;
  float: right;
  text-transform: uppercase;
  color: #aaa;
}

div#columns small a {
  color: #666;
  text-decoration: none;
  transition: .4s color;
}

div#columns:hover figure:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  #columns {
    column-gap: 0px;
  }
  #columns figure {
    width: 100%;
  }
}

/* DROPDOWN MENU PROJECT NAV */

.dropdown1, .dropdown2, .dropdown3 {
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

.read-more2 {
  color: #000;
  hover: #000;
}

.read-more3 {
  color: white;
  hover: #000;
}

.simcal-event-title {
	font-family: 'Oswald', 'Open Sans', sans-serif;
  font-size: 16px;
}

.simcal-event-details p {
	font-family: 'Roboto', sans-serif;
}

.simcal-event-description p {
  font-size: 16px;
}

.simcal-nav {
  font-size: 28px;
}

.post-edit-link {
	display: none;
}

.attachment-post-thumbnail {
	display: none;
}

/* .latest-updates-black p {
	margin: 2vh 6vw;
	text-align: center;
} */

.post {
	text-align: center;
}

.post p {
	margin: 2vh 12vw;
}

.post h2 {
	margin: 3vh 2vw;
}
