header.wp-block-template-part > .wp-block-columns {
  flex-wrap: nowrap!important;
  flex-direction: row!important;
}
header.wp-block-template-part > .wp-block-columns > .wp-block-column {
  flex-basis: 50%!important;
}
header.wp-block-template-part > .wp-block-columns > .wp-block-column:last-child {
  align-self: center;
}
.nav-outer-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  transition: all 0.5s ease;
  position: relative;
}
.wp-block-nav-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .wp-block-nav-content {
    position: absolute;
    top: 100%;
    right: -100vw;
    min-height: calc(100vh - 78px);
    background-color: var(--wp--preset--color--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
    margin: 50px 0 0 0;
  }
  .wp-block-nav-content.open {
    right: 0;
    background-color: var(--wp--preset--color--blue);
    width: calc(100vw - 5rem);
  }
  .wp-block-nav-content.open a, .wp-block-nav-content.open li .sub-menu a {
    color: var(--wp--preset--color--white);
  }
  .wp-block-nav-content.open .sub-menu {
    display: flex;
  }
  .wp-block-nav-content.open a:hover, .wp-block-nav-content.open li .sub-menu a:hover {
    color: var(--wp--preset--color--navy);;
  }
}
.main-nav {
  display: flex;
  justify-content: end;
  flex-grow: 1;
  gap: 2rem;
  list-style: none;
}
.sub-menu {
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .main-nav {
    flex-direction: column;
    flex-grow: 0;
    margin: 0!important;
    padding: 0;
    max-width: calc(100vw - 7rem);
  }
}
.wp-block-nav-content li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.5s ease;
  color: var(--wp--preset--color--white);
  text-decoration: none;
  font-size: var(--wp--preset--font-size--large)
}
.wp-block-nav-content li .sub-menu a {
  color: var(--wp--preset--color--black);
}
.wp-block-nav-content li a:hover {
  color: var(--wp--preset--color--blue);
}
.wp-block-nav-content li .arrow {
  transition: 0.3s ease;
}
.wp-block-nav-content li .arrow.up {
  transform: rotate(180deg);
}
.menu-item-has-children {
  display: inline-block;
  position: relative;
}
.sub-menu {
  display: none;
  position: absolute;
  margin-top: 1rem!important;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--wp--preset--color--white);
  right: 0;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  z-index: 999;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .sub-menu {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
    max-width: calc(100vw - 9rem);
    margin-left: 0;
  }
  .wp-block-nav-content li a {
    font-size: var(--wp--preset--font-size--normal)
  }  
}
.menu-item-has-children.active > .open {
  display: flex;
}
.sub-menu.features {
  right: 0;
}
.sub-menu.company {
  left: 0;
  width: max-content;
}
.nav-outer-wrapper .menu {
  display: none;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .nav-outer-wrapper .menu {
    display: block;
  }
}
.nav-outer-wrapper .menu span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--wp--preset--color--white);
  margin-bottom: 7px;
  border-radius: 0px;
  transition: all 275ms ease;
}
.nav-outer-wrapper .menu.active {
  transform: rotate(-45deg);
}
.nav-outer-wrapper .menu.active .bar1 {
  transform: rotate(0deg) translateY(6px);
}
.nav-outer-wrapper .menu.active .bar2 {
  opacity: 0;
}
.nav-outer-wrapper .menu.active .bar3 {
  transform: rotate(-90deg) translateX(12px);
}