.header__nav {
    position: absolute;
    top: 0;
    left: 1%;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 8px;
}
.header__logo{
  flex: 30%;
}
.header__notification{
  flex: 70%;
}
.logo__img {
    max-width: 130px;
    height: 130px;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.6);
    padding: 2px 4px 0;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 20px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}
.navigation{
  position: fixed;
  right: 0;
  background-color: #fff;
  top: 0;
  max-width: 325px;
  width: 100%;
/*  height: 100%;*/
  padding: 35px 25px;
  display: none;
  z-index: 9;
}
.showNavigation{
  display: block;
}
.menu__bar > ul {
    display: block;
}
.menutoggle__btn {
    display: block;
    border: 2px solid #fff;
    color: #fff;
    padding: 0 8px;
    position: absolute;
    right: 42px;
    top: 30px;
    border-radius: 3px;
    z-index: 9;
    font-size: 1.5rem;
    cursor: pointer;
}
.closenav__btn {
    position: absolute;
    right: 20px;
    top: 1px;
    font-size: 2rem;
    cursor: pointer;
    display: block;
}

.navigation .menu__bar > ul{
  font-family: Garet;
  list-style: none;
  padding: 0;
}
.navigation .menu__bar > ul > li{
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 1.4rem;
  color: #000;
  position: relative;
  font-variant: small-caps;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.navigation .menu__bar > ul > li.mbllnk{
  display: none;
}
.navigation .menu__bar > ul > li:last-child{
  margin-bottom: 0;
}
.dropdown-menu {
  list-style: none;
  padding: 0;
  padding-top: 10px;
  padding-left: 0;
  display: none;
  position: relative;
  top: 112%;
  right: 0;
  border-radius: 3px;
  z-index: 3;
}
.showDropdown{
  display: block;
}
.dropdown-menu>li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    background-color: #e3e3e3;
    padding: 8px;
    line-height: 1.2;
    font-variant: normal;
}
.navigation ul li a{
  transition: .3s all ease;
}
.navigation ul li a:hover{
  color: #e74cf3;
}