/*
Theme Name: kistapiskaw
Theme URI: http://localhost:8888/tier1
Author: Eve Jackson
Author URI: http://redfeatherdesign.com
Description: Custom theme for Kistapiskaw
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, custom-menu, featured-images
Text Domain: abd
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others. Testing a change
*/
/** CSS RESET **/
body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Transitions */
body {
  background: #1e1e1e;
}

#wrap {
  background: #fff;
}

/* Widths */
.alignfull {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  margin: 0 calc(50% - 683px);
  max-width: 1366px;
  width: 100vw;
  padding: 32px;
}

.alignnormal {
  margin: 0 calc(25% - 25vw);
  max-width: 1366px;
  width: 1366px;
}

/* Alignments */
.aligncenter {
  text-align: center;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

figure.alignleft {
  display: block;
}

figure.alignleft {
  float: left;
}

figure.alignright {
  float: right;
}

/* Image */
img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

/* Backgrounds */
.has-white-background-color {
  background: #fff;
}

.has-black-background-color {
  background: #1e1e1e;
}

.has-base-light-background-color {
  background: #d5cfbf;
}

.has-base-background-color {
  background: #988e82;
}

.has-base-dark-background-color {
  background: #736a5b;
}

.has-accent-one-background-color {
  background: #fbb034;
}

.has-accent-two-background-color {
  background: #c15704;
}

.has-white-border-color {
  border: 1px solid #fff;
}

.has-base-light-border-color {
  border: 1px solid #d5cfbf;
}

.has-black-border-color {
  border: 1px solid #1e1e1e;
}

.has-base-border-color {
  border: 1px solid #988e82;
}

.has-base-dark-border-color {
  border: 1px solid #736a5b;
}

/* Header */
.wrapper {
  width: 100%;
  height: 100%;
}

#header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  height: auto;
}

#header {
  padding: 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  height: 100px;
}

#menu-wrap {
  height: 100px;
  flex: 0 0 75%;
}

#logo,
.logo-wrap {
  flex: 0 0 25%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

#logo img {
  max-height: 80px;
  width: auto;
}

/* Banner */
#banner {
  position: relative;
  width: 100%;
  height: 400px;
  height: 100vw;
  background: #39341f;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grayscale {
  -webkit-animation: grayscale 3s ease-out both;
  animation: grayscale 3s ease-out both;
}

@keyframes grayscale {
  0% {
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(0%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  }
  50% {
    -webkit-filter: grayscale(50%);
  }
  100% {
    -webkit-filter: grayscale(100%);
  }
}
@-webkit-keyframes grayscale {
  0% {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  }
  100% {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
  }
}
.fade-out {
  -webkit-animation: fade-out 1s ease-out both;
  animation: fade-out 1s ease-out both;
}

/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.grayscale-fadeout {
  -webkit-animation: grayscale-fadeout 2s ease-out both;
  animation: grayscale-fadeout 2s ease-out both;
}

/**
 * ----------------------------------------
 * animation grayscale-fadeout
 * ----------------------------------------
 */
@-webkit-keyframes grayscale-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
    filter: grayscale(100%);
  }
}
@keyframes grayscale-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
    filter: grayscale(100%);
  }
}
/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.scale-in-center {
  -webkit-animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 2.5s;
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 3.5s;
}

/*NOTE: add .banner__inner*/
#banner .animation {
  max-width: 800px;
  margin-top: 120px;
  background: transparent;
  z-index: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  justify-self: center;
  align-self: start;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  height: 0;
  min-height: calc(100% - 120px) !important;
}

#banner .banner-logo {
  height: 50%;
  height: 100%;
  height: 80%;
}

#banner .banner-logo img {
  width: auto;
  object-fit: cover;
}

#banner .banner-text {
  color: #fab334;
  font-size: 3.2em;
}

body.home #banner {
  height: 100vh;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

#banner .banner-img {
  position: relative;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  overflow: hidden;
  z-index: 1;
}

#banner .banner-tagline {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  padding: 32px;
  color: #c13a2b;
  z-index: 2;
  align-self: end;
  background: rgba(115, 106, 91, 0.4);
  max-width: 683px;
}

body.home #banner .banner-img img {
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
}

