html, body {
  margin: 0;
  color: #353535;
  box-sizing: border-box;
  font-size: 14px;
  scroll-behavior: smooth;
}
@media (max-width: 820px) {
  html, body {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
  font-family: transat-text, sans-serif;
}

a {
  text-decoration: underline;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.block-hover {
  position: relative;
}
.block-hover:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  max-height: 0;
  transform-origin: top;
  transition: max-height 0.15s;
  pointer-events: none;
}
.block-hover-x:before {
  width: 100%;
  max-height: none;
  max-width: 0;
  transition: max-width 0.15s;
  transform-origin: left;
}
.block-hover-bottom:before {
  transform-origin: bottom !important;
  bottom: 0;
  top: auto;
}
.block-hover-right:before {
  transform-origin: right !important;
  right: 0;
  left: auto;
}
.block-hover:hover:before {
  max-width: 100% !important;
  max-height: 100% !important;
}

.GM__button {
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0.9em 1.6em;
  border-radius: 0.8em 0.8em 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}
.GM__button[disabled] {
  pointer-events: none;
}
.GM__button:hover:after:not(.GM__button[disabled]) {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  border-radius: 0.8em 0.8em 0 0;
}
.GM__button.GM__button--rounded, .GM__button.GM__button--rounded:after {
  border-radius: 1.4em;
}
.GM__button--orange {
  color: #9B482B;
}

.GM__button__arrow {
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
}
.GM__button__arrow svg {
  width: 100%;
  height: 100%;
  color: inherit;
}
.GM__button[disabled] .GM__button__arrow {
  display: none;
}

.GM__button__arrow--right {
  content: url("data:image/svg+xml,%0A%3Csvg width='52px' height='49px' viewBox='0 0 52 49' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='gm-webdesign_v4' transform='translate(-1772.000000, -2196.000000)' stroke='%23BCBAAC' stroke-width='3'%3E%3Cg id='Group-89' transform='translate(0.153000, 583.775200)'%3E%3Cg id='Group' transform='translate(1772.797000, 1613.976300)'%3E%3Cpolyline id='Stroke-77' points='22.9525 45.368 48.6395 22.684 22.9525 0'%3E%3C/polyline%3E%3Cline x1='48.639' y1='22.6837' x2='0' y2='22.6837' id='Stroke-79'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.GM__title {
  font-size: 6rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
.GM__title.GM__title--small {
  font-size: 4rem;
}
@media (max-width: 820px) {
  .GM__title.GM__title--small {
    font-size: 2.4rem;
  }
}
@media (max-width: 820px) {
  .GM__title {
    font-size: 3rem;
  }
}

.GM__subtitle {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  color: #9b482b;
}
.GM__subtitle.GM__title--small {
  font-size: 1.6rem;
}
@media (max-width: 820px) {
  .GM__subtitle.GM__title--small {
    font-size: 1.2rem;
  }
}
@media (max-width: 820px) {
  .GM__subtitle {
    font-size: 1.5rem;
  }
}

.GM__label {
  text-transform: uppercase;
  transform: rotate(-4deg);
  background: #353535;
  display: inline-flex;
  padding: 0.3em 0.5em;
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  position: absolute;
  top: -10%;
  left: 8%;
  line-height: 1;
  transition: transform cubic-bezier(0.83, 0.98, 0.08, 1.11) 0.25s, opacity cubic-bezier(0.83, 0.98, 0.08, 1.11) 0.25s;
  transition-delay: 2s;
  color: #f5f3ef;
}

.dropdown-menu {
  position: relative;
}

.dropdown-menu__dropdown {
  width: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  right: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: transform 0.2s;
  padding: 2px 0 0 0;
}
.dropdown-menu__dropdown--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu__dropdown__content {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
}

.dropdown-menu__dropdown a {
  text-decoration: none;
  color: inherit;
  padding: 10px 8px;
  font-size: 1rem;
  text-align: left;
}
.dropdown-menu__dropdown a:hover {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.dropdown-menu__dropdown--right a {
  text-align: right;
}

.GM_Page {
  width: 100%;
  max-width: 100vw;
  position: relative;
  z-index: 10;
  background: #f5f3ef;
}

.grid {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -8px 0 -8px;
}
.grid.grid-nogutter {
  margin: 0;
}
.grid.grid-nogutter > .col {
  padding: 0;
}

.col {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
  min-width: 0;
  padding: 0 8px 0 8px;
}

.col-align-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.col-align-bottom {
  align-self: flex-end;
}

.col-align-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.col-top {
  justify-content: flex-start !important;
  flex-direction: column;
  display: flex;
}

.col-bottom {
  justify-content: flex-end !important;
  flex-direction: column;
  display: flex;
}

.col-middle {
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.grid-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grid-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.grid-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.grid-around {
  justify-content: space-around;
}

.grid-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.col-last {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.grid-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col-fixed {
  flex: initial;
}

.col-grow-2 {
  flex-grow: 2;
}

.col-grow-3 {
  flex-grow: 3;
}

.col-grow-4 {
  flex-grow: 4;
}

.col-grow-5 {
  flex-grow: 5;
}

.col-grow-6 {
  flex-grow: 6;
}

.col-grow-7 {
  flex-grow: 7;
}

.col-grow-8 {
  flex-grow: 8;
}

.col-grow-9 {
  flex-grow: 9;
}

.col-grow-10 {
  flex-grow: 10;
}

.col-grow-11 {
  flex-grow: 11;
}

.col-1 {
  -ms-flex-preferred-size: 8.3333333333%;
  -webkit-flex-basis: 8.3333333333%;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex-preferred-size: 16.6666666667%;
  -webkit-flex-basis: 16.6666666667%;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex-preferred-size: 33.3333333333%;
  -webkit-flex-basis: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex-preferred-size: 41.6666666667%;
  -webkit-flex-basis: 41.6666666667%;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex-preferred-size: 58.3333333333%;
  -webkit-flex-basis: 58.3333333333%;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex-preferred-size: 66.6666666667%;
  -webkit-flex-basis: 66.6666666667%;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex-preferred-size: 83.3333333333%;
  -webkit-flex-basis: 83.3333333333%;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex-preferred-size: 91.6666666667%;
  -webkit-flex-basis: 91.6666666667%;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 480px) {
  .col-sm {
    flex: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 624px) {
  .col-md {
    flex: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 744px) {
  .col-lg {
    flex: 100%;
    max-width: 100%;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s both;
  animation: animate-svg-fill-1 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.1s both;
  animation: animate-svg-fill-2 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.1s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.2s both;
  animation: animate-svg-fill-3 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(205, 113, 19);
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.3s both;
  animation: animate-svg-fill-4 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(61, 61, 61);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.svg-elem-5 {
  animation: animate-svg-fill-5 2s 0.6s both;
  transform-origin: left;
}

.GM_Menu {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #c0bfb0;
  z-index: 99;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
}

.GM_Menu__content {
  width: 100%;
  height: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
}

.GM_Menu__content__logo {
  width: 100%;
  max-width: 165px;
  flex-shrink: 0;
}
.GM_Menu__content__logo svg {
  width: 100%;
  height: auto;
}

.GM_Menu__content__links {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 24px;
}

.GM_Menu__content__links__link {
  height: 100%;
  position: relative;
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 25px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.GM_Menu__content__links__link > span {
  display: flex;
  align-items: center;
}
.GM_Menu__content__links__link > span svg {
  width: 100%;
  max-width: 10px;
  height: 10px;
  margin-left: 5px;
  margin-top: 2px;
}

.GM_Menu__content__links__link > a {
  text-decoration: none;
  color: inherit;
}

.GM_Menu__content__links__link__dropdown {
  width: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  right: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: transform 0.2s;
  padding: 2px 0 0 0;
}
.GM_Menu__content__links__link__dropdown.dropdown-menu__dropdown--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.GM_Menu__content__links__link__dropdown__content {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.GM_Menu__content__links__link__dropdown a {
  text-decoration: none;
  color: inherit;
  padding: 10px 8px;
  font-size: 1rem;
  text-align: left;
}
.GM_Menu__content__links__link__dropdown a:hover {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.GM_Menu__content__icons {
  display: flex;
  margin-left: auto;
  gap: 12px;
}

.GM_Menu__content__icons__icon {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.GM_Menu__content__icons__icon svg {
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .GM_Menu__content__icons__icon svg {
    width: 18px;
    min-width: 18px;
    max-width: 18px;
  }
}
.GM_Menu__content__icons__icon img {
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .GM_Menu__content__icons__icon img {
    width: 18px;
    min-width: 18px;
    max-width: 18px;
  }
}
.GM_Menu__content__icons__icon:hover {
  background: rgba(0, 0, 0, 0.05);
}

.GM_Menu__content__icons__icon--stacked {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 10px 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.GM_Menu__content__icons__icon--stacked svg {
  max-width: 26px;
}
.GM_Menu__content__icons__icon--stacked img {
  max-width: 26px;
}

.GM_Menu__content__icons__icon--stacked:hover {
  background: rgba(0, 0, 0, 0.15);
}

.GM_Menu__content__icons__icon--text {
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1rem;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}

.GM_Menu__content__icons__icon__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: inherit;
}

@media (max-width: 1050px) {
  .GM_Menu__content__icons__icon--stacked {
    background: transparent;
    border-radius: 0;
    padding: 13px 14px;
    flex-direction: row;
    gap: 0;
  }
  .GM_Menu__content__icons__icon__label {
    display: none;
  }
}
@media (max-width: 430px) {
  .GM_Menu__content {
    padding: 0 16px;
  }
  .GM_Menu__content__logo {
    max-width: 140px;
  }
  .GM_Menu__content__icons {
    gap: 4px;
  }
  .GM_Menu__content__icons__icon {
    padding: 10px 8px;
  }
  .GM_Menu__content__icons__icon--stacked {
    padding: 10px 8px;
  }
  .GM_Menu__content__icons__icon--text {
    font-size: 1rem;
  }
}
.GM_Menu__MobileOverlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #f5f3ef;
  transition: transform 0.25s, opacity 0.25s;
  z-index: 3;
}
.GM_Menu__MobileOverlay:not(.GM_Menu__MobileOverlay--active) {
  pointer-events: none;
  transform: scale(0.2);
  opacity: 0;
}

.GM_Menu__MobileOverlay__content {
  width: 100%;
}

.GM_Menu__MobileOverlay__content__links {
  width: 100%;
  margin-top: 15vh;
  margin-left: 15px;
}
.GM_Menu__MobileOverlay__content__links__link {
  width: 100%;
  margin: auto;
  font-size: 2.6rem;
  padding: 10px;
}
.GM_Menu__MobileOverlay__content__links__link a {
  color: #333;
  text-decoration: none;
}
.GM_Menu__MobileOverlay__content__links__link .GM_Menu__MobileOverlay__content__links__link__dropdown {
  width: 100%;
  position: static;
  display: none;
  margin-left: 25px;
  margin-top: 15px;
}
.GM_Menu__MobileOverlay__content__links__link .GM_Menu__MobileOverlay__content__links__link__dropdown .GM_Menu__MobileOverlay__content__links__link__dropdown__content {
  width: 100%;
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
}
.GM_Menu__MobileOverlay__content__links__link .GM_Menu__MobileOverlay__content__links__link__dropdown a {
  font-size: 2rem;
  text-align: left;
}
.GM_Menu__MobileOverlay__content__links__link .GM_Menu__MobileOverlay__content__links__link__dropdown.dropdown-menu__dropdown--active {
  display: block;
}

.GM_Footer {
  width: 100%;
  background: #a74121;
  position: sticky;
  bottom: 0;
  box-shadow: inset 0px 25px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
}

.GM_Footer__content {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 8vh 15px;
  display: flex;
}
@media (max-width: 820px) {
  .GM_Footer__content {
    flex-direction: column;
  }
}

.GM_Footer__content__section {
  width: 100%;
  color: #e4e3d3;
  padding: 0 45px;
}
@media (max-width: 820px) {
  .GM_Footer__content__section {
    padding: 25px 45px;
  }
}
.GM_Footer__content__section img {
  width: 100%;
  max-width: 250px;
}
.GM_Footer__content__section h1 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.GM_Footer__content__section a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1rem;
}
.GM_Footer__content__section p {
  margin-bottom: 0;
}
.GM_Footer__content__section--withBorder {
  border-right: 1px solid rgba(227, 227, 211, 0.5);
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) {
  .GM_Footer__content__section--withBorder {
    border: 0;
  }
}
.GM_Footer__content__section--withBorder:last-child {
  border-right: 0;
}

.GM_SearchOverlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #9f3722;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.GM_SearchOverlay--active {
  opacity: 1;
  pointer-events: auto;
}

.GM_SearchOverlay__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-width: 600px;
  margin: auto;
}
.GM_SearchOverlay__content h1 {
  color: #f5f3ef;
  font-size: 2.5rem;
  margin: 0;
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 0 30px;
}

.GM_SearchOverlay__content__illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1.2) rotate(-4deg);
  transition: transform 0.5s;
  opacity: 0;
}
.GM_SearchOverlay--active .GM_SearchOverlay__content__illustration {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.GM_SearchOverlay__content__input {
  position: relative;
  margin-bottom: 15px;
  margin-top: 40vh;
  margin-left: 30px;
}
.GM_SearchOverlay__content__input:after {
  width: 100%;
  max-width: 10%;
  height: 4px;
  background: #f5f3ef;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: max-width 2s, opacity 1s;
  opacity: 0;
}
@media (max-width: 820px) {
  .GM_SearchOverlay__content__input:after {
    height: 2px;
  }
}
.GM_SearchOverlay--active .GM_SearchOverlay__content__input:after {
  max-width: 100%;
  opacity: 1;
}

.GM_SearchOverlay__content input {
  width: 70vw;
  max-width: 600px;
  font-size: 3rem;
  background: transparent;
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #f5f3ef;
  border: 0;
  position: relative;
  z-index: 4;
  outline: 0;
  transform: scale(0.85);
  transition: transform 0.25s;
}
@media (max-width: 820px) {
  .GM_SearchOverlay__content input {
    font-size: 2rem;
  }
}
.GM_SearchOverlay--active .GM_SearchOverlay__content input {
  transform: scale(1);
}
.GM_SearchOverlay__content input::placeholder {
  color: #f5f3ef;
}

.GM_SearchOverlay__content h1 {
  margin-bottom: 5px;
}

.GM_SearchOverlay__content a {
  display: block;
  position: relative;
  z-index: 4;
  color: #f5f3ef;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 5px;
}
.GM_SearchOverlay__content a:hover {
  background: rgba(245, 243, 239, 0.05);
}

.GM_MenuOverlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #e6e1da;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.GM_MenuOverlay--active {
  opacity: 1;
  pointer-events: auto;
}

.GM_MenuOverlay__illustration {
  width: 70%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(0) invert(1);
}

.GM_MenuOverlay__content {
  width: 100%;
  height: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 50px 70px 80px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  overflow: auto;
}

.GM_MenuOverlay__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.GM_MenuOverlay__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.GM_MenuOverlay__logo img {
  width: 140px;
  height: auto;
}

.GM_MenuOverlay__close {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.GM_MenuOverlay__sections {
  width: 100%;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  grid-template-areas: "evenemang ditt ." "gotland ensambler samverkan";
  gap: 32px 90px;
}

.GM_MenuOverlay__section {
  width: 100%;
}

.GM_MenuOverlay__section__title {
  font-size: clamp(2rem, 1.2vw + 1.6rem, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.01em;
  width: 100%;
  line-height: 1.1;
}

.GM_MenuOverlay__section__title span {
  min-width: 0;
}

.GM_MenuOverlay__section__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.GM_MenuOverlay__section__links a {
  font-size: clamp(1.1rem, 0.6vw + 0.9rem, 1.4rem);
  line-height: 1.35;
  text-decoration: none;
  color: inherit;
  padding: 3px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
  width: 100%;
}

.GM_MenuOverlay__section__links a span {
  min-width: 0;
}

.GM_MenuOverlay__section--single .GM_MenuOverlay__section__title {
  padding: 18px 22px;
  border-radius: 6px;
  width: 100%;
  justify-content: space-between;
}

.GM_MenuOverlay__arrow {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex: 0 0 auto;
  justify-self: end;
}

.GM_MenuOverlay__section--single .GM_MenuOverlay__arrow {
  width: 20px;
  height: 20px;
  opacity: 0.95;
}

.GM_MenuOverlay__section--featured .GM_MenuOverlay__section__title {
  background: #3c3c3c;
  color: #f6f2ee;
}

.GM_MenuOverlay__section--featured .GM_MenuOverlay__arrow {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.GM_MenuOverlay__section--evenemang {
  grid-area: evenemang;
}

.GM_MenuOverlay__section--ditt-besok {
  grid-area: ditt;
}

.GM_MenuOverlay__section--gotlandsmusiken {
  grid-area: gotland;
}

.GM_MenuOverlay__section--ensambler {
  grid-area: ensambler;
}

.GM_MenuOverlay__section--samverkan {
  grid-area: samverkan;
}

@media (max-width: 1200px) {
  .GM_MenuOverlay__sections {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-template-areas: unset;
    gap: 32px 60px;
  }
  .GM_MenuOverlay__section {
    grid-area: auto;
  }
  .GM_MenuOverlay__section__title {
    font-size: clamp(1.9rem, 1.1vw + 1.4rem, 2.4rem);
    margin-bottom: 16px;
  }
  .GM_MenuOverlay__section__links a {
    font-size: clamp(1rem, 0.6vw + 0.8rem, 1.2rem);
  }
}
@media (max-width: 900px) {
  .GM_MenuOverlay__content {
    padding: 32px 28px 40px;
  }
  .GM_MenuOverlay__sections {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .GM_MenuOverlay__section,
  .GM_MenuOverlay__section__links,
  .GM_MenuOverlay__section__title {
    width: 100%;
  }
  .GM_MenuOverlay__section__title {
    font-size: clamp(1.7rem, 2vw + 1.1rem, 2.1rem);
  }
  .GM_MenuOverlay__section__links a {
    font-size: clamp(1rem, 1.2vw + 0.7rem, 1.2rem);
  }
  .GM_MenuOverlay__section--single {
    width: 100%;
  }
  .GM_MenuOverlay__section--single .GM_MenuOverlay__section__title {
    display: flex;
  }
}
@media (max-width: 600px) {
  .GM_MenuOverlay__content {
    padding: 26px 20px 32px;
  }
  .GM_MenuOverlay__section__title,
  .GM_MenuOverlay__section__links a {
    padding-left: 6px;
    padding-right: 12px;
  }
  .GM_MenuOverlay__section__title {
    font-size: clamp(1.9rem, 3vw + 1.1rem, 2.3rem);
  }
  .GM_MenuOverlay__section__links a {
    font-size: clamp(1.05rem, 2vw + 0.6rem, 1.25rem);
  }
  .GM_MenuOverlay__illustration {
    width: 95%;
    opacity: 0.2;
  }
}
.GM_SponsorOverlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #f5f3ef;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.GM_SponsorOverlay--active {
  opacity: 1;
  pointer-events: auto;
}

.GM_SponsorOverlay__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.GM_SponsorOverlay__content span {
  font-size: 1.4rem;
  display: block;
  margin-top: 5px;
}

.GM_SponsorOverlay__content__illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1.2) rotate(-4deg);
  transition: transform 0.5s;
  opacity: 0;
}
.GM_SponsorOverlay--active .GM_SponsorOverlay__content__illustration {
  transform: rotate(0deg) scale(1);
  opacity: 0.05;
}

.GM_SponsorOverlay__content__logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.GM_SponsorOverlay__content__logos img {
  width: 100%;
  max-width: 150px;
}

.GM_SponsorOverlay__content a {
  display: block;
  position: relative;
  z-index: 4;
  color: #000;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 5px;
  margin-top: 15px;
}
.GM_SponsorOverlay__content a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.GM_EventBanner {
  width: 100%;
  display: flex;
  border-bottom: 2px solid #323232;
}

.GM_EventBanner__content {
  width: 100%;
  height: 82vh;
  display: flex;
  justify-content: center;
}

.GM_EventBanner__content__arrow {
  width: 100%;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .GM_EventBanner__content__arrow {
    display: none;
  }
}
.GM_EventBanner--one .GM_EventBanner__content__arrow {
  display: none;
}
.GM_EventBanner__content__arrow {
  cursor: pointer;
}
.GM_EventBanner__content__arrow svg {
  color: #323232;
}

.GM_EventBanner__events {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}
.GM_EventBanner--one .GM_EventBanner__events {
  max-width: none;
}

.GM_EventBanner__events__event {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.GM_EventBanner__events__event.GM_EventBanner__events__event--active {
  opacity: 1;
  pointer-events: auto;
}

.GM_EventBanner__events__event__content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.GM_EventBanner__events__event__content__image {
  width: 100%;
  height: 100%;
  display: flex;
}

.GM_EventBanner__events__event__content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__image img {
    object-position: center !important;
  }
}

.GM_EventBanner__events__event__content__box {
  width: 100%;
  max-width: 500px;
  position: absolute;
  bottom: 0;
  left: 0px;
  color: #e0dfcc;
  font-family: transat-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box {
    max-width: none;
    position: relative;
    z-index: 3;
  }
}
.GM_EventBanner__events__event--active .GM_EventBanner__events__event__content__box {
  color: #f5f3ef;
  background-color: #9f3722;
}
.GM_EventBanner__events__event__content__box .GM__button {
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.25s;
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.83, 0.98, 0.08, 1.11);
  margin: 0;
  margin-top: auto;
  color: inherit;
  background: transparent;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.GM_EventBanner__events__event__content__box .GM__button .GM__button__arrow {
  color: inherit;
}
.GM_EventBanner__events__event--active .GM_EventBanner__events__event__content__box .GM__button {
  opacity: 1;
}

.GM_EventBanner__events__event__content__box__sticker {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 25px;
  align-self: flex-start;
  background: #f5f3ef;
  color: #9B482B;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateY(-50%) rotate(-3deg);
  margin: 0;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box__sticker {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

.GM_EventBanner__events__event__content__box__label {
  position: absolute;
  top: -10%;
  left: 8%;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity cubic-bezier(0.83, 0.98, 0.08, 1.11) 0.25s;
  transition-delay: 2s;
}
.GM_EventBanner__events__event__content__box__label:empty {
  display: none;
}
.GM_EventBanner__events__event--active .GM_EventBanner__events__event__content__box__label {
  transform: scale(1) rotate(-4deg);
  opacity: 1;
}

.GM_EventBanner__events__event__content__box h1 {
  font-size: 2rem;
  margin-bottom: auto;
  margin-top: 0;
  margin: 25px 25px 0 25px;
  position: relative;
  line-height: 1;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box h1 {
    font-size: 1.6rem;
  }
}
@keyframes showBlock {
  from {
    max-width: 0;
    left: 0;
    right: auto;
  }
  to {
    max-width: 100%;
    right: 0;
    left: auto;
  }
}

.GM_EventBanner__events__event__content__box__info {
  font-size: 1.6rem;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1;
  margin: 35px 25px 25px 25px;
  position: relative;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box__info {
    align-items: center;
  }
}
.GM_EventBanner__events__event__content__box__info span {
  width: 100%;
  display: flex;
  align-items: center;
}
.GM_EventBanner__events__event__content__box__info span svg {
  width: 100%;
  max-width: 24px;
  margin-right: 10px;
}
.GM_EventBanner__events__event__content__box__info span:last-child {
  max-width: 100px;
  justify-content: flex-end;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box__info span:last-child {
    max-width: 30%;
    font-size: 1.4rem;
  }
}
.GM_EventBanner__events__event__content__box__info span:first-of-type {
  font-size: 1.4rem;
  margin-right: 15px;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box__info span:first-of-type {
    width: 100%;
    font-size: 1.4rem;
  }
}

.GM_EventBanner__events__event__content__box__info--range {
  justify-content: flex-start;
  margin: 35px 25px 25px 25px;
  padding: 0;
}

.GM_EventBanner__events__event__content__box__info--range span:last-child {
  max-width: none;
  justify-content: flex-start;
}

.GM_EventBanner__events__event__content__box__info__range {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .GM_EventBanner__events__event__content__box__info__range {
    font-size: 1.9rem;
  }
}

.GM_EventBanner__events__event__content__box__info__range__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #f5f3ef;
}

.GM_EventBanner__events__event__content__box--multi h1 {
  margin-top: 45px;
}

.GM_EventBanner__events__event__content__box__cta--beige {
  background: rgb(245, 243, 239) !important;
  color: #000 !important;
}
.GM_EventBanner__events__event__content__box__cta--beige .GM__button__arrow {
  color: #000 !important;
}

.GM_EventList {
  width: 100%;
}

.GM_EventList__content {
  width: 100%;
}

.GM_EventList__events {
  width: 100%;
}

.GM_EventList__events__event {
  width: 100%;
}
.GM_EventList__events__event .GM_EventList__events__event__content {
  width: 100%;
  max-width: 1780px;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  margin: auto;
}
@media (max-width: 820px) {
  .GM_EventList__events__event .GM_EventList__events__event__content {
    flex-direction: column;
    padding: 40px 0 0 0 !important;
  }
}
.GM_EventList__events__event .GM_EventList__events__event__link {
  width: 100%;
  display: flex;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 820px) {
  .GM_EventList__events__event .GM_EventList__events__event__link {
    flex-wrap: wrap;
  }
}
.GM_EventList__events__event .GM_EventList__events__event__label {
  top: -10%;
  font-size: 0.65rem;
  left: 0;
}
@media (max-width: 820px) {
  .GM_EventList__events__event .GM_EventList__events__event__label {
    font-size: 0.9rem;
    left: 10px;
    top: -10%;
    position: static;
    transform: rotate(0);
    margin: 0 20px 8px 20px;
  }
}
.GM_EventList__events__event:not(.GM_EventList__events__event:last-of-type) {
  border-bottom: 1px solid #323232;
}

.GM_EventList__events__event__column {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column {
    font-size: 1.2rem;
  }
}
.GM_EventList__events__event__column--image {
  max-width: 200px;
}
.GM_EventList__events__event__column--image img {
  width: 100%;
}
.GM_EventList__events__event__column--title {
  font-weight: bold;
  text-align: left;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column--title {
    width: 100%;
    padding: 0 20px;
    font-size: 1.6rem;
  }
}
.GM_EventList__events__event__column--location {
  max-width: 300px;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column--location {
    max-width: 100%;
    padding-bottom: 5px;
  }
}
.GM_EventList__events__event__column--when {
  font-weight: bold;
  max-width: 200px;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column--when {
    max-width: 100%;
    justify-content: flex-start;
    padding: 0 20px 25px 20px !important;
  }
}
.GM_EventList__events__event__column--button {
  max-width: 300px;
  align-self: stretch;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column--button {
    max-width: none;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}
.GM_EventList__events__event__column:last-of-type {
  padding: 0;
}
.GM_EventList__events__event__column .GM__button {
  width: 100%;
  height: 100%;
  align-items: center;
  line-height: 1;
  padding: 22px;
  background: transparent;
}
@media (max-width: 820px) {
  .GM_EventList__events__event__column .GM__button:not(.GM__button[disabled]) {
    background: rgba(255, 255, 255, 0.3);
  }
}
.GM_EventList__events__event__column .GM__button:not(.GM__button[disabled]):hover {
  background: #eae9db;
}
.GM_EventList__events__event__column .GM__button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.GM_EventList__content__button {
  width: 100%;
  font-size: 2.4rem;
  margin: auto;
  overflow: hidden;
  padding-left: 15px;
  max-width: 1780px;
}
@media (max-width: 820px) {
  .GM_EventList__content__button {
    font-size: 1.6rem;
    margin-top: 4vh;
  }
}
.GM_Section {
  width: 100%;
  margin: auto;
  border-bottom: 2px solid #323232;
}

.GM_Section__header {
  width: 100%;
  max-width: 1780px;
  margin: auto;
  padding: 15vh 15px 8vh 15px;
}
@media (max-width: 820px) {
  .GM_Section__header {
    padding: 5vh 20px 2vh 20px;
  }
}
.GM_Section__content {
  width: 100%;
  margin: auto;
  padding: 0;
}

.GM_AktuelltCards {
  width: 100%;
}

.GM_AktuelltCards__content {
  width: 100%;
}

.GM_AktuelltCards__articles {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 35px;
}
@media (max-width: 820px) {
  .GM_AktuelltCards__articles {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.GM_AktuelltCards__articles__article {
  width: 100%;
  max-width: 500px;
  font-size: 1.6rem;
  font-weight: bold;
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content {
  width: 100%;
  height: 100%;
  background: #e8e3df;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content:hover {
  background: transparent;
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content:hover .GM_AktuelltCards__articles__article__button {
  border-color: transparent;
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content:hover .GM__button {
  background: rgb(229.8672727273, 224.4036363636, 220.0327272727);
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content__image {
  width: 100%;
  margin-top: -20px;
  padding: 0 20px;
}
.GM_AktuelltCards__articles__article .GM_AktuelltCards__articles__article__content__image img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}
.GM_AktuelltCards__articles__article__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.GM_AktuelltCards__articles__article__label {
  padding: 4px 10px;
  opacity: 1;
  color: #FFF;
  font-size: 0.5em;
  text-transform: uppercase;
  background: #7D7B79;
  border-radius: 40px;
}
.GM_AktuelltCards__articles__article__title {
  padding: 0 20px;
  margin-top: 0;
  margin-bottom: 20px;
}
.GM_AktuelltCards__articles__article__date {
  opacity: 0.6;
}
.GM_AktuelltCards__articles__article__button {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #bbbaae;
}
.GM_AktuelltCards__articles__article:last-of-type {
  padding: 0;
}
.GM_AktuelltCards__articles__article .GM__button {
  width: 100%;
  height: 100%;
  align-items: center;
  background: transparent;
  font-size: 1.2rem;
}

.GM_Ensembler {
  text-align: center;
}
.GM_Ensembler h1 {
  margin-bottom: 8vh;
  margin-top: 8vh;
}

.GM_Ensembler__list {
  width: 100%;
  max-width: 1900px;
  display: flex;
  border-top: 1px solid #cccabd;
  margin: auto;
}

.GM_Ensembler__list__wrapper {
  width: 100%;
  display: flex;
  overflow: auto;
}

.GM_Ensembler__list__wrapper__scrollable {
  width: 100%;
  display: flex;
  overflow: auto;
}
@media (max-width: 820px) {
  .GM_Ensembler__list__wrapper__scrollable {
    overflow: auto;
  }
}

.GM_Ensembler__list__arrow {
  width: 100%;
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}
@media (max-width: 820px) {
  .GM_Ensembler__list__arrow {
    display: none;
  }
}
.GM_Ensembler__list__arrow svg {
  width: 100%;
  color: #323232;
}
.GM_Ensembler__list__arrow:first-child {
  border-right: 1px solid #cccabd;
}
.GM_Ensembler__list__arrow:last-child {
  border-left: 1px solid #cccabd;
}

.GM_Ensembler__list__item {
  width: 100%;
  max-width: 550px;
  flex-shrink: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}
.GM_Ensembler__list__item:nth-of-type(2) {
  border-right: 1px solid #cccabd;
}

.GM_Ensembler__list__item__content {
  width: 100%;
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.GM_Ensembler__list__item__content h1 {
  margin: 0;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.GM_Ensembler__list__item__content__image {
  width: 100%;
}
.GM_Ensembler__list__item__content__image img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.GM_BloggCards {
  width: 100%;
}

.GM_BloggCards__content {
  width: 100%;
}

.GM_BloggCards__dropdown-menu {
  z-index: 9999;
}

.GM_BloggCards__dropdown__wrapper {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  background: #f5f3ef;
  border: 1px solid #000;
  padding: 15px;
  z-index: 999;
  position: relative;
}

.GM_BloggCards__toolbar {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  margin: auto;
  margin-top: 50px;
  padding: 0 15px;
}
@media (max-width: 820px) {
  .GM_BloggCards__toolbar {
    flex-direction: column;
    gap: 15px;
  }
}
.GM_BloggCards__toolbar form {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 820px) {
  .GM_BloggCards__toolbar form {
    max-width: none;
  }
}
.GM_BloggCards__toolbar input {
  width: 100%;
  font-size: 1.2rem;
  background: transparent;
  border: 1px solid #000;
  appearance: none;
  font-weight: bold;
  padding: 8px;
}
.GM_BloggCards__toolbar input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.GM_BloggCards__toolbar .GM_BloggCards__dropdown-menu {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: flex-end;
}
.GM_BloggCards__toolbar .GM_BloggCards__dropdown-menu .dropdown-menu__dropdown {
  width: 100%;
  max-width: 400px;
  justify-content: flex-end;
  display: flex;
}
.GM_BloggCards__toolbar .GM__button {
  width: auto;
  position: static;
  border: 1px solid #000;
  background: transparent;
  border-radius: 0;
  font-size: 1.2rem;
  padding: 12px 18px;
}
.GM_BloggCards__toolbar .GM__button svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 12px;
}

.GM_BloggCards__dropdown__item {
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: 1.3rem !important;
}
.GM_BloggCards__dropdown__item:hover {
  border-radius: 0 !important;
}
.GM_BloggCards__dropdown__item--active {
  font-weight: bold;
}
.GM_BloggCards__dropdown__item:last-child {
  border-bottom: 0;
}

.GM_BloggCards__articles {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.GM_BloggCards__column {
  width: 100%;
  max-width: 350px;
}

.GM_BloggCards__articles__article {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 50px;
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content {
  width: 100%;
  height: 100%;
  background: #e8e3df;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content:hover {
  background: transparent;
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content:hover .GM_BloggCards__articles__article__button {
  border-color: transparent;
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content:hover .GM__button {
  background: rgb(229.8672727273, 224.4036363636, 220.0327272727);
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content__image {
  width: 100%;
  margin-top: -20px;
  padding: 0 20px;
}
.GM_BloggCards__articles__article .GM_BloggCards__articles__article__content__image img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}
.GM_BloggCards__articles__article__title {
  padding: 0 20px;
  margin-top: 0;
  margin-bottom: 10px;
}
.GM_BloggCards__articles__article__intro {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 20px;
  margin-top: 0;
  margin-bottom: 20px;
}
.GM_BloggCards__articles__article__date {
  padding: 10px 20px;
  opacity: 0.6;
}
.GM_BloggCards__articles__article__button {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #bbbaae;
}
.GM_BloggCards__articles__article:last-of-type {
  padding: 0;
}
.GM_BloggCards__articles__article .GM__button {
  width: 100%;
  height: 100%;
  align-items: center;
  background: transparent;
  font-size: 1.2rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 1050px) {
  .GM_BloggCards__articles {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  .GM_BloggCards__column {
    max-width: 100%;
    max-width: 500px;
    width: 100%;
  }
  .GM_BloggCards__articles__article {
    margin-top: 50px;
  }
}
.GM_Calendar {
  width: 100%;
}

.GM_Calendar__intro {
  width: 100%;
  text-align: center;
  padding: 10vh 15px;
}
@media (max-width: 820px) {
  .GM_Calendar__intro h1 {
    font-size: 2.6rem;
  }
}

.GM_Calendar__months__month__header {
  width: 100%;
  background: #e8e3df;
  position: relative;
  top: 0;
  z-index: 15;
}
.GM_Calendar__months__month__header.sticky-active {
  padding-top: 90px;
}
.GM_Calendar__months__month__header.sticky-passed-placeholder h1 {
  font-size: 2rem;
}
.GM_Calendar__months__month__header h1 {
  color: #323232;
  text-align: center;
  text-transform: none;
  padding: 10px 25px;
  font-size: 4rem;
  transition: font-size 0.25s;
}
@media (max-width: 820px) {
  .GM_Calendar__months__month__header h1 {
    font-size: 2rem;
  }
}

.GM_Calendar__months__month__events {
  width: 100%;
}

.GM_Calendar__months__month__events__event {
  width: 100%;
  margin: auto;
  cursor: pointer;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  display: block;
  flex-shrink: 0;
}
.GM_Calendar__months__month__events__event:hover {
  opacity: 0.9;
}

.GM_Calendar__months__month__events__event__content {
  width: 100%;
  max-width: 1250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
@media (max-width: 820px) {
  .GM_Calendar__months__month__events__event__content {
    flex-direction: column;
  }
}

.GM_Calendar__months__month__events__event__image {
  width: 100%;
  max-width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 820px) {
  .GM_Calendar__months__month__events__event__image {
    max-width: 100%;
  }
}
.GM_Calendar__months__month__events__event__image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.GM_Calendar__months__month__events__event__text {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 25px 0 25px;
}
@media (max-width: 820px) {
  .GM_Calendar__months__month__events__event__text {
    padding: 10px 0 0 0;
    margin-top: 10px;
  }
}
.GM_Calendar__months__month__events__event__text h1 {
  font-size: 2.4rem;
  margin: 0;
  margin-bottom: auto;
}
.GM_Calendar__months__month__events__event__text .GM__button {
  font-size: 1.15rem;
  background: rgba(0, 0, 0, 0.08);
}

.GM_Calendar__months__month__events__event__content__info {
  width: 100%;
  font-size: 1.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  position: relative;
  margin-bottom: 0px;
  padding: 20px 25px;
}
@media (max-width: 820px) {
  .GM_Calendar__months__month__events__event__content__info {
    padding: 20px 0 20px 0;
    margin-top: 0;
  }
}
.GM_Calendar__months__month__events__event__content__info span:first-of-type {
  font-size: 1.2rem;
}
.GM_Calendar__months__month__events__event__content__info span:last-of-type {
  font-weight: bold;
}

.GM_Calendar__months__month__events__event__line__cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.GM_Calendar__months__month__events__event__line__dateText,
.GM_Calendar__months__month__events__event__line__time {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.GM_Calendar__months__month__events__event__line__dateGroup {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.GM_Calendar__months__month__events__event__line__time {
  font-weight: 400;
  margin-left: 0.3em;
}

.GM_Calendar__months__month__events__event__line__book {
  white-space: nowrap;
}

.GM_Calendar__months__month__events__event__line__bookLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  font-weight: 700;
  cursor: pointer;
}

.GM_Calendar__months__month__events__event__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.GM_Calendar__months__month__events__event__icon--cta {
  width: 16px;
  height: 16px;
}

.GM_Event__intro {
  position: relative;
  top: 0;
  display: flex;
}

.GM_Event__intro__bg {
  width: 100%;
  height: 100%;
  background: #9f3722;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
}
.GM_Event__intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.GM_Event__intro__content {
  width: 100%;
  background: #f5f3ef;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 2;
  top: 0;
  text-align: center;
  padding: 0 0 35px 0;
}
@media (max-width: 820px) {
  .GM_Event__intro__content {
    padding: 10px 0;
  }
}
.GM_Event__intro__content img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}
@media (max-width: 820px) {
  .GM_Event__intro__content img {
    width: 100vw;
    max-width: none;
  }
}

.GM_Event__intro__content__top {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 25px;
  max-width: 980px;
  margin: -10vh auto 0 auto;
  position: relative;
  z-index: 3;
  background: #f5f3ef;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__top {
    flex-direction: column-reverse;
    align-items: flex-end;
    width: calc(100% - 32px);
    margin-top: -6vh;
    padding: 0 14px;
  }
}

.GM_Event__intro__content__top__title {
  width: 100%;
  line-height: 1;
  margin: 0;
  position: relative;
  padding: 34px 20px 30px 20px;
}
.GM_Event__intro__content__top__title .GM__title {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__top__title .GM__title {
    font-size: 2.6rem;
  }
}
@media (max-width: 820px) {
  .GM_Event__intro__content__top__title {
    margin-bottom: 10px;
    margin-top: 0;
    padding: 24px 10px 16px 10px;
  }
}

.GM_Event__intro__content__top__share .dropdown-menu__dropdown {
  width: 150px;
  background: #FFF;
  left: auto;
  right: 0;
  top: 40px;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__top__share:first-child {
    display: none;
  }
}

.GM_Event__intro__content__label {
  position: relative;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  margin: 25px 0;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__label {
    font-size: 1.4rem;
    margin-top: 8px;
    margin-bottom: 5px;
  }
}

.GM_Event__intro__content__multiSticker {
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 50%;
  background: #9B482B;
  color: #f5f3ef;
  padding: 10px 18px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateX(-50%) rotate(-3deg);
  margin-bottom: 0;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__multiSticker {
    top: -44px;
    font-size: 1.15rem;
    padding: 8px 14px;
  }
}

.GM_Event__intro__content__data {
  width: 100%;
  border: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data {
    margin-top: 0;
  }
}
.GM_Event__intro__content__data .GM__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data .GM__title {
    font-size: 1.2rem;
  }
}
.GM_Event__intro__content__data .GM__title svg {
  max-width: 60px;
  margin-right: 25px;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data .GM__title svg {
    max-width: 30px;
    margin-right: 10px;
  }
}
.GM_Event__intro__content__data .GM__button {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 2rem;
}
.GM_Event__intro__content__data .GM__button[disabled] {
  background-color: transparent;
}
.GM_Event__intro__content__data .GM__button .GM__button__arrow {
  margin-left: 2em;
}
.GM_Event__intro__content__data h1 {
  font-size: 3rem;
  padding: 1.2em;
  line-height: 1;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data h1 {
    font-size: 2.2rem;
    padding: 0.8em;
  }
}
.GM_Event__intro__content__data .GM_Event__intro__content__data__info {
  width: 100%;
  display: flex;
  border-top: 1px solid #bcbaae;
  border-bottom: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data .GM_Event__intro__content__data__info {
    flex-direction: column;
    padding: 2em;
    border-bottom: 1px solid #bcbaae;
  }
}
.GM_Event__intro__content__data .GM_Event__intro__content__data__info span {
  width: 100%;
  font-size: 1.5rem;
  padding: 1.5em;
  font-weight: bold;
}
.GM_Event__intro__content__data .GM_Event__intro__content__data__info span:last-of-type {
  border-left: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data .GM_Event__intro__content__data__info span {
    border: 0 !important;
    padding: 0;
  }
}

.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__range {
  font-size: 2.6rem;
  padding: 1em 1.2em;
  border-bottom: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__range {
    font-size: 1.8rem;
    padding: 0.8em;
  }
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table {
  width: 100%;
  border-top: 1px solid #bcbaae;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__tableTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  padding: 24px max(24px, (100% - 1100px) / 2 + 24px) 18px max(24px, (100% - 1100px) / 2 + 24px);
  margin: 0;
  line-height: 1;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px max(24px, (100% - 1100px) / 2 + 24px);
  border-top: 1px solid #bcbaae;
  text-align: left;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row:first-child {
  border-top: 0;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row span {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row__book {
  text-align: right;
}
.GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row__book a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  white-space: nowrap;
  font-size: 1.35rem;
}
@media (max-width: 820px) {
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__tableTitle {
    font-size: 1.4rem;
    padding: 18px 16px 12px 16px;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row span::before {
    content: attr(data-label);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6f6d63;
    font-weight: 700;
    flex-shrink: 0;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__row__book a {
    font-size: 1.1rem;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__cell {
    gap: 8px;
  }
  .GM_Event__intro__content__data--multi .GM_Event__intro__content__data__table__icon {
    width: 14px;
    height: 14px;
  }
}

.GM_Event__content__text {
  width: 100%;
  margin: auto;
  display: flex;
  padding: 25px 15px;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .GM_Event__content__text {
    flex-direction: column;
    padding: 4vh 0;
  }
}
.GM_Event__content__text .GM__title {
  width: 100%;
  font-size: 3.6rem;
  text-transform: none;
  margin-bottom: 0.6em;
}

.GM_Event__content__info {
  width: 100%;
  max-width: 560px;
  padding: 0 45px 0 25px;
  border-right: 1px solid #b3b2a5;
}
.GM_Event__content__text--noEvents .GM_Event__content__info {
  max-width: 840px;
  margin: auto;
  border: 0;
}
.GM_Event__content__info p {
  font-size: 1.15rem;
  line-height: 1.6;
}

.GM_Event__content__events {
  width: 100%;
  padding-left: 25px;
}
@media (max-width: 820px) {
  .GM_Event__content__events {
    padding-left: 0;
  }
}
@media (max-width: 820px) {
  .GM_Event__content__events {
    max-width: none;
  }
  .GM_Event__content__events .GM__title {
    padding: 25px 25px 0 25px;
  }
  .GM_Event__content__events .GM_EventList__events__event:first-child .GM_EventList__events__event__content {
    padding: 0;
  }
}
.GM_Event__content__events .GM_EventList__events__event__column {
  font-size: 0.95rem;
}
.GM_Event__content__events .GM_EventList__content__button {
  display: none;
}

.GM_Event__upcoming {
  text-align: center;
}
@media (max-width: 820px) {
  .GM_Event__upcoming .GM__title {
    font-size: 3.4rem;
  }
}
.GM_Event__upcoming h1 {
  margin-bottom: 8vh;
  margin-top: 8vh;
}
@media (max-width: 820px) {
  .GM_Event__upcoming h1 {
    margin-top: 0;
  }
}

.GM_Event__upcoming__events {
  width: 100%;
  display: flex;
  border-top: 1px solid #cccabd;
}

.GM_Event__upcoming__events__wrapper {
  width: 100%;
  max-width: 1250px;
  flex-shrink: 0;
  display: flex;
}

.GM_Event__upcoming__events__wrapper__scrollable {
  width: 100%;
  display: flex;
  overflow: hidden;
}
@media (max-width: 820px) {
  .GM_Event__upcoming__events__wrapper__scrollable {
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-points-x: repeat(80vw);
    scroll-snap-align: center;
  }
}

.GM_Event__upcoming__events__arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .GM_Event__upcoming__events__arrow {
    display: none;
  }
}
.GM_Event__upcoming__events__arrow svg {
  color: #323232;
}
.GM_Event__upcoming__events__arrow:first-child {
  border-right: 1px solid #cccabd;
}
.GM_Event__upcoming__events__arrow:last-child {
  border-left: 1px solid #cccabd;
}

.GM_Event__upcoming__events__event {
  width: 100%;
  height: 100%;
  max-width: 625px;
  flex-shrink: 0;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 820px) {
  .GM_Event__upcoming__events__event {
    max-width: 80vw;
    border-right: 1px solid #cccabd;
  }
}
.GM_Event__upcoming__events__event:nth-of-type(2) {
  border-right: 1px solid #cccabd;
}

.GM_Event__upcoming__events__event__content {
  width: 100%;
  height: 100%;
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.GM_Event__upcoming__events__event__content h1 {
  margin: 0;
}

.GM_Event__upcoming__events__event__content__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .GM_Event__upcoming__events__event__content__info {
    margin-top: 25px;
  }
}
.GM_Event__upcoming__events__event__content__info span {
  width: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.GM_Event__upcoming__events__event__content__info span:last-child {
  justify-content: flex-end;
}
.GM_Event__upcoming__events__event__content__info span svg {
  max-width: 24px;
  margin-right: 10px;
}

.GM_Ensembler__intro {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
}
.GM_Ensembler__intro > .GM__title {
  position: relative;
  z-index: 2;
  color: #323232;
  font-size: 5.6rem;
  margin-top: 12vh;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro > .GM__title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 6vh 0;
  }
}

.GM_Ensembler__intro__bg {
  width: 100%;
  height: 100%;
  background: #e8e3df;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.GM_Ensembler__intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.GM_Ensembler__intro__content {
  width: 100%;
  background: #f5f3ef;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 2;
  top: 0;
  text-align: center;
  padding: 35px;
  margin-top: 10vh;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content {
    padding: 0;
    margin-top: 0;
  }
}
.GM_Ensembler__intro__content img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  margin-top: -16vh;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content img {
    width: 100vw;
    margin-top: 0;
  }
}

.GM_Ensembler__intro__content__top {
  width: 100%;
  display: flex;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__top {
    flex-direction: column;
    align-items: flex-end;
  }
}

.GM_Ensembler__intro__content__top__title {
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__top__title {
    padding: 0;
  }
}

.GM_Ensembler__intro__content__top__share .dropdown-menu__dropdown {
  width: 150px;
  background: #FFF;
  left: auto;
  right: 0;
  top: 40px;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__top__share:first-child {
    display: none;
  }
}

.GM_Ensembler__intro__content__label {
  position: relative;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  margin: 25px 0;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__label {
    font-size: 1.4rem;
    margin-top: 8px;
    margin-bottom: 5px;
  }
}

.GM_Ensembler__intro__content__data {
  width: 100%;
  border: 1px solid #bcbaae;
  border-bottom: 0;
  margin-top: 4em;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__data {
    margin-top: 0;
  }
}
.GM_Ensembler__intro__content__data .GM__button {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 2rem;
  background: #efede0;
}
.GM_Ensembler__intro__content__data .GM__button[disabled] {
  background-color: transparent;
}
.GM_Ensembler__intro__content__data .GM__button .GM__button__arrow {
  margin-left: 2em;
}
.GM_Ensembler__intro__content__data h1 {
  font-size: 3rem;
  padding: 1.2em;
  line-height: 1;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__data h1 {
    font-size: 2.2rem;
    padding: 0.8em;
  }
}
.GM_Ensembler__intro__content__data .GM_Ensembler__intro__content__data__info {
  width: 100%;
  display: flex;
  border-top: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__data .GM_Ensembler__intro__content__data__info {
    flex-direction: column;
    padding: 2em;
  }
}
.GM_Ensembler__intro__content__data .GM_Ensembler__intro__content__data__info span {
  width: 100%;
  font-size: 1.5rem;
  padding: 1.5em;
  font-weight: bold;
}
.GM_Ensembler__intro__content__data .GM_Ensembler__intro__content__data__info span:last-of-type {
  border-left: 1px solid #bcbaae;
}
@media (max-width: 820px) {
  .GM_Ensembler__intro__content__data .GM_Ensembler__intro__content__data__info span {
    border: 0 !important;
    padding: 0;
  }
}

.GM_Ensembler__content__text {
  width: 100%;
  margin: auto;
  display: flex;
  padding: 4vh 15px;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .GM_Ensembler__content__text {
    flex-direction: column;
    padding: 0 0;
  }
}
.GM_Ensembler__content__text .GM__title {
  font-size: 4rem;
  text-transform: none;
  text-align: left;
}
@media (max-width: 820px) {
  .GM_Ensembler__content__text .GM__title {
    margin: 0;
  }
}

.GM_Ensembler__content__info {
  width: 100%;
  max-width: 560px;
  padding: 0 45px 0 25px;
  border-right: 1px solid #b3b2a5;
}
.GM_Ensembler__content__text--noEvents .GM_Ensembler__content__info {
  max-width: 840px;
  margin: auto;
  border: 0;
}
@media (max-width: 820px) {
  .GM_Ensembler__content__info {
    padding: 0 10px;
    margin-top: 25px;
  }
}
.GM_Ensembler__content__info p {
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: left;
}

.GM_Ensembler__content__border {
  width: 1px;
  background: #b3b2a5;
  align-self: stretch;
}
@media (max-width: 820px) {
  .GM_Ensembler__content__border {
    display: none;
  }
}

.GM_Ensembler__content__events {
  width: 100%;
  padding-left: 25px;
}
@media (max-width: 820px) {
  .GM_Ensembler__content__events {
    max-width: none;
    margin-top: 25px;
  }
  .GM_Ensembler__content__events .GM__title {
    padding: 0 10px;
  }
  .GM_Ensembler__content__events .GM_EnsemblerList__events__event:first-child .GM_EnsemblerList__events__event__content {
    padding: 0;
  }
}
.GM_Ensembler__content__events .GM_EnsemblerList__events__event__column {
  font-size: 0.95rem;
}
.GM_Ensembler__content__events .GM_EnsemblerList__content__button {
  display: none;
}

@media (max-width: 820px) {
  .GM_Ensembler__upcoming .GM__title {
    font-size: 3.4rem;
  }
}
.GM_Ensembler__upcoming h1 {
  margin-bottom: 8vh;
  margin-top: 8vh;
}
@media (max-width: 820px) {
  .GM_Ensembler__upcoming h1 {
    margin-top: 0;
  }
}

.GM_Ensembler__upcoming__events {
  width: 100%;
  display: flex;
  border-top: 1px solid #cccabd;
}

.GM_Ensembler__upcoming__events__wrapper {
  width: 100%;
  flex-shrink: 0;
  display: flex;
}

.GM_Ensembler__upcoming__events__wrapper__scrollable {
  width: 100%;
  display: flex;
  overflow: hidden;
}
@media (max-width: 820px) {
  .GM_Ensembler__upcoming__events__wrapper__scrollable {
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-points-x: repeat(80vw);
    scroll-snap-align: center;
  }
}

.GM_Ensembler__upcoming__events__arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .GM_Ensembler__upcoming__events__arrow {
    display: none;
  }
}
.GM_Ensembler__upcoming__events__arrow svg {
  color: #bbbaae;
}
.GM_Ensembler__upcoming__events__arrow:hover {
  background: #eeede1;
  cursor: pointer;
  border: 0 !important;
}
.GM_Ensembler__upcoming__events__arrow:hover:first-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.GM_Ensembler__upcoming__events__arrow:hover:last-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.GM_Ensembler__upcoming__events__arrow:first-child {
  border-right: 1px solid #cccabd;
}
.GM_Ensembler__upcoming__events__arrow:last-child {
  border-left: 1px solid #cccabd;
}

.GM_Ensembler__upcoming__events__event {
  width: 100%;
  flex-shrink: 0;
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 820px) {
  .GM_Ensembler__upcoming__events__event {
    max-width: 80vw;
    border-right: 1px solid #cccabd;
  }
}
.GM_Ensembler__upcoming__events__event:hover {
  background: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.GM_Ensembler__upcoming__events__event:nth-of-type(2) {
  border-right: 1px solid #323232;
}

.GM_Ensembler__upcoming__events__event__content {
  width: 100%;
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.GM_Ensembler__upcoming__events__event__content h1 {
  margin: 0;
}

.GM_Ensembler__upcoming__events__event__content__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.GM__Ensembler__members {
  width: 100%;
  margin: 14vh auto;
}
@media (max-width: 820px) {
  .GM__Ensembler__members {
    margin: 4vh auto;
    flex-direction: column;
  }
}
.GM__Ensembler__members .GM__title {
  font-size: 4rem;
  text-transform: none;
  text-align: left;
}
@media (max-width: 820px) {
  .GM__Ensembler__members .GM__title {
    text-align: center;
    margin-bottom: 10px;
  }
}

.GM__Ensembler__members__buttons {
  width: 100%;
  max-width: 560px;
  padding: 0 45px 0 40px;
  margin-right: 6px;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__buttons {
    width: 100%;
    max-width: 100%;
    padding-right: 8px;
    padding-left: 8px;
  }
}
.GM__Ensembler__members__buttons > .GM__title {
  margin-top: 0;
}

.GM__Ensembler__members__member {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  padding: 25px;
  margin-bottom: 4px;
}
.GM__Ensembler__members__member--active {
  background: rgba(0, 0, 0, 0.05);
}
.GM__Ensembler__members__member svg {
  width: 100%;
  height: auto;
  max-width: 20px;
}

.GM__Ensembler__members__member__text {
  width: 100%;
  text-align: left;
  padding-right: 25px;
}
.GM__Ensembler__members__member__text h2 {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.GM__Ensembler__members__member__text h3 {
  margin: 0;
  opacity: 0.6;
  font-weight: 400;
}

.GM__Ensembler__members__member__badge {
  display: inline-block;
  background: #9B482B;
  color: #f5f3ef;
  padding: 7px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transform: rotate(-2deg);
  flex-shrink: 0;
}

.GM__Ensembler__members__details {
  position: sticky;
  top: calc(var(--gm-menu-content-height, 0px) + 12px);
  align-self: flex-start;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__details {
    max-width: 100%;
  }
}

.GM__Ensembler__members__member_info {
  width: 100%;
  max-width: 750px;
  padding: 0 25px 50px 35px;
  border-left: 1px solid #b3b2a5;
  display: none;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__member_info {
    padding: 15px;
    border-left: 0;
    margin-top: 25px;
  }
}
.GM__Ensembler__members__member_info.GM__Ensembler__members__member_info--active {
  display: block;
}
.GM__Ensembler__members__member_info p {
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: left;
}

.GM__Ensembler__members__member_info__header {
  width: 100%;
  display: flex;
  text-align: left;
  align-items: center;
}
.GM__Ensembler__members__member_info__header h2 {
  font-size: 3.6rem;
  line-height: 1;
  max-width: 350px;
  margin: 0;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__member_info__header h2 {
    font-size: 2.3rem;
  }
}
.GM__Ensembler__members__member_info__header h3 {
  width: 100%;
  margin: 0 0 10px 0;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__member_info__header h3 {
    font-size: 1rem;
  }
}

.GM__Ensembler__members__member_info__image {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
}
@media (max-width: 820px) {
  .GM__Ensembler__members__member_info__image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    margin-right: 10px;
  }
}
.GM__Ensembler__members__member_info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.GM__Ensembler__info {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  border-top: 1px solid #d8d7c9;
  padding-bottom: 8vh;
}
@media (max-width: 820px) {
  .GM__Ensembler__info .GM__Ensembler__info__content {
    flex-direction: column;
    padding: 25px;
  }
  .GM__Ensembler__info .GM__Ensembler__info__content .col {
    max-width: 100%;
  }
}
.GM__Ensembler__info .GM__title {
  text-transform: none;
  font-size: 4rem;
  text-align: left;
}
@media (max-width: 820px) {
  .GM__Ensembler__info .GM__title {
    margin: 4vh 0;
  }
}
.GM__Ensembler__info .GM__button {
  background: #efede0;
  font-size: 1.4rem;
}
.GM__Ensembler__info .GM__Ensembler__info__content__press {
  border-left: 1px solid #d8d7c9;
  padding-left: 45px;
}
@media (max-width: 820px) {
  .GM__Ensembler__info .GM__Ensembler__info__content__press {
    max-width: 100%;
    padding-left: 0;
    border-left: 0;
    margin-top: 35px;
  }
}
.GM__Ensembler__info .GM__Ensembler__info__contact_person {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 1.2rem;
}
.GM__Ensembler__info .GM__Ensembler__info__contact_person a {
  text-decoration: none;
  color: #000;
  margin-top: 4px;
}

.GM_Projects {
  width: 100%;
  padding-bottom: 8vh;
}

.GM_Projects__header {
  width: 100%;
  padding: 10vh 15px;
  background: #9b482b;
  color: #e5e3d3;
  text-align: center;
}

.GM_Projects__content {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .GM_Projects__content {
    flex-direction: column;
  }
}

.GM_Projects__content__menu {
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  max-width: 440px;
  position: sticky;
  top: 90px;
}
@media (max-width: 820px) {
  .GM_Projects__content__menu {
    max-width: none;
    position: static;
  }
}

.GM_Projects__content__menu__item {
  width: 100%;
  padding: 26px 32px;
  display: flex;
  border-right: 1px solid #bcbaad;
  border-bottom: 1px solid #bcbaad;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
.GM_Projects__content__menu__item--active {
  background: rgba(0, 0, 0, 0.05);
}
.GM_Projects__content__menu__item svg {
  width: 100%;
  max-width: 24px;
  height: 24px;
}
.GM_Projects__content__menu__item span {
  width: 100%;
  font-size: 1.5rem;
}

.GM_Projects__content__text {
  width: 100%;
  max-width: 900px;
  padding: 25px;
  margin: 0 auto;
  padding: 8vh 0;
}
@media (max-width: 820px) {
  .GM_Projects__content__text {
    padding: 25px;
  }
}
.GM_Projects__content__text > img {
  width: 100%;
  margin: auto;
}
.GM_Projects__content__text .GM__title {
  line-height: 1;
  font-size: 6rem;
  text-transform: none;
  margin-top: 10px;
}
@media (max-width: 820px) {
  .GM_Projects__content__text .GM__title {
    font-size: 3rem !important;
  }
}

.GM_Projects__content__text__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}

.GM_Projects__content__text__info__intro {
  font-size: 1.6rem;
  font-weight: bold;
}

.GM_Projects__content__text__wysiwyg {
  font-size: 1.2rem;
  line-height: 1.6;
}
.GM_Projects__content__text__wysiwyg h1, .GM_Projects__content__text__wysiwyg h2, .GM_Projects__content__text__wysiwyg h3, .GM_Projects__content__text__wysiwyg h4, .GM_Projects__content__text__wysiwyg h5, .GM_Projects__content__text__wysiwyg h6 {
  line-height: 1.1;
}
.GM_Projects__content__text__wysiwyg h1 {
  font-size: 3.4rem;
}
.GM_Projects__content__text__wysiwyg img {
  max-width: 100%;
}

.GM_Projects__content__buttons {
  width: 100%;
  max-width: 800px;
  display: flex;
  margin: auto;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .GM_Projects__content__buttons {
    flex-wrap: wrap;
  }
}
.GM_Projects__content__buttons .GM__button {
  max-width: 400px;
  font-size: 1.3rem;
}
.GM_Projects__content__buttons .GM__button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.GM__About {
  width: 100%;
}

.GM__About__header {
  width: 100%;
  padding: 9vh 25px;
  text-align: center;
}
@media (max-width: 820px) {
  .GM__About__header {
    padding: 50px 25px 0 25px;
  }
}
@media (max-width: 820px) {
  .GM__About__header h1 {
    text-align: left;
  }
}

.GM__About__intro {
  width: 100%;
  padding: 10vh 15px;
  background: #602c1b;
  text-align: center;
}
.GM__About__intro p {
  width: 100%;
  max-width: 1100px;
  font-size: 1.6rem;
  color: #f5f3ef;
  margin: auto;
  font-weight: 600;
}

.GM__About__content {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vh 15px;
}
@media (max-width: 820px) {
  .GM__About__content {
    flex-direction: column;
  }
}
.GM__About__content h1 {
  font-size: 3.6rem;
  line-height: 1.2;
}
.GM__About__content h1:first-child {
  margin-top: 0;
}
.GM__About__content p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.GM__About__content p:first-child {
  margin-top: 0;
}
.GM__About__content .GM__About__content_separator {
  width: 1px;
  background-color: #bcbaad;
  display: block;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0 50px;
}
@media (max-width: 820px) {
  .GM__About__content .GM__About__content_separator {
    display: none;
  }
}

.GM__About__content__left {
  width: 100%;
  max-width: 500px;
}

.GM__About__content__right {
  width: 100%;
  max-width: 500px;
}

.GM__Contact {
  width: 100%;
  padding-bottom: 8vh;
}

.GM__Contact__group {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 10vh;
  padding: 0 25px;
}
.GM__Contact__group h2 {
  font-size: 3rem;
}

.GM__Contact__group__people {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.GM__Contact__group__people__person {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 25px;
  gap: 5px;
}
.GM__Contact__group__people__person a {
  color: inherit;
  text-decoration: none;
}

.GM_Blogg__header {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.GM_Blogg__header img {
  width: 100%;
  max-height: 60vh;
  height: 100%;
  object-fit: cover;
}
.GM_Blogg .GM_Blogg__topbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 25px;
}
.GM_Blogg .GM_Blogg__topbar .GM__button--orange {
  padding-left: 0;
}
.GM_Blogg__content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: -8vh;
  background: #f5f3ef;
  position: relative;
  z-index: 10;
}
.GM_Blogg__content__text {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.GM_Blogg__content__text .GM__title {
  width: 100%;
  word-wrap: break-word;
}
@media (max-width: 820px) {
  .GM_Blogg__content__text .GM__title {
    font-size: 3rem !important;
  }
}
.GM_Blogg__content__author {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px;
  margin-top: 7vh;
  margin-bottom: 7vh;
}
.GM_Blogg__content__author img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.GM_Blogg__content__author__text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.GM_Blogg__content__author__text .GM__subtitle {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.GM_Blogg__content__author__text .GM__title {
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 1050px) {
  .hide-large-tablet {
    display: none;
  }
}

@media (max-width: 820px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 1050px) {
  .hide-large-desktop {
    display: none !important;
  }
}

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