.logo-frame{
  position: relative;
  display: flex;
  height: 60px;
  margin-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}


.logo{
  position: absolute;
  display: flex;
  height: 60px;
}

.navbar{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: white;
  position: fixed;
  width: 100%;
  box-shadow: 3px 3px 3px #777777;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 30;
}

.navbar-links ul{
  margin: 0%;
  padding: 0%;
  display: flex;
  color: #777777;
  font-weight: 500;
}

.navbar-links li{
  list-style: none;
  color: #777777;
}

.navbar-links li a{
  font-size: 18px;
  text-decoration: none;
  padding: 1rem;
  display: block;
  color: #777777;
  transition: ease-in-out 0.5s;
}

.navbar-links li a:hover{
  background-color: #173c51 ;
  color: white;
}

.toggle-button{
  position: absolute;
  top: 45px;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.bar{
  height: 3px;
  width: 100%;
  background-color: #777777;
  border-radius: 10px;

}

.sub-menu{
  display: none;
  color: white;
  justify-content: center;
  align-items: center;
}

.services-btn:hover .sub-menu{
  position: absolute;
  display: block;
}

.services-btn:hover .sub-menu ul{
  display: block;
}

.services-btn:hover .sub-menu ul li{
  display: block;
}

@media (max-width:1000px) {
  .navbar{
    justify-content: space-between;
  }
}

@media (max-width:620px) {
  .toggle-button{
    display: flex;
  }

  .navbar-links{
    display: none;
    width: 100%;
  }

  .navbar{
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links ul{
    flex-direction: column;
    width: 100%;
  }

  .navbar-links li{
    text-align: center;
  }

  .navbar-links li a{
    padding: .5rem 1rem;
  }

  .navbar-links.active{
    display: flex;
}
  .services-btn{
    position: relative;
  }
}