/* Content */
.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.content {
  padding: 32px 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.content img {
  display: block;
}

/* Widgets */
.widget-area {
  padding: 0;
}

/* Footer */
.footer-wrap {
  background: #302716;
  color: #fff;
  width: 100%;
  margin: 0 auto;
}

.footer {
  max-width: 1302px;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 32px;
}

.footer-widget {
  padding: 0;
}

.copyright {
  width: calc(100% - 64px);
  max-width: 1366px;
  margin: 0 auto;
  padding: 32px;
  color: #fff;
}

/* WordPress - NOTE: some of this has to go into an earlier stylesheet as a reset */
.wp-block-buttons.alignfull {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.wp-block-buttons {
  margin: 16px 0;
}

.wp-block-button,
.wp-block-buttons .wp-block-button {
  border-radius: 4px !important;
  font-size: 0.9em;
}

.wp-block-button .wp-block-button__link,
.wp-block-buttons .wp-block-button__link {
  border-radius: 4px !important;
  background: #1e1e1e;
  color: #fff;
  color: #fbb034;
  text-transform: uppercase;
  transition: transform 0.5s;
  margin: 16px 0 0;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button__link:hover {
  background: #736a5b !important;
  color: #fbb034;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.wp-block-cover {
  background-size: contain;
  margin: 0 calc(50% - 50vw) 0;
  max-width: 100vw;
  width: 100vw !important;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  align-items: center;
}

.wp-block-cover .wp-block-cover__inner-container {
  background: rgba(225, 224, 220, 0.4);
  width: 50%;
  max-width: 683px;
  max-width: 619px;
  padding: 32px;
  grid-column: 1fr;
  grid-row: 1fr;
  color: #736a5b;
}

.wp-block-columns {
  gap: 32px;
  padding: 0;
}

.wp-block-columns.alignwide.has-background {
  margin: 0 calc(50% - 683px);
  max-width: 1366px;
  width: 100vw;
  padding: 32px;
}

.wp-block-columns .wp-block-column.has-background {
  padding: 0 32px;
}

.wp-block-media-text {
  border: 1px solid #736a5b;
  padding: 0;
}

.wp-block-media-text.alignwide.has-background {
  padding: 0;
  margin: 0 calc(50% - 683px);
  max-width: 1302px;
  width: 100vw;
}

.wp-block-media-text__content {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #1e1e1e;
  font-size: 1em;
  font-weight: 200;
  line-height: 1.4em;
}

strong {
  font-weight: bold;
  font-weight: 500;
}

em {
  font-style: italic;
}

h1 {
  color: #c13a2b;
  color: #fab334;
  font-size: 2.8em;
  line-height: 2em;
  line-height: 1.2em;
  font-weight: 100;
  position: relative;
}

h2 {
  color: #1e1e1e;
  font-size: 2em;
  line-height: 1.6em;
  font-weight: 100;
  position: relative;
  text-transform: uppercase;
}

h3 {
  color: #c13a2b;
  font-size: 1.6em;
  line-height: 1.2em;
  font-weight: 100;
}

h4 {
  color: #1e1e1e;
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: 200;
}

h5 {
  color: #1e1e1e;
  font-size: 1em;
  line-height: 1.2em;
  font-weight: 200;
}

h6 {
  color: #1e1e1e;
  font-size: 1em;
  line-height: 1.2em;
  font-weight: 200;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer li, .footer a {
  color: #fff;
}

.wp-block-heading {
  padding: 16px 0;
}

.wp-block-heading.has-background {
  padding: 16px 32px;
}

.wp-block-heading.alignwide {
  margin: 0 calc(50% - 683px);
  max-width: 1302px;
  width: calc(100vw - 64px);
  padding: 16px 32px;
  border: 2px solid purple;
}

.wp-block-heading.alignwide.has-background {
  margin: 0 calc(50% - 651px);
  max-width: 1238px;
  padding: 16px 32px;
  border: 2px solid yellow;
}

.wp-block-heading.alignfull {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
  padding: 16px 32px;
  max-width: calc(100vw - 64px);
}

.wp-block-heading.has-black-background-color {
  color: #d5cfbf;
}

.wp-block-heading.has-base-dark-color {
  color: #736a5b;
}

.wp-block-heading.has-base-color {
  color: #988e82;
}

.wp-block-heading.has-base-light-color {
  color: #d5cfbf;
}

.has-text-align-center {
  text-align: center;
}

p {
  line-height: 1.6em;
  padding-bottom: 15px;
}

a {
  color: #c13a2b;
  text-decoration: none;
}

a:hover {
  color: #1e1e1e;
}

.banner .tagline {
  font-size: 3em;
}

#banner p.tagline {
  font-size: 2.8em;
  line-height: 1.2em;
  color: #fff;
}

#banner p.subtag {
  font-size: 1.2em;
  line-height: 1.6em;
  color: #fff;
}

#logo p {
  font-size: 1em;
  color: #1e1e1e;
  padding: 24px 0;
}

#logo span.sitename {
  font-size: 1.6em;
  color: #c13a2b;
}

