.ohm-logo{
    color: #ff6000;
    font-size: 56px;
    font-weight: 700;
}
.hm-logo{
    color: #0e0e0e;
    font-size: 32px;
    font-weight: 600;
}
.solutions-logo{
    letter-spacing: 3px;
    font-size: 14px;
}
.navbar-brand{
    line-height: 1.2;
}
.navbar-nav{
    flex-direction: row;
    gap: 30px;
    font-size: 20px;
    align-items: center;
    font-weight: bold;
}
.footer{
    background-color: #000;
    color: #fff;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.copyright{
    background-color: #ff6000;
    color: #fff;
    width: 100%;
}
.brand-color{
    color: #ff6000;
}
.services{
    margin: 5rem 10%;
}
.service-block{
    background-color: #f9f8f7;
    text-align: center;
    padding: 20px;
    width: 100%;
    img {
        width: 80px;
        height: 80px;
        border-radius: 30%;
        margin-bottom: 10px;
    }
}
.name{
    color: #ff6000;
    font-size: 20px;
    FONT-WEIGHT: 700;
}
.gallery{
    margin: 3rem;
    display: flex;
}
.col-flex{
    flex-direction: row;
}
.whatwedo{
    background-color: #fffaf8;
    margin: 5% 10%;
    li {
        padding: 10px;
    }
}
.clients{
    margin: 5% 10%;
    text-align: center;
}
.logos{
    flex-wrap: wrap;
    /* width: 100%; */
    justify-content: center;
    img{
        margin: 2%;
        width: 200px;
        height: 200px;
    }
}
@media screen and (max-width:767px) {
    .col-flex{
        flex-direction: column;
    }
    .navbar-nav{
        flex-direction: column;
        gap: 0;
        font-size: 14px;
    }
    .gallery{
        grid-template-columns: auto !important;
    }
    .logos{
        display: grid !important;
        grid-template-columns: auto auto auto;
        img{
            width: 100px;
            height: 100px;
        }
    }
    .contact-us{
        flex-direction: column;
        margin-bottom: 40px;
    }
}