.company-logo{
    height: 70px; /* Adjust the height as needed */
    margin-right: 5px;
    vertical-align: middle;
}


.navbar{
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #f4f4f4;
    margin-right: 100px;
    margin-left: 100px;

}

.navbar ul{
    overflow: auto;
}


.navbar li{
    float: left;
    list-style: none;
    margin: 3px 3px;
    
    
}

.navbar li a{
    padding: 5px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Libre Franklin",sans-serif ;
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
    color: #f4f4f4;


}

.navbar li a.active {
    background-color: #00bdff;
    border-radius: 2%;
}


h3{
    color: #00bdff;
    text-transform: uppercase;
    font-size: calc(16px + 2vw);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    display: inline-block; /* Make the heading display as an inline element */
    vertical-align: middle; /* Align the heading vertically */
    margin: 0; /* Remove any default margin */
    
}

.companyName a{
    text-decoration: none;
    color: #00bdff;
}

@media(max-width: 990px){
    .navbar li a.active{
        background-color: #00bdff;
    border-radius: 2%;
        width: 125px;
    }
}


  