.content ul {
  padding: 0 2.5% 16px;
  font-size: 1em;
  margin-left: 8px;
}

.content ul li {
  color: #1e1e1e;
  list-style-type: disc;
}

.content ol {
  padding: 0 2.5% 16px;
  font-size: 1em;
  margin-left: 8px;
}

.content ol li {
  color: #1e1e1e;
  list-style-type: decimal;
}

.footer p {
  color: #fff;
}

.footer h3 {
  color: #fff;
}

figcaption {
  text-align: center;
}

.prev-next-links {
  padding: 10px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.prev-link {
  text-align: left;
  flex: 0 0 47.5%;
}

.next-link {
  text-align: right;
  flex: 0 0 47.5%;
}

.caption {
  font-size: 0.8em;
  font-style: italic;
}

#menu-wrap button {
  display: none;
  order: 2;
}

.bbx-menu h3 {
  display: none;
}

.menus {
  flex: 0 0 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 100px;
}

#primary {
  order: 1;
  position: relative;
}

#primary ul {
  margin: 0;
  list-style: none;
  float: right;
  z-index: 1;
  margin-top: 50px;
}

#primary ul li {
  display: inline-block;
  z-index: 1;
  position: relative;
}

#primary ul li a {
  display: block;
  padding: 14px 24px;
  text-align: center;
  text-transform: uppercase;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 0.8em;
  transition: 0.4s;
  font-weight: 100;
  position: relative;
}

#primary ul li a:hover {
  color: #fff;
  background: #736a5b;
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition: all 0.2s ease-in-out;
  position: relative;
}

#primary ul li.current-menu-item a {
  color: #fff;
  background: #39341f;
  border-radius: 5px 5px 0 0;
  color: #fbb034;
}

#primary ul li.current_page_item ul li a {
  color: #fbb034;
}

#primary ul li.menu-item-has-children:hover ul li a:hover {
  color: #fff;
  background: #972d22;
}

/******************
  SUBNAV
******************/
.sub-menu {
  width: 100%;
  display: none;
}

#primary ul li ul {
  width: 100%;
  width: 160px;
  position: absolute;
  left: 0;
  top: -10px;
  text-align: center;
  display: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#primary ul li:hover ul {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#primary ul li ul li {
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  background: #39341f;
  border-radius: 0;
}

#primary ul li ul li a {
  text-align: left;
  padding: 10px 24px;
  margin: 0;
  width: 140px;
  color: #fff;
  text-transform: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#primary ul li:hover a {
  background: #5a5231;
  color: #fff;
  color: #fbb034;
}

#primary ul li ul li:hover a {
  border-radius: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #5a5231;
}

#primary ul li.first-menu-item {
  position: relative;
  border-left: none;
}

#primary ul li.current-page-ancestor {
  background: #5a5231;
}

#primary ul li.current-page-ancestor a {
  color: #fbb034;
}

/* Secondary Menu */
#menu-secondary-menu {
  margin: 0 0 0 2px;
}

ul#menu-secondary-menu {
  margin: 0;
  padding: 0;
}

ul#menu-secondary-menu li {
  line-height: 1.4em;
}

ul#menu-secondary-menu li a {
  text-transform: none;
  padding: 0 10px;
  text-decoration: none;
}

ul#menu-secondary-menu li a:hover {
  color: #fff;
  background: #c13a2b;
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition: all 0.2s ease-in-out;
  position: relative;
}

