.topbar {
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  position: fixed;
  font-family: "Josefin Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
}
.topbar.scrolled {
  background-color: rgb(16 100 158 / 73%);
  height: 70px;
}
.topbar .wrapper {
  display: flex;
  width: 100%;
  max-width: 1366px;
}
.topbar .right .mobil-right{
  display: none; 
  position: relative;
  width: 30px;
}
.topbar .right .mobil-right .wrapper{
  display: flex;
  flex-direction: column;
}
.topbar .right .mobil-right ul{
  display: flex;
  flex-direction: column;
}
.topbar .right .mobil-right ul li{
  padding-bottom: 20px;
}
.topbar .right .mobil-right button {
  all: unset;
  cursor: pointer;
}
.b_communication .topbar .right a{
  color: black;
}
.topbar .right a {
  opacity: 0.7;
  font-size: 20px;
  transition: all 0.3s;
  color: white;
  font-weight: 500;
}
.topbar .right a:hover {
  opacity: 1;
}
.topbar .right ul li {
  transition: all 0.3s;
}
.topbar .right ul li:hover {
  transform: scale(1.2);
}
.topbar .right {
  flex: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topbar .right ul {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.topbar .right ul li {
  position: relative;
}
.topbar .right a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 0%;
  height: 3px;
  transition: all 0.3s;
}
.topbar .right a:hover::after {
  width: 100%;
  background-color: rgb(0, 140, 255);
  border-radius: 3px;
  display: block;
}

.topbar .left {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
