/* Main Navigation Start */

.nav {
  display: flex;
  justify-content: center;
}

#site-navigation ul a {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #38266d;
  text-transform: capitalize;
}

#site-navigation ul li {
  list-style: none;
}

#site-navigation ul .current_page_item a {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline;
  color: #38266d;
}

#site-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
}
#openmenu,
#closemenu,
#menu-area,
#close {
  display: none;
}
#menu,
#close {
  fill: rgb(0, 0, 0);
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2em;
  gap: 400px;
  position: relative;
}

.logo-header img {
  max-width: none;
}
.page li a {
  font-weight: bold;
  color: aquamarine;
}

.menu-item-45 {
  box-sizing: border-box;
  align-items: center;
  padding: 8px 26px;
  border: 2px solid #8056f6;
  border-radius: 34px;
}
.nav ul .menu-item-45 a{
  color:  #8056F6 !important;
  text-align: center !important;
  font-family: Rubik !important;;
  font-size: 16px !important;;
  font-style: normal !important;;
  font-weight: 400 !important;;
  line-height: 24px !important;; /* 150% */
}

/* Responsive Navigation */

@media (max-width: 998px) {
  .navbar {
    padding: 15px;
    align-items: center;
    justify-content: center;
    gap: 175px;
  }

  .nav {
    display: block;
  }

  #site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #8056f6;
    height: calc(100vh - 100%);
    flex-direction: column;
    justify-content: center;
    z-index: 1;
  }

  #site-navigation ul {
    flex-direction: column;
    padding-top: 3rem;
    gap: 48px;
  }

  #site-navigation ul .current_page_item a {
    color: #ffffff;
    font-size: 30px;
  }

  #site-navigation ul a {
    font-size: 30px;
    color: rgb(252, 252, 252);
  }

  #menu-area {
    display: block;
  }

  .logo-header img {
    width: 135px;
  }
}
body.open-menu{
	overflow: hidden;
}
@media (min-width: 1600px) {
  .navbar {
    gap: 666px;
    justify-content: center;
  }
}

/* Main Navigation End */
