
body, html {
    height: 100%;
}

/* NAV BAR */

.navbar {
  transition: all 0.4s;
}

.navbar .nav-link {
  color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: rgb(202, 202, 202);
  text-decoration: none;
}

.navbar .navbar-brand {
  color: #fff;
}


/* Change navbar styling on scroll */
.navbar.active {
  background: #fff;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
  color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
  color: #555;
  text-decoration: none;
}

.navbar.active .navbar-brand {
  color: #555;
}
/* /NAV BAR */

/* BANNER */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/herreria-main-banner.jpg");
    height: 55%;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  /* Place text in the middle of the image */
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }

  #mensaje p{
    font-style: italic;
  font-size: large;
}

/* /BANNER */


/**
* Servicios
**/

.services-content{
  margin-top: 15px;
}
.services-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.services-content p {
  font-family: 'Droid Serif', serif;
  font-size: 16px;
  font-style: italic;
  color: #b9b9b9;
  /* margin-bottom: 25px; */
}

.services-content li{
  font-family: 'Droid Serif', serif;
  font-size: 16px;
  font-style: italic;
  color: #777;

}

.services-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-top: 24px;
  text-align: center;
  
}

.services-content p {
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  color: #777;
  text-align: center;
}

#more {
  display: none;
}


/* Gallery */
#gallery{
  background-color: rgb(255, 255, 255);
}
.gallery h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
}



/* Style the footer */
/* Style the footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Style social media icons */
.social-icons a {

  text-decoration: none;

}

/* Style address */
.address {
  margin: 10px 0;
  color: #aaa;
}

/* Style contact form */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 10px;
  background-color: #222;
  border-radius: 5px;
  color: #fff;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #444;
  color: #fff;
}

.contact-form button {
  background-color: #37a000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background-color: #2a8000;
}



/** MOBILE **/
  @media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }

    
}

