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

body {
   font-family: 'raleway', sans-serif;
}

h1{
    color: #292d4b;
    font-weight: 400;
    text-align: center;
    padding: 20px 0;
    font-size: 40px;
    
}
.h1{
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 20px 0;
    font-size: 40px;
    
}

.top-nav-collapse {
  background-color: #9da3a5; }

/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
  .navbar {
    background-color: #9da3a5; } }

/* Footer color for sake of consistency with Navbar */
.page-footer {
  background-color: #9da3a5; }

.text-uppercase{
	color: #292d4b;
}
.fas, .fas fa-check-circle, .h6 {
	color: #ff0000 !important;
}

.linea{
    background: #ff0000;
    height: 5px;
    width: 100%;
    display: block;
        
}

.galeria, .galeria1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    width: 100%;
    margin: auto;
    grid-gap: 10px;
    padding: 40px 0;
    overflow: hidden;
}

.galeria a,.galeria1 a {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0,0,0,1.5);
    transition: .8s all;
}

.galeria1 img {
    align-content: center;
    width: 100%;
    vertical-align: top;
    height: 300px;
    object-fit: cover;
}

.galeria img {
    align-content: center;
    width: 100%;
    vertical-align: top;
    height: 180px;
    object-fit: cover;
}



.light-box{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0, .9);
    transition: transform .3s ease-in-out;
    width: 100%;
    height: 100vh;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}

.light-box img{
  
    width: 250px;
    max-height: 250px;
}

.light-box:target{
    transform:scale(1);
}

.light-box p{
  
    color: #fff;
    align-content: flex-start;
    margin-left: 25px;
    margin-right: 25px;
}

.light-box h5{
  
    color: #fff;
    align-content: flex-start;
    margin-left: 25px;
    margin-right: 25px;
}

.close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.next{
    display: block;
    background: transparent;
    margin-right: 25px;
    margin-left: 25px;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}

