/** GLOBALES **/
body, html {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
}
.page-section {
    padding: 5rem 0;
}
.bg-fb {
    color: #3B5998;
  }
.bg-instagram {
    color: #C13584;
}
.bg-linkedin {
    color: #4875B4
}
.grow {
    transition: all .2s ease-in-out;
}
.grow:hover {
    transform: scale(1.5);
}
.bg-gray {
    background-color: #e9ecef!important;
}

/** NAVBAR SECTION **/
#mainNav {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #fff;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}
#mainNav .navbar-nav .nav-item .nav-link {
    color: #6c757d;
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 0;
}
#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link:active {
    color: #b36739;
}
#mainNav .navbar-nav .nav-item .nav-link.active {
    color: #b36739!important;
}
@media (min-width: 992px) {
    #mainNav {
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
    }
    #mainNav .navbar-brand:hover {
        color: #fff;
    }
    #mainNav .navbar-nav .nav-item .nav-link {
        color: #fff;
        padding: 0 1rem;
    }
    #mainNav .navbar-nav .nav-item .nav-link:hover {
        color: #fff;
        text-decoration: underline;
    }
    #mainNav .navbar-nav .nav-item:last-child .nav-link {
        padding-right: 0;
    }
    #mainNav.navbar-scrolled {
        -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        background-color: #fff;
    }
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
        color: #212529;
    }
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
        color: #b36739;
        text-decoration: none;
    }
}
.navbar-brand {
    width: 90px;
}

/** HEADER SECTION **/
header.masthead {
    padding-top: 10rem;
    padding-bottom: calc(10rem - 50px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../img/hero1.jpg");
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../img/hero1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}
.logo-header {
    right: 15%;
    bottom: 20%;
}
@media (min-width: 992px) {
    header.masthead {
        height: 100vh;
        min-height: 40rem;
        padding-top: 72px;
        padding-bottom: 0;
    }
}
header.masthead h1 {
    font-size: 2.25rem;
}
@media (min-width: 1200px) {
    header.masthead h1 {
        font-size: 3.5rem;
    }
}
@media (min-width: 992px) {
    header.masthead h1 {
        font-size: 3rem;
    }
}

/** NOSOTROS SECTION **/
.featurette-heading {
    font-size: 40px;
    margin-top: 2rem;
    line-height: 1;
    letter-spacing: -.05rem;
}
.featurette-divider {
    margin: 5rem 0;
}

/** PROYECTOS SECTION **/
.proyectos {
    margin-bottom: -30px;
} 
.proyectos .proyectos-item {
    max-width: 25rem;
    margin-bottom: 10px;
    border-radius: 0.5rem;
}
.proyectos .proyectos-item p.title {
    margin: 0;
}
.proyectos .proyectos-item img {
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
}
@media (min-width: 1200px) {
    .proyectos .proyectos-item img {
        min-height: 300px;
        max-height: 300px;
    }
}
.proyectos .proyectos-item .proyectos-item-caption {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    background-color: rgba(26, 188, 156, 0.9);
}
.proyectos .proyectos-item .proyectos-item-caption:hover {
    opacity: 1;
}
.proyectos .proyectos-item .proyectos-item-caption .proyectos-item-caption-content {
    font-size: 1.5rem;
}

/** CONTACTO SECTION **/ 
.header-contacto {
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-top: -5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url("../img/banner1.png");
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../img/banner1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}
