/** Header Section **/
.header-container {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.service-one-logo {
    width: 130px;
}
.void-logo {
    width: 145px;
}
.navbar {
    /* padding: 15px; */
    position: sticky;
    background-color: var(--text-color-light);
}
.nav-container {
    width: 100%;
    height: 44px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}
/* @media (max-width: 767px) {
    .nav-container {
      padding: 0 !important;
    }
} */
.logo-container {
    display: flex;
}
.nav-menu {
    list-style: none;
    margin: 0 2rem 0 0;
}
/* Add gap only for desktop */
@media only screen and (min-width: 992px) {
    .nav-menu {
        gap: 2rem;
    }
    .navbar-collapse {
        justify-content: end;
    }
}
.nav-menu .nav-link {
    text-decoration: none;
    color: var(--primary-text-color);
}
.contact-btn {
    height: 44px;
    width: 150px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--primary-text-color);
    background: transparent;
    border: 1px solid var(--primary-text-color);
    border-radius: 5px;
    cursor: pointer;
}