
/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover;
    height: 36vh;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 36vh;
    padding: 40px;
}
.hero-overlay h1
{
    margin-top: 40px;
}
/* Filter */
.nav-pills
{
    width: 100%;

}
.nav-pills li
{
    width: 100px;
    text-align: center;
    display: inline-block;
}
.nav-pills li a
{
    margin: ;
    padding: 20px 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: var(--gold);
    background: rgba(255,255,255,0.6);
     border:1px solid rgba(0,0,0,0.3);
}

.nav-pills .active 
{   
   
}

/* Cards */
.project-card {
    transition: 0.3s;
}
.project-card img
{
    height: 25vh;
}
.project-card h5
{
    margin:5px 0px 20px 10px;
}
.btn-cio
{
    font-weight: bold;
    color: var(--primary);
}
.project-card:hover {
    transform: scale(1.03);
}

/* Map */
.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 20px;
}
@media(max-width: 767px)
{
    #menu
    {

        height:1200px;
        position: fixed;
        z-index: 999999;
        background: #0d2c4a;
       padding: 20px 1px;
        margin: 1100px 0px 0px -20px;
    }
}