.header {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  padding: 20px 0px;
  z-index: 9999;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  align-items: center;
  height: auto;
}

.header-container {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-topright {
  width: auto;
  height: 35px;
  position: absolute;
  display: flex;
  padding: 0px 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  right: 0;
  top: 0;
  background-color: #fbeee5;
}

.header-topright a {
  text-decoration: none;
  color: rgb(27, 26, 26);
  margin-left: 30px;
  font-weight: 700;
  transition: color 0.3s;
  font-size: 13px;
}

.header-topright i {
  margin-right: 5px;
  color: #5b98ba;
}

.header-topright a:hover {
  color: #3d7898;
}

.header-left {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.header-left img {
  width: 150px;
  height: auto;
}

.header-right {
  width: calc(100% - 300px);
  height: fit-content;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.header-right ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.header-right li {
  margin: 0 15px;
}

.header-right a {
  color: black;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 15px;
  display: block;
  transition: color 0.3s;
}

.header-right i {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
}

.header-right a:hover {
  color: #3d7898;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  padding: 20px 0px 0px 0px;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0px 0px 10px 10px;
  z-index: 9998;
}

.dropdown-menu a {
  color: rgb(27, 26, 26);
  margin: 0px 0px;
  padding: 20px;
  display: block;
  text-decoration: none;
  transition: none;
}

.dropdown-menu a:last-child {
  border-radius: 0px 0px 8px 8px;
}

.dropdown-menu a:hover {
  color: #ffffff;
  background-color: #3d7898;
}

.dropdown-active .dropdown-menu {
  display: block;
}

.mobilemenu {
  display: none !important;
}

.mobilemenucontent {
  display: none;
}

@media (max-width: 1320px) {
  .header {
    padding: 20px 0px;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-topright {
    display: none;
  }

  .header-left img {
    width: 100px;
  }

  .header-left {
    width: 120px;
  }

  .header-right ul {
    display: none;
  }

  .mobilemenu {
    display: flex !important;
    padding: 0px;
    margin: 0px;
  }

  .mobilemenu i {
    padding: 0px;
    cursor: pointer;
    color: #3d7898;
    font-size: 32px;
    margin: 0px;
  }

  .mobilemenucontent {
    position: fixed;
    top: 0;
    display: block;
    right: -85%;
    width: 85%;
    height: 100%;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9998;
  }

  .mobilemenucontent.active {
    right: 0;
  }

  .mobilemenucontent p {
    font-weight: bold;
    padding: 10px 10px;
    text-align: center;
    background-color: #3d7898f9;
    font-size: 20px;
    padding: 10px 0px;
    color: #ffffff;
    margin: 0px 0px 0px 0px;
  }

  .mobilemenucontent a {
    display: block;
    font-size: 16px;
    background-color: #fffffff6;
    text-align: center;
    color: black;
    padding: 20px 5px;
    text-decoration: none;
  }

  .mobilemenucontent a:hover {
    background-color: #3d7898;
    color: #ffffff;
  }
}
