/* MEGA MENU ------------------------------------------------------------------------- */
.brs-mega-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: .4s;
  z-index: 10;
}
.brs-mega-menu .sub-arrow {
  align-items: center;
  display: flex;
  line-height: 1;
  margin-block-end: -10px;
  margin-block-start: -10px;
  padding: 5px;
  padding-inline-end: 0;
  transition: .4s;
  transform-origin: 13px center;
}
.brs-mega-menu .sub-arrow svg {
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}
.brs-mega-menu > li {
  position: relative;
  transition: .4s;
}
.brs-mega-menu > li.menu-item {
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
}
.brs-mega-menu > li.menu-item-has-children .sub-menu .sub-arrow {
  margin-left: auto;
}
.brs-mega-menu > li.menu-item-has-children .sub-menu .sub-arrow i {
  transform: rotate(-90deg);
}
.brs-mega-menu > li:hover > .sub-menu-container {
  display: block;
}
.brs-mega-menu > li:hover > .brs-mega-menu-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.brs-mega-menu > li:hover > a .sub-arrow {
  transform: rotate(180deg);
}
.brs-mega-menu a {
  align-items: center;
  display: flex;
  padding: 10px 15px;
  text-decoration: none;
  transition: .4s;
  white-space: nowrap;
}
.brs-mega-menu .sub-menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  padding: 0;
  margin: 0;
  z-index: 20;
}
.brs-mega-menu .sub-menu {
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
}
.brs-mega-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: -1px;
}
.brs-mega-menu .brs-mega-menu-content {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 0;
  margin: 0;
  z-index: 20;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 100vw;
}

/* SIMPLE MENU ------------------------------------------------------------------------- */
.brs-simple-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.brs-simple-menu ul li {
  position: relative;
}
.brs-simple-menu ul li > a {
  display: block;
}
.brs-simple-menu .sub-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  display: none;
}
.brs-simple-menu .sub-menu a {
  padding-right: 40px;
}
.brs-simple-menu .sub-menu.submenu-align-right .submenu-indicator {
  right: auto;
  left: 10px;
}
.brs-simple-menu li.open > .sub-menu {
  opacity: 1;
  transform: translateY(0);
}
.brs-simple-menu .sub-menu.visible {
  display: block;
}
.brs-simple-menu .submenu-indicator {
  font-size: inherit;
  position: absolute;
  top: 9px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  padding: 7px;
  transition: all .3s;
}
.brs-simple-menu .submenu-indicator i, .brs-simple-menu .submenu-indicator svg {
  transition: transform 0.3s ease;
}
.brs-simple-menu .submenu-indicator svg {
  width: 1em;
}
.brs-simple-menu .submenu-toggle-button[aria-expanded="true"] i,
.brs-simple-menu .submenu-toggle-link[aria-expanded="true"] i,
.brs-simple-menu .submenu-toggle-button[aria-expanded="true"] svg,
.brs-simple-menu .submenu-toggle-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.brs-simple-menu.menu-align-right .menu-items > li > .submenu-indicator {
  right: auto;
  left: 10px;
}

/* HERO ------------------------------------------------------------------------- */
.slick-slider-container {
  overflow: hidden;
}

.brs-hero {
  margin-bottom: 0 !important;
}
.brs-hero .slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.brs-hero .slide .slide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}
.brs-hero .slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.brs-hero .slide .button {
  display: inline-block;
  text-align: center;
}
.brs-hero .slick-arrow {
  font-size: 12px;
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  outline: none;
  height: auto;
  width: auto;
  z-index: 101;
}
.brs-hero .slick-arrow:before {
  content: none !important;
}
.brs-hero .slick-prev {
  left: 15px;
}
.brs-hero .slick-next {
  right: 15px;
}
.brs-hero .slick-dots {
  bottom: 25px;
}
.brs-hero .slick-dots li {
  border-radius: 50%;
  width: auto;
  height: auto;
}
.brs-hero .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.brs-hero .slick-dots li button:before {
  content: none;
}
.brs-hero .slick-dots li.slick-active button {
  background-color: #ff5733;
  transform: scale(1.2);
}
