/**********menu css starts************/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}
.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s ease-in-out;
}
.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}
.navbar .menu-items {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}
.navbar ul li li {
  line-height: 25px;
  border-bottom: 1px solid #ddaa01;
}
.navbar ul li li:last-child {
  border-bottom: none;
}
.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}
.navbar ul li a {
  text-decoration: none;
  color: #fff;
}
.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 0.7;
  margin-left: 5px;
  color: #fff;
  /* font-size: 24px; */
}
.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #f7c51e;
  width: 370px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .menu-right {
  top: 0;
  left: 100%;
}
.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: -100px;
}
.navbar .menu-left {
  left: -100%;
}
.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 20px;
}
.navbar .menu-item.open {
  color: #f7c51e;
}
.navbar .dropdown .dropdown-menu .menu-item {
  font-size: 19px;
  color: #000;
}
.navbar .menu-item:hover,
.navbar a.menu-item.active {
  color: #f7c51e;
}
.navbar .dropdown .dropdown-menu .menu-item:hover {
  background-color: #000;
  color: #f7c51e;
}
.menu-item.first-item {
  padding: 1.5rem 2rem;
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
  transition: all 0.4s ease;
}
.navbar .dropdown:last-child ul.dropdown-menu.sample {
    width: 170px;
    right: 0;
}
.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}
.overlay {
  display: none;
}
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #fff;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #fff;
}
header.biz_header {
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 20px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#block-biz-site-branding img {
  width: 300px;
  height: auto;
}
header.biz_header.nav-down #block-biz-site-branding img {
  width: 300px;
}
header.biz_header.nav-up {
  top: -95px;
}
header.biz_header.nav-up {
  transform: translateY(-100%);
  opacity: 0;
}
header.biz_header.nav-down {
  transform: translateY(0);
  background: rgba(28, 64, 107, 1);
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 1;
}
header.biz_header.hidden-by-click.nav-down {
  transform: translateY(-100%);
}
.biz_header .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0px;
}
/*************menu css ends***************/

@media (min-width: 1081px) and (max-width: 1300px) {
  #block-biz-site-branding img,
  header.biz_header.nav-down #block-biz-site-branding img {
    width: 220px;
  }
  .navbar .menu-item {
    font-size: 17px;
  }
}


@media screen and (max-width: 1024px) {
  .navbar {
    padding: 10px 20px;
  }
  .navbar .dropdown:hover .dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .overflow {
    overflow: hidden;
  }
  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    height: 100vh;
  }
  .overlay--active {
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 0;
  }
  .menu-btn {
    display: flex;
  }
  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 50%;
    top: 100px;
    left: 0;
    background: #f7c51e;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
    height: 100vh;
    padding-left: 10px;
  }
  header.biz_header.nav-down ul.menu-items.open {
    top: 83px;
  }
  .navbar .menu-item {
    padding: 10px;
    color: #000;
    font-size: 18px;
  }
  .menu-items.open {
    transform: translateY(0);
  }
  .menu-items li:first-child {
    margin-top: 20px;
  }
  .navbar .dropdown .dropdown-menu li {
    margin-top: 0;
  }
  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }
  .navbar .dropdown .dropdown-menu .menu-item {
    font-size: 16px;
  }
  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }
  .menu-item.first-item {
    padding: 10px;
    color: #000;
    font-size: 18px;
  }
  .navbar .menu-item:hover {
    color: #000;
  }
  .navbar .menu-item:hover,
  .navbar a.menu-item.active {
    color: #fff;
    padding-left: 10px;
  }
  .navbar .dropdown .dropdown-menu li a.menu-item.active {
    color: #fff;
  }
  .navbar .menu-item.open {
    color: #fff;
  }
  .expand-btn:after {
    line-height: 26px;
    color: #000;
  }

  .navbar .menu-item.open.expand-btn:after {
    transform: rotate(180deg);
    color: #fff;
  }

  .navbar .menu-items li.dropdown.expanded a.menu-item.first-item {
    color: #fff;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

}

@media only screen and (max-width: 820px) {

  #block-biz-site-branding img {
    width: 200px;
  }

  header.biz_header.nav-down #block-biz-site-branding img {
    width: 180px;
  }

  nav#block-biz-main-menu {
    display: none;
  }


}



@media only screen and (max-width: 600px) {

  #block-biz-site-branding img {
    width: 180px;
  }

  .navbar .dropdown:hover .dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

.navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 83px;
    left: 0;
    background: #f7c51e;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
    height: 100vh;
    padding-left: 10px;
  }

  .menu-items.open {
    transform: translateY(0);
    padding-left: 0;
  }

  .navbar ul li {
    padding-left: 10px;
    border-bottom: 1px solid #dfb014;
  }

  .navbar .menu-item {
    padding: 10px;
    color: #000;
    font-size: 18px;
  }

  .navbar .menu-item.open {
    color: #fff;
  }

  .navbar .menu-item:hover,
  .navbar a.menu-item.active {
    color: #fff;
    padding-left: 10px;
  }

  .navbar .menu-item:hover.open {
    color: #fff;
  }

  .navbar .dropdown .dropdown-menu li a.menu-item.active {
    color: #fff;
  }

 .navbar .menu-items li.dropdown.expanded a.menu-item.first-item {
    color: #fff;
  }
 
}