@media (max-width: 1023px) {
  #menu-wrap .menu-container {
    z-index: 100;
    width: 80px;
    height: 80px;
  }
  #menu-wrap .buttonset {
    text-align: right;
    order: 2;
  }
  #menu-wrap button {
    display: block;
    border: none;
    background: transparent;
    color: #fff;
    color: #c13a2b;
    padding: 18px 24px;
    cursor: pointer;
    margin: 0;
    font-size: 2.2em;
    order: 2;
    background: #2b2b2b;
  }
  #menu-wrap button.active {
    background: #c13a2b;
  }
  /* General styles for all menus */
  .bbx-menu {
    background: #c13a2b;
    position: fixed;
    margin-top: 0;
    flex-flow: column nowrap;
    justify-content: flex-start;
    background: #fff;
    background: #ededed;
  }
  .bbx-menu h3 {
    color: #c13a2b;
    color: #fff;
    display: inline;
    font-size: 1.9em;
    padding: 33px 20px 33px 18px;
    padding: 16px 5%;
    margin: 0;
    font-weight: 300;
    background: #c13a2b;
    background: #000;
    background: #c13a2b;
    position: relative;
  }
  .bbx-menu h3 span {
    float: right;
    position: absolute;
    right: 5%;
    top: 0;
    height: 32px;
    width: 10px;
    padding: 33px 20px 33px;
    padding: 8px 20px 20px;
    padding: 16px 2.5%;
  }
  .bbx-menu h3 span:hover {
    color: #ac3426;
    cursor: pointer;
  }
  #primary {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
  #primary ul {
    float: none;
    width: 100%;
    margin-top: 0;
  }
  #primary ul li {
    width: 100%;
  }
  #primary ul li a::before {
    display: none;
  }
  #primary ul li a {
    display: block;
    color: #fff;
    color: #c13a2b;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    padding: 16px 2.5%;
    border-bottom: 1px solid #424242;
    border-bottom: 1px solid #c13a2b;
    border-bottom: 1px solid #dedede;
  }
  #primary ul li a:hover {
    color: #c13a2b;
  }
  .menu-item-has-children {
    position: relative;
  }
  span.arrow {
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    width: 65px;
    height: 55px;
    display: inline-block;
    background: #2b2b2b;
    background: #c13a2b;
    text-align: center;
  }
  span.arrow::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    position: absolute;
    right: 1em;
    left: 50%;
    top: 31px;
    top: 50%;
    transform: translate(-50%, -50%);
    transition-property: transform;
    transition-duration: 0.2s;
  }
  span.arrow.submenu-open::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .arrow:hover {
    cursor: pointer;
  }
  #primary ul li.menu-item-has-children.current_page_item a::after,
  #primary ul li.current_page_ancestor a::after {
    display: none;
    content: "";
  }
  .bbx-menu a:active {
    color: #47a3da;
  }
  /* Subnav */
  #primary ul li ul.sub-menu {
    display: none;
    height: auto;
    position: relative;
    margin-top: 10px;
    margin-top: 0;
    top: 0;
    width: 100%;
    text-align: left;
  }
  #primary ul li ul.sub-menu li {
    width: 100%;
    padding: 0;
  }
  #primary ul li ul.sub-menu li a {
    padding: 15px 5%;
    float: none;
    margin: 0;
    display: block;
    width: 90%;
    background: #c13a2b;
  }
  /* Orientation-dependent styles for the content of the menu */
  .bbx-menu-vertical {
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1000;
  }
  .bbx-menu-vertical a {
    padding: 1em;
  }
  /* Vertical menu that slides from the left or right */
  .bbx-menu-right {
    right: -100%;
  }
  .bbx-menu-left.bbx-menu-open {
    left: 0px;
  }
  .bbx-menu-right.bbx-menu-open {
    right: 0px;
  }
  /* Transitions */
  .bbx-menu,
  .bbx-menu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #primary ul li.menu-item-has-children:hover a::after,
  #primary ul li.menu-item-has-children.current_page_item a::after,
  #primary ul li.current_page_ancestor a::after {
    content: "";
  }
}
@media (max-width: 1919px) {
  #header {
    padding: 0 32px;
  }
  .alignwide {
    padding: 32px;
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }
}
@media (max-width: 1365px) {
  #header-wrap {
    max-width: 100%;
  }
  .alignwide.has-background {
    max-width: calc(100vw - 64px);
  }
}
@media (max-width: 1023px) {
  #header-wrap {
    height: 80px;
  }
  #menu-wrap {
    height: 80px;
    width: 80px;
    flex: 0 0 80px;
  }
  #logo,
  .logo-wrap {
    flex: 0 0 80%;
    height: 80px;
  }
  #logo img {
    max-height: 60px;
  }
  .content {
    padding: 32px;
    width: calc(100% - 64px);
    max-width: calc(100% - 64px);
    margin: 0 auto;
  }
  /*NOTE: add .banner__inner*/
  #banner .animation {
    max-width: 800px;
    max-height: 800px;
    max-width: 736px;
  }
}
@media (max-width: 767px) {
  #header-wrap {
    max-width: 100%;
    width: 100%;
    height: 80px;
  }
  #menu-wrap {
    height: 80px;
    flex: 0 0 20%;
    flex: 0 0 80px;
  }
  #logo,
  .logo-wrap {
    height: 80px;
    flex: 0 0 80%;
  }
  #logo img {
    max-height: 60px;
  }
  h3.wp-block-heading {
    font-size: 1.2em !important;
  }
  #banner .animation {
    max-width: 800px;
    max-height: 800px;
    max-width: calc(100% - 64px);
  }
}

/*# sourceMappingURL=style.css.map */
