/* resetting browser stuff */
* {
  box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
  color: black; }

/* styling our overall page */
body {
  background: black;
  font-family: Arial, Helvetica, sans-serif; }

/* styling our header */
header {
  background: #222;
  color: #FFF;
  padding: 20px 30px; }

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000; }

h3 {
  color: black; }

.createProjectInput {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.color {
  color: black; }

/* logo */
#logo {
  display: inline-block;
  color: #FFF;
  text-decoration: none;
  width: 49%; }

#logo img {
  width: 50px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle; }

#logo span {
  display: inline-block; }

/* main navigation */
nav {
  width: 50%;
  display: inline-block;
  text-align: right; }

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

nav ul li {
  display: inline-block; }

nav ul li a {
  color: #FFF;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  transition: 0.3s ease all; }

nav ul li a:hover {
  background: #444; }

/* styling our footer */
footer {
  background: #222;
  color: #777;
  padding: 40px;
  text-align: center; }

footer img {
  display: block;
  border-radius: 5px;
  width: 80px;
  margin: 0 auto 10px; }

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

.projectHeader {
  text-align: left; }

/* styling our main content */
.hero {
  min-height: 800px;
  text-align: center;
  background-image: url("/images/CF-005.png");
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/images/CF-005.png");
  background-size: cover; }

.hero-content {
  color: #FFF;
  padding-top: 130px; }

.hero-content h1 {
  font-size: 100px;
  margin: 0; }

.hero-content p {
  font-size: 50px; }

.hero-content a {
  display: inline-block;
  color: #FFF;
  border: 3px solid #FFF;
  border-radius: 3px;
  padding: 15px 30px;
  margin-right: 20px;
  text-decoration: none;
  font-size: 28px; }

.padding {
  padding: 15px 50px;
  margin-right: 20px; }

/* basic site sections */
.site-section {
  padding-bottom: 50px;
  padding-top: 50px; }

.site-section-secondary {
  background: #EFEFEF; }

.site-section-third {
  background: #D3D3D3; }

.site-section-inside {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 30px; }

.section-header h2 {
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  color: #777; }

/* feature boxes */
.feature-box {
  display: inline-block;
  width: 70%;
  padding: 20px 30px; }

.feature-box img {
  margin-bottom: 12px;
  width: 80px; }

.feature-box h5 {
  font-size: 20px;
  color: #999;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0; }

/* testimonial boxes */
.testimonial-box {
  display: inline-block;
  width: 33%;
  padding: 20px 30px; }

.testimonial-content {
  background: #FFF;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px; }

.testimonial-author img {
  float: left;
  width: 80px;
  border-radius: 50%;
  margin-right: 15px;
  vertical-align: middle; }

.testimonial-author h5 {
  font-size: 18px;
  margin: 0;
  padding-top: 15px; }

.testimonial-author span {
  font-size: 14px; }

.button {
  float: left;
  width: 33.33%;
  /* three containers (use 25% for four, and 50% for two, etc) */
  padding: 5px;
  /* if you want space between the images */
  display: block;
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
  cursor: pointer; }

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50; }

.button1:hover {
  background-color: #4CAF50;
  color: white; }

.button2 {
  background-color: white;
  color: black;
  border: 2px solid #008CBA; }

.button2:hover {
  background-color: #008CBA;
  color: white; }

.button3 {
  background-color: white;
  color: black;
  border: 2px solid #f44336;
  margin: 2px 2px;
  padding: 5px 5px;
  width: 5%;
  height: 40%;
  font-size: 14px; }

.button3:hover {
  background-color: #f44336;
  color: white; }

.button4 {
  background-color: white;
  color: black;
  border: 2px solid #e7e7e7; }

.button4:hover {
  background-color: #e7e7e7; }

.button5 {
  background-color: white;
  color: black;
  border: 2px solid #555555; }

.button5:hover {
  background-color: #555555;
  color: white; }

.buttonAddProject {
  background-color: white;
  color: black;
  height: 10%;
  width: 30%;
  border: 2px solid #555555;
  margin: 0px;
  padding: 5px;
  /* if you want space between the images */ }

.buttonAddProject:hover {
  background-color: #555555;
  color: white; }

.neume-delete-input {
  border: 0;
  border-bottom: 1px solid grey;
  transition: all 0.2s ease-in-out; }
  .neume-delete-input:focus {
    outline: none;
    border-bottom: 1px solid red; }

.finalize-delete-button {
  background-color: transparent;
  border: 1px solid grey;
  margin-left: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  color: grey;
  text-decoration: none; }
  .finalize-delete-button.active {
    background-color: red;
    color: white;
    cursor: pointer; }
