﻿.nav{
    width: 100%;
    border-bottom: none;
    border-top: 1px solid var(--primaryBlue);
}

.nav .nav-item{
    text-align: center;
}

.nav .nav-link{
    color: black;
    text-align: center;
    border: none;
}

.nav .nav-link.active{
    font-family: "Poppins Bold", Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    background-color: transparent;

}

.portfolio-image{
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: left;
}

.branding-image{
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-title{
    color: black;
    text-transform:uppercase;
}

#development [class*="col-"]{
    transition: ease 0.5s;
}


#development [class*="col-"]:hover{
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.16);
}

.research-box{
    color: black;
    transition: ease 0.3s;
}

.research-box:hover{
    background-color: white;
}

@media (min-width:1000px){
    .nav .nav-link.active::before{
        content: "";
        display: block;
        width: 150px;
        height: 5px;
        background: var(--primaryBlue);
        position: relative;
        top: -10px;
        left: 30%;
    }   
}

/* Portfolio View Styles */

.mockup-image{
    height: 30rem;
    width: auto;
}

@media (max-width:767px){
    .mockup-image{
        height: 10rem;
    }
}


.system-name{
    text-transform: uppercase;
}

.features-description{
    text-align: justify;
}

.features-ul{
    list-style-type: none;
    padding-left: 0;
}

.features-title{
    font-family: "Poppins Bold", Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-demo{
    font-family: "Poppins Bold", Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 50%;
    background: transparent;
    border: 2px solid var(--primaryBlue);
    color: var(--primaryBlue);
}



