
.navbar_new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    height: 60px;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    padding: 16px;
    font-family: "Source Serif Pro", Georgia, Times, serif;
    color: rgb(38 43 58);
    font-size: 18px;
    text-decoration: none;
}
.menu a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    color: #0c1abf;
}

.menu .active_nav {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #0c1abf;
}

.logo {
    margin: 0 20px; /* Add space around the logo */
}

.logo img {
    height: 55px; /* Adjust height as needed */
}
.new_footer {
  width: 100%;
  height: 60px;
  line-height: 73px;
  background-color: #f5f5f5;
  text-align: center;
}

.new_footer a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0c1abf;
}
.links a:hover {
  color: #0c1abf !important;
}


.new_footer a {
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(38 43 58);
  font-size: 15px;
  margin-right: 30px;
}
.new_footer ul {
  display: -webkit-inline-box;
  height: 60px;
  list-style: none;
}

@media screen and (max-width: 1440) {

  .menu a {
    padding: 10px;
  }
}