
*{
  scroll-behavior: smooth;
}

/* =========== Skip Links  =========== */


.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
  background: #eee;
  padding: 1em;
}

/* =========== Menu Mobile 768px =========== */

ul.wp-block-navigation__submenu-container {
  background: var(--wp--preset--color--base)!important;
  pad: 16px;

}

@media (min-width: 769px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
  
  .wp-block-navigation__responsive-container:not(.has-modal-open):not(.is-menu-open) {
    display: block;
  }

}

@media (max-width: 769px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
  
  .wp-block-navigation__responsive-container:not(.has-modal-open):not(.is-menu-open):not(.hidden-by-default) {
    display: none;
  }
  .wp-block-navigation__responsive-container{
    opacity: 0.8;
  }

}
/* =========== Menu Links =========== */
.menu-wrapper{
a {
  background-image: linear-gradient(
    to left,
    var(--wp--preset--color--contrast),
    var(--wp--preset--color--contrast) 50%,
    var(--wp--preset--color--accent-1) 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

a:before{
  content: '';
  background:var(--wp--preset--color--accent-1);
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

a:hover {
 background-position: 0;
 cursor: pointer;
}

a:hover::before{
  width: 100%;
}
}