body {
  font-family: Arial, sans-serif;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  justify-content: flex-end;
}

.dropdown {
  position: relative;
  display: inline-block;
  font-size: 15px;
  background: #e4e7f1;
  padding: 10px;
  cursor: pointer;
  /* z-index: 100; */
  width: 230px;
  margin: 5px;
  text-align: right;
  flex-wrap: wrap;
}

.dropdown-arrow {
  display: inline-flex;
  padding: 5px;
  width: 20px;
  height: 20px;
  background: url('/jp/assets/images/dropdown-arrow.png') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
  align-items: center;
  transform: translateY(3px);
}

span.dropdown-arrow {}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e4e7f1;
  padding: 10px;
  top: 100%;
  right: 0;
  z-index: 1000;
  font-size: 15px;
  width: 250px;
}

.dropdown-content a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 5px 0;
}

.dropdown-content.medium {
  width: 280px;
}

.dropdown-content.wide {
  width: 300px;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .menu-container {
    justify-content: center;
  }

  .dropdown {
    text-align: center;
    margin-bottom: 5px;
  }
}

img.continect-logo {
  width: 200px;
  margin: 20px;
}
