@charset "UTF-8";
/* Theme Name: Linköpings Innersta
Author: UCS Mindbite
Author URI: https://ucsmindbite.se
Version: 1.0
 */
/*
VARIABLER

Variabler som återkommer. Framförallt responsiva storlekar.

 */
:root {
  --font-theme: Poppins, sans-serif;
  --font-text: Figtree, sans-serif;
  --font-handwritten: Kalam, sans-serif;
  --color-lightpink: #ED788E;
  --color-pink: #E84261;
  --color-blue: #3F5B7B;
  --color-darkblue: #3A516E;
  --color-darkestblue: #2C4564;
  --breakpoint-sm: 35.5rem;
  --breakpoint-md: 48rem;
  --breakpoint-lg: 64rem;
  --breakpoint-xl: 85.375rem;
}

/*
MIXINS

Här samlas olika SCSS-funktioner som kan inkluderas i övriga filer med @include.
https://sass-lang.com/documentation/at-rules/mixin

*/
/* GENERAL
Generella regler och marginaler, samt resets
 */
html {
  font-size: 100%;
  scroll-padding-top: 72px;
}
@media all and (min-width: 64rem) {
  html {
    scroll-padding-top: 88px;
  }
}
@media all and (min-width: 85.375rem) {
  html {
    scroll-padding-top: 120px;
  }
}

html, body {
  overscroll-behavior: none;
}

* {
  border: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  outline: 0;
  padding: 0;
  text-rendering: auto;
}

body {
  box-sizing: border-box;
  color: #1d1d1d;
  overflow-x: hidden;
}
@media all and (max-width: 63.99rem) {
  body.overlay-active {
    height: 100vh;
    overflow: hidden;
  }
}

#main {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.alignleft,
.alignright {
  height: auto;
  max-width: 47%;
}

.alignnone {
  float: none;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.aligncenter {
  display: block;
  margin: 1.5rem auto;
}

.mobile-only {
  display: none;
}
@media all and (max-width: 63.99rem) {
  .mobile-only {
    display: block;
  }
}

/* Generella marginaler */
#main {
  position: relative;
}

.container {
  margin: auto;
  max-width: calc(1360px + 3.75rem + 3.75rem);
  padding: 0 1.25rem;
  position: relative;
  width: 100%;
}
@media all and (min-width: 48rem) {
  .container {
    padding: 0 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .container {
    padding: 0 3.75rem;
  }
}
@media all and (min-width: 99rem) {
  .container {
    padding: 0 7.25rem;
  }
}

@media all and (min-width: 64rem) {
  .container--post {
    max-width: calc(1100px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--post {
    max-width: calc(1100px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--narrow {
    max-width: calc(1260px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--narrow {
    max-width: calc(1260px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--store {
    max-width: calc(1190px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--store {
    max-width: calc(1190px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--cta {
    max-width: calc(1364px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--cta {
    max-width: calc(1364px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--wide {
    max-width: calc(1540px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--wide {
    max-width: calc(1540px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--menu {
    max-width: calc(1710px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--menu {
    max-width: calc(1710px + 7.25rem + 7.25rem);
  }
}

@media all and (min-width: 64rem) {
  .container--text {
    max-width: calc(812px + 3.75rem + 3.75rem);
  }
}
@media all and (min-width: 99rem) {
  .container--text {
    max-width: calc(812px + 7.25rem + 7.25rem);
  }
}

@media all and (max-width: 63.99rem) {
  .container--carousel {
    padding: 0;
  }
}

.layout {
  padding: 2rem 0;
}
@media all and (min-width: 64rem) {
  .layout {
    padding: 3.75rem 0;
  }
}

/*
.blog .layout:first-child,
.page:not(.home) .layout:first-child {
  padding-top: calc(7.6vw + 2rem);
  @media all and (min-width: $sm-min) {
    padding-top: calc(32px + 2rem);
  }
  @media all and (min-width: $lg-min) {
    padding-top: 48px;
  }
}
 */
.button-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
}

.theme-blue {
  background-color: #3A516E;
}

.theme-white {
  background-color: #fff;
}
.shape {
  background-image: url("assets/img/shape-left-bottom.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 42% auto;
}
@media all and (min-width: 108.75rem) {
  .shape {
    background-size: 823px auto;
  }
}

.theme-lightgray {
  background-color: #f8f8f8;
}
.overlay {
  position: relative;
}
.overlay::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.is-inverted {
  color: #fff;
}

.visually-hidden,
.screen-reader-text {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media all and (max-width: 47.95rem) {
  .mobile-hidden {
    display: none;
  }
}

@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .tablet-hidden {
    display: none;
  }
}

@media all and (min-width: 64rem) {
  .desktop-hidden {
    display: none;
  }
}

section {
  position: relative;
}

body,
input,
textarea,
button {
  font-family: "Figtree", sans-serif;
}

.facetwp-facet .facetwp-radio,
.facetwp-load-more,
.forminator-button,
.forminator-button-submit,
.button {
  border-radius: 0.5rem;
  display: inline-block;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.31;
  padding: 0.5rem 1.875rem;
  text-align: center;
  text-decoration: none;
}
@media all and (min-width: 85.375rem) {
  .facetwp-facet .facetwp-radio,
  .facetwp-load-more,
  .forminator-button,
  .forminator-button-submit,
  .button {
    min-width: 172px;
    padding: 0.625rem 1.875rem;
  }
}

.button--small {
  font-size: 0.875rem;
  min-width: 145px;
  padding: 0.25rem 1rem;
}

button,
a {
  cursor: pointer;
}

.button--white,
.theme-pink .button--filled {
  background: #fff;
  color: #E84261;
}

.button--ghost {
  color: #E84261;
  outline: 1px solid #E84261;
}

.theme-blue .button--filled,
.layout .theme-blue .button--filled {
  background: #fff;
  color: #3A516E;
}

.button--blue,
.forminator-button-submit {
  background: #2C4564;
  color: #fff;
}

.facetwp-radio,
.facetwp-load-more,
.button--pink,
.theme-white .button--filled,
.theme-lightgray .button--filled {
  background: #E84261;
  color: #fff;
}

.is-inverted .button--ghost {
  background: transparent;
  color: #fff;
  outline: 1px solid #fff;
}

.button--external::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f08e";
  margin-left: 1em;
}

.heading.heading--footer {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.heading {
  font-family: "Poppins", sans-serif;
}

.heading--primary {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media all and (min-width: 64rem) {
  .heading--primary {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .heading--primary {
    font-size: 2.875rem;
    line-height: 1.13;
  }
}

.heading--secondary {
  font-size: 1.5rem;
  line-height: 1.16;
  margin-bottom: 1.125rem;
}
@media all and (min-width: 64rem) {
  .heading--secondary {
    font-size: 2rem;
  }
}
@media all and (min-width: 85.375rem) {
  .heading--secondary {
    font-size: 2.25rem;
  }
}

@media all and (min-width: 85.375rem) {
  .single-post__title {
    font-size: 2.25rem;
    line-height: 1;
  }
}

.heading--tertiary {
  font-size: 1.125rem;
}
@media all and (min-width: 85.375rem) {
  .heading--tertiary {
    font-size: 1.25rem;
  }
}

.heading--contacts {
  font-family: "Kalam", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-template-page-member .theme-white .heading,
.page-template-page-member .theme-white .property-owners__heading, .page-template-page-member .theme-lightgray .heading,
.page-template-page-member .theme-lightgray .property-owners__heading {
  color: #2C4564;
}

.property-owners__heading {
  color: #E84261;
}

.entry-content p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.entry-content h2,
.entry-content h3 {
  color: #5E5E5E;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.entry-content a {
  color: #E84261;
  font-weight: 700;
  text-decoration: underline;
}

.page-template-page-member .entry-content h2,
.page-template-page-member .entry-content h3 {
  color: #1d1d1d;
}

@media all and (min-width: 64rem) {
  .preamble p {
    font-size: 1.25rem;
  }
}

.global-nav {
  background: #E84261;
  padding: 0.75rem 0;
}
@media all and (min-width: 64rem) {
  .global-nav {
    padding: 1.25rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .global-nav {
    padding: 1.625rem 0;
  }
}

ul a[target=_blank] {
  position: relative;
}

ul a[target=_blank]::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f08e";
  margin-left: 1em;
}

@media all and (min-width: 64rem) {
  .global-nav__menu-items--mobile {
    display: none !important;
  }
}

@media all and (max-width: 63.99rem) {
  .global-nav__menu-items--desktop {
    display: none !important;
  }
}

.container--menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.global-nav__branding {
  display: block;
  width: 64px;
}
@media all and (min-width: 85.375rem) {
  .global-nav__branding {
    width: 92px;
  }
}
.global-nav__branding img {
  height: auto;
  width: 100%;
}

.global-nav__toggle {
  margin: auto 0 auto auto;
}
@media all and (min-width: 64rem) {
  .global-nav__toggle {
    display: none;
  }
}

.global-nav__menu {
  align-items: center;
  background: #E84261;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  padding: 1.875rem 0 3.125rem 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: all 0.5s ease;
  width: 100vw;
}
@media all and (max-width: 63.99rem) {
  .global-nav__menu {
    overflow-y: auto;
  }
}
@media all and (min-width: 64rem) {
  .global-nav__menu {
    background: transparent;
    display: block;
    height: auto;
    margin: auto;
    opacity: 1;
    padding: 0;
    pointer-events: all;
    position: relative;
    width: auto;
  }
}
.global-nav__menu .menu-item {
  padding: 0.25rem 0;
  text-align: center;
}
@media all and (min-width: 25.75rem) {
  .global-nav__menu .menu-item {
    padding: 0.5rem 0;
  }
}

.sub-menu {
  display: none;
  list-style: none;
  padding-top: 0.25rem;
}
@media all and (min-width: 25.75rem) {
  .sub-menu {
    padding-top: 0.5rem;
  }
}

.menu-item-has-children > a::after {
  content: "\f107";
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
}
.menu-item-has-children > a.is-open::after {
  content: "\f106";
}

.global-nav__menu-branding {
  margin: auto auto 2.5rem auto;
}
@media all and (min-width: 64rem) {
  .global-nav__menu-branding {
    display: none;
  }
}

.global-nav__menu-items {
  list-style: none;
  margin-top: auto;
}
@media all and (min-width: 64rem) {
  .global-nav__menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-right: 1.875rem;
  }
}
@media all and (min-width: 64rem) {
  .global-nav__menu-items .menu-item {
    margin: 0 0.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .global-nav__menu-items .menu-item {
    margin: 0 1.125rem;
  }
}
@media all and (min-width: 99rem) {
  .global-nav__menu-items .menu-item {
    margin: 0 1.375rem;
  }
}
.global-nav__menu-items .menu-item a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
}
@media all and (min-width: 64rem) {
  .global-nav__menu-items .menu-item a {
    font-size: 1rem;
  }
}
@media all and (min-width: 85.375rem) {
  .global-nav__menu-items .menu-item a {
    font-size: 1.25rem;
  }
}

.global-nav__menu--open {
  opacity: 1;
  pointer-events: all;
}

.page-template-page-member .global-nav {
  background: #3A516E;
}

.global-nav__toggle--member {
  display: none;
}
@media all and (min-width: 64rem) {
  .global-nav__toggle--member {
    display: block;
  }
}

.site-header {
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999999;
}
@media all and (min-width: 64rem) {
  .site-header {
    transition: all 0.5s ease;
  }
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.navigation-overlay__wrapper {
  margin: auto 0;
}
@media all and (max-width: 63.99rem) {
  .navigation-overlay__wrapper {
    display: none;
  }
}

.navigation-overlay__container {
  height: 100%;
  max-width: 540px;
  pointer-events: all;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transform: translate(calc(100% + 10px), 0);
  -ms-transform: translate(calc(100% + 10px), 0);
  transform: translate(calc(100% + 10px), 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 1.25s cubic-bezier(0.79, 0.22, 0.17, 1);
  -moz-transition: 1.25s cubic-bezier(0.79, 0.22, 0.17, 1);
  transition: 1.25s cubic-bezier(0.79, 0.22, 0.17, 1);
}
.navigation-overlay__container.nav-active {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.menu-toggle {
  background: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 0;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  right: 3rem;
  top: 3rem;
}

.navigation-overlay__menu {
  background: #3A516E;
  justify-content: flex-end;
  list-style: none;
  max-height: 100vh;
  max-width: 540px;
  overflow-y: auto;
  padding: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.navigation-overlay__menu-items {
  list-style: none;
  margin: auto;
  text-align: center;
}
.navigation-overlay__menu-items .menu-item {
  margin: 0.9375rem 0;
}
.navigation-overlay__menu-items .menu-item a {
  color: #fff;
  display: block;
  font-size: 1.125rem;
  text-decoration: none;
}

.navigation-overlay__menu-branding {
  margin: 0 auto;
}

.navigation-overlay__menu .menu-item-has-children > a {
  position: relative;
}
.navigation-overlay__menu .menu-item-has-children > a::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-style: normal;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0.375rem;
}
@media all and (min-width: 85.375rem) {
  .navigation-overlay__menu .menu-item-has-children > a::after {
    top: 0.5rem;
  }
}
.navigation-overlay__menu .menu-item-has-children.open > a::after {
  content: "\f106";
}
.navigation-overlay__menu .sub-menu {
  display: none;
}

.hero-nav {
  background: #ED788E;
  display: none;
  padding: 1.25rem;
}
@media all and (min-width: 64rem) {
  .hero-nav {
    display: block;
  }
}
@media all and (min-width: 99rem) {
  .hero-nav {
    padding: 2rem;
  }
}

.hero-nav__menu {
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.hero-nav__menu .menu-item {
  margin: 0 0.75rem;
}
@media all and (min-width: 85.375rem) {
  .hero-nav__menu .menu-item {
    margin: 0 1.5rem;
  }
}
.hero-nav__menu .menu-item a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
}
@media all and (min-width: 85.375rem) {
  .hero-nav__menu .menu-item a {
    font-size: 1.125rem;
  }
}

.hero-nav--member {
  background: #f8f8f8;
  display: block;
}
@media all and (max-width: 63.99rem) {
  .hero-nav--member {
    padding: 0;
  }
}
@media all and (min-width: 64rem) {
  .hero-nav--member {
    background: #3F5B7B;
  }
}
.hero-nav--member .hero-nav__menu-wrapper {
  display: none;
}
@media all and (min-width: 64rem) {
  .hero-nav--member .hero-nav__menu-wrapper {
    display: block;
  }
}
.hero-nav--member .hero-nav__menu {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 63.99rem) {
  .hero-nav--member .hero-nav__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0.875rem;
  }
}
@media all and (max-width: 63.99rem) {
  .hero-nav--member .hero-nav__menu .menu-item {
    margin: 0 0 0.5rem 0;
  }
}
@media all and (min-width: 64rem) {
  .hero-nav--member .hero-nav__menu .menu-item {
    white-space: nowrap;
  }
}
@media all and (max-width: 63.99rem) {
  .hero-nav--member .hero-nav__menu .menu-item a {
    color: #707070;
    font-size: 1.125rem;
    text-transform: none;
  }
}

.hero-nav__toggle,
.post-filters__toggle {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: none;
  color: #707070;
  font-size: 1.25rem;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  width: 100%;
}
@media all and (min-width: 48rem) {
  .hero-nav__toggle,
  .post-filters__toggle {
    padding: 1.25rem 2.5rem;
  }
}
.hero-nav__toggle::after,
.post-filters__toggle::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f107";
}
.hero-nav__toggle.is-open::after,
.post-filters__toggle.is-open::after {
  content: "\f106";
}
@media all and (min-width: 64rem) {
  .hero-nav__toggle,
  .post-filters__toggle {
    display: none;
  }
}

.site-footer {
  background: #E84261;
  margin-bottom: -1px;
  overflow: hidden;
  padding: 2.5rem 0 0 0;
  position: relative;
}
@media all and (min-width: 1280px) {
  .site-footer {
    padding-bottom: 5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer {
    padding: 3.75rem 0 3rem 0;
  }
}
@media all and (min-width: 99rem) {
  .site-footer {
    padding-bottom: 7.5rem;
  }
}

@media all and (min-width: 25.75rem) and (max-width: 47.95rem) {
  .site-footer__container {
    max-width: 24rem;
  }
}
@media all and (min-width: 48rem) {
  .site-footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.site-footer__branding {
  margin: 0 0 2.5rem 0;
}
@media all and (min-width: 48rem) {
  .site-footer__branding {
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.site-footer__branding img {
  display: block;
  height: auto;
  margin: auto;
  width: 133px;
}
@media all and (min-width: 48rem) {
  .site-footer__branding img {
    margin: 0;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__branding img {
    width: 252px;
  }
}

@media all and (min-width: 35.5rem) and (max-width: 47.95rem) {
  .site-footer__container {
    max-width: 30rem;
  }
}
@media all and (min-width: 48rem) {
  .site-footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}

.site-footer__nav-column {
  margin: auto;
}
@media all and (min-width: 23.376rem) {
  .site-footer__nav-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 48rem) {
  .site-footer__nav-column {
    gap: 2.5rem;
    margin: 0;
    max-width: 50%;
    order: 2;
    width: auto;
  }
}
@media all and (min-width: 64rem) {
  .site-footer__nav-column {
    margin-left: 2.5rem;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__nav-column {
    gap: 5rem;
  }
}

.site-footer__nav {
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 23.376rem) {
  .site-footer__nav {
    width: 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__nav {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__nav {
    padding-right: 0;
  }
}

.site-footer__nav-menu {
  list-style: none;
}
.site-footer__nav-menu .menu-item {
  line-height: 1.625;
}
.site-footer__nav-menu .menu-item a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

@media all and (min-width: 48rem) {
  .site-footer__information {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-right: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .site-footer__information {
    -webkit-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-direction: column-reverse;
    justify-content: flex-end;
    max-width: 24.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__information {
    margin-right: 5rem;
    margin-top: 0;
    max-width: 22rem;
    padding-right: 0;
  }
}
@media all and (min-width: 108.75rem) {
  .site-footer__information {
    margin-right: 7.5rem;
  }
}
.site-footer__information p {
  line-height: 1.3;
  margin-bottom: 1.5em;
}

.site-footer__social {
  justify-content: flex-start;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5rem auto;
}
@media all and (min-width: 48rem) {
  .site-footer__social {
    justify-content: flex-start;
    margin: 1.25rem 0 0 0;
    order: 3;
    width: 100%;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__social {
    bottom: 0;
    left: 36.5rem;
    position: absolute;
  }
}
@media all and (min-width: 108.75rem) {
  .site-footer__social {
    left: 39rem;
  }
}
.site-footer__social .social-nav__item {
  margin: 0 3rem 0 0;
}
.site-footer__social .social-nav__item a {
  color: #fff;
  font-size: 1.625rem;
  text-decoration: none;
}
@media all and (min-width: 85.375rem) {
  .site-footer__social .social-nav__item a {
    font-size: 1.875rem;
  }
}

.site-footer__img {
  max-width: 1000px;
  pointer-events: none;
  position: relative;
  right: 40%;
  width: 140%;
}
@media all and (min-width: 35.5rem) {
  .site-footer__img {
    right: 30%;
    width: 130%;
  }
}
@media all and (min-width: 48rem) {
  .site-footer__img {
    left: auto;
    margin-left: auto;
    right: -1px;
    width: 100%;
  }
}
@media all and (min-width: 64rem) {
  .site-footer__img {
    margin-top: -5rem;
    max-width: 890px;
  }
}
@media all and (min-width: 1170px) {
  .site-footer__img {
    margin-top: -10rem;
  }
}
@media all and (min-width: 1280px) {
  .site-footer__img {
    bottom: 0;
    position: absolute;
    right: 0;
  }
}
.site-footer__img .clip-path-img {
  mask-image: url("assets/img/clip-mask-footer.svg");
}
.site-footer__img .clip-path-img::after {
  background-image: url("assets/img/clip-mask-footer-top.svg");
  background-size: auto;
  mask-image: url("assets/img/clip-mask-footer.svg");
}
.site-footer__img {
  /*
  left: -30%;
  margin-bottom: -25%;
  position: relative;
  width: 130%;
  @media all and (min-width: $md-min) {
    bottom: 0;
    left: auto;
    //position: absolute;
    margin-bottom: -5%;
    margin-left: auto;
    margin-top: -5%;
    right: 0;
    width: 46%;
  }
  @media all and (min-width: $lg-min) {
    margin-top: -7.5%;
    right: 0;
  }
  @media all and (min-width: 1170px) {
    margin-bottom: -7.5%;
    margin-top: 0;
    position: absolute;
  }
  @media all and (min-width: $xxxl-min) {
    margin-bottom: -147px;
    width: 889px;
  } */
}

.error404 .global-nav {
  background: #3A516E;
}

.page-not-found {
  background: #3A516E;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
@media all and (min-width: 48rem) {
  .page-not-found {
    padding: 6rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .page-not-found {
    padding: 10rem 0 16rem 0;
  }
}

@media all and (min-width: 25.75rem) {
  .page-not-found__content {
    padding: 0 10%;
  }
}

.page-not-found__heading,
.page-not-found__message {
  margin-bottom: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 15em;
}
@media all and (min-width: 85.375rem) {
  .page-not-found__heading,
  .page-not-found__message {
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 85.375rem) {
  .page-not-found__heading {
    margin-bottom: 1.25rem;
  }
}

.page-not-found__message {
  color: #f8f8f8;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.8px;
}
@media all and (min-width: 64rem) {
  .page-not-found__message {
    font-size: 1.25rem;
  }
}

.page-not-found__link-list {
  list-style: none;
  margin-top: 1.5rem;
}
@media all and (min-width: 48rem) {
  .page-not-found__link-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .page-not-found__link-list {
    margin-top: 4rem;
  }
}

.page-not-found__link-list-item {
  margin: 0 0 0.75rem 0;
}
@media all and (min-width: 48rem) {
  .page-not-found__link-list-item {
    margin: auto;
  }
}

.page-not-found__link {
  color: #fff;
  text-decoration: underline;
}
@media all and (min-width: 64rem) {
  .page-not-found__link {
    font-size: 1.25rem;
  }
}

.page-hero {
  background: #E84261;
  color: #fff;
  min-height: 60vw;
  padding: 3rem 0 9rem 0;
  position: relative;
}
@media all and (min-width: 35.5rem) {
  .page-hero {
    min-height: 250px;
  }
}
@media all and (min-width: 48rem) {
  .page-hero {
    padding: 5rem 0 5.9rem 0;
  }
}
@media all and (min-width: 64rem) {
  .page-hero {
    min-height: 320px;
  }
}
@media all and (min-width: 85.375rem) {
  .page-hero {
    min-height: 460px;
    padding: 8.43rem 0;
  }
}
.page-hero::after {
  aspect-ratio: 1.639;
  background: url("assets/img/shape-cerise-header.svg");
  background-size: cover;
  bottom: -8vw;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media all and (min-width: 35.5rem) {
  .page-hero::after {
    bottom: -32px;
    left: auto;
    right: 0;
    width: 400px;
  }
}
@media all and (min-width: 64rem) {
  .page-hero::after {
    bottom: -48px;
    width: 600px;
  }
}
@media all and (min-width: 85.375rem) {
  .page-hero::after {
    bottom: -68px;
    width: 855px;
  }
}

.page-hero__container {
  position: relative;
  z-index: 2;
}

@media all and (min-width: 48rem) {
  .page-hero__content {
    width: 64%;
  }
}
@media all and (min-width: 64rem) {
  .page-hero__content {
    max-width: 650px;
  }
}

@media all and (min-width: 64rem) {
  .page-hero__preamble {
    max-width: 560px;
  }
}
.page-hero__preamble a {
  color: inherit;
}
.page-hero__preamble + .button {
  margin-top: 1.875rem;
}
.page-hero__preamble + .button::after {
  content: none;
}

.page-hero__subheading {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.64px;
  line-height: 1.5;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
}
@media all and (min-width: 85.375rem) {
  .page-hero__subheading {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 1.25;
    margin-bottom: 0.625rem;
  }
}

.page-hero__preamble p {
  font-size: 1rem;
  line-height: 1.5;
}
@media all and (min-width: 85.375rem) {
  .page-hero__preamble p {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.page-hero__heading {
  margin: 0.9375rem 0;
}
@media all and (min-width: 85.375rem) {
  .page-hero__heading {
    margin: 1.25rem 0;
  }
}

.page-hero--member {
  background: #3A516E;
  position: relative;
  z-index: 1;
}
.page-hero--member::after {
  background-image: url("assets/img/shape-blue-header.svg");
}

.hero--front {
  background: #E84261;
  margin-bottom: -1px;
  /*
  padding: 6rem 0 0 0;
  @media all and (min-width: $md-min) {
    overflow: hidden;
    padding-top: 12.5vw;
  }
  @media all and (min-width: $lg-min) {
    padding: 11.7vw 0 0 0;
  }
  @media all and (min-width: $xl-min) {
    padding: 8vw 0 0 0;
  }
  @media all and (min-width: $xxl-min) {
    padding-top: 15rem;
  } */
}
@media all and (max-width: 47.95rem) {
  .hero--front {
    min-height: calc(100vh - 70px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 2.5rem;
  }
}
@media all and (min-width: 48rem) {
  .hero--front {
    overflow: hidden;
    padding-top: 12.5vw;
  }
}
@media all and (min-width: 64rem) {
  .hero--front {
    padding: 11.7vw 0 0 0;
  }
}
@media all and (min-width: 85.375rem) {
  .hero--front {
    padding: 8vw 0 0 0;
  }
}
@media all and (min-width: 99rem) {
  .hero--front {
    padding-top: 15rem;
  }
}

.hero__container {
  max-width: calc(1364px + 14.5rem);
}
@media all and (max-width: 47.95rem) {
  .hero__container {
    margin: auto;
    padding: 0 3.5rem;
  }
}

@media all and (min-width: 48rem) {
  .hero__content {
    position: absolute;
  }
}
@media all and (min-width: 99rem) {
  .hero__content {
    padding-top: 1.25rem;
  }
}

.hero__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media all and (min-width: 64rem) {
  .hero__heading {
    font-size: 5rem;
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 85.375rem) {
  .hero__heading {
    font-size: 7.875rem;
    margin-bottom: 2.625rem;
  }
}
.hero__heading span {
  display: block;
}

.hero__heading span {
  font-weight: 600;
}
@media all and (min-width: 85.375rem) {
  .hero__heading span {
    font-size: 0.92em;
    padding-top: 0.25rem;
  }
}

.hero__preamble {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 48rem) {
  .hero__preamble {
    margin-bottom: 4.375rem;
  }
}
@media all and (min-width: 64rem) {
  .hero__preamble {
    margin-bottom: 1.4rem;
  }
}
@media all and (min-width: 85.375rem) {
  .hero__preamble {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.hero__preamble p {
  font: inherit;
  font-family: "Poppins", sans-serif;
  line-height: inherit;
}

.hero__buttons {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 48rem) {
  .hero__buttons {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 25.75rem) {
  .hero__buttons .button {
    min-width: 8.75rem;
  }
}

.clip-path-img {
  mask-image: url("assets/img/clip-mask.svg");
  pointer-events: none;
  position: relative;
}
.clip-path-img::after {
  background-image: url("assets/img/clip-mask-top.svg");
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  mask-image: url("assets/img/clip-mask.svg");
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__img {
  left: -20%;
  max-width: 1060px;
  width: 120%;
}
@media all and (max-width: 47.95rem) {
  .hero__img {
    margin-bottom: 0;
  }
}
@media all and (min-width: 48rem) {
  .hero__img {
    left: auto;
    margin-left: auto;
    margin-top: 5.5vw;
    right: 0;
    width: 55%;
  }
}
@media all and (min-width: 64rem) {
  .hero__img {
    margin-top: 0;
  }
}
@media all and (min-width: 99rem) {
  .hero__img {
    bottom: -1px;
    width: 1066px;
  }
}

@media all and (max-width: 47.95rem) {
  .layout-cta {
    padding: 0;
  }
}
@media all and (min-width: 85.375rem) {
  .layout-cta {
    padding: 6.5rem 0;
  }
}
@media all and (max-width: 47.95rem) {
  .layout-cta > .container {
    padding: 0;
  }
}

.full-width-cta {
  overflow: hidden;
  padding: 2rem 1.25rem;
  position: relative;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .full-width-cta {
    margin: auto;
    padding: 3.125rem;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

@media all and (min-width: 64rem) {
  .full-width-cta__content {
    margin-left: auto;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 3rem;
  }
}
@media all and (min-width: 85.375rem) {
  .full-width-cta__content {
    padding: 4.5rem;
  }
}

@media all and (min-width: 64rem) {
  .full-width-cta__img {
    order: -1;
    width: 43%;
    -webkit-box-flex: 0 0 43%;
    -webkit-flex: 0 0 43%;
    -ms-flex: 0 0 43%;
    flex: 0 0 43%;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta__img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}

.full-width-cta__buttons {
  margin: 2rem 0;
}
@media all and (min-width: 64rem) {
  .full-width-cta__buttons {
    margin: 1.5rem 0 0 0;
  }
}

.full-width-cta__content-inner {
  position: relative;
}
@media all and (min-width: 64rem) {
  .full-width-cta__content-inner {
    z-index: 1;
  }
}

.full-width-cta--shape {
  background: #3A516E url("assets/img/shape-blue.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 200%;
}
@media all and (min-width: 48rem) {
  .full-width-cta--shape {
    border-radius: 1.25rem;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta--shape {
    background-image: none;
    border-radius: 0;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta--shape::after {
    background-image: url("assets/img/shape-cta.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
  }
}
.full-width-cta--shape .full-width-cta__img {
  border-radius: 1.25rem;
}
@media all and (min-width: 64rem) {
  .full-width-cta--shape .full-width-cta__img {
    border-radius: 0;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta--shape .full-width-cta__content {
    -webkit-box-flex: 0 0 57%;
    -webkit-flex: 0 0 57%;
    -ms-flex: 0 0 57%;
    flex: 0 0 57%;
  }
}
@media all and (min-width: 85.375rem) {
  .full-width-cta--shape .full-width-cta__content {
    padding: 7rem 8.5rem;
  }
}

.full-width-cta--regular {
  border-radius: 1.25rem;
}
@media all and (max-width: 47.95rem) {
  .full-width-cta--regular .full-width-cta__img {
    margin: 0 -1.25rem -2rem -1.25rem;
  }
}
@media all and (min-width: 48rem) {
  .full-width-cta--regular .full-width-cta__img {
    margin: 0 -3.125rem -3.125rem -3.125rem;
  }
}
@media all and (min-width: 64rem) {
  .full-width-cta--regular .full-width-cta__img {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin: 0;
  }
}

.full-width-cta.theme-white .heading {
  color: #E84261;
}

.carousel {
  list-style: none;
}
.carousel .slick-list {
  padding-right: 1.25rem;
}
.carousel .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
}

.carousel__item {
  height: auto;
  margin: 0 0 0 1.25rem;
  min-height: 100%;
  padding: 0;
}
@media all and (min-width: 64rem) {
  .carousel__item {
    margin: 0;
  }
}
.layout-shortcuts {
  background-color: #fff;
  background-image: url("assets/img/shape-cta-gray.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto 70vw;
}
@media all and (min-width: 35.5rem) {
  .layout-shortcuts {
    background-size: 140% auto;
  }
}
@media all and (min-width: 48rem) {
  .layout-shortcuts {
    background-size: 100% auto;
  }
}
@media all and (min-width: 85.375rem) {
  .layout-shortcuts {
    padding: 4rem 0;
  }
}
@media all and (min-width: 99rem) {
  .layout-shortcuts {
    background-position: left 40px;
  }
}

.layout-shortcuts--store {
  background-color: #f8f8f8;
  background-image: url("assets/img/shape-cta-white.svg");
}

.shortcuts__header {
  text-align: center;
}

.shortcuts__subheading {
  color: #2D2D2D;
  font-weight: 300;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
}
@media all and (min-width: 85.375rem) {
  .shortcuts__subheading {
    font-size: 1rem;
  }
}

.shortcuts__heading {
  color: #E84261;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media all and (min-width: 85.375rem) {
  .shortcuts__heading {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 3.25rem;
  }
}

@media all and (min-width: 64rem) {
  .shortcuts__list {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 85.375rem) {
  .shortcuts__list {
    gap: 2.5rem;
  }
}

.shortcuts__list-item-link {
  background-size: cover;
  border-radius: 1rem;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 20rem;
  justify-content: flex-end;
  overflow: hidden;
  padding: 2.5rem 0;
  position: relative;
  text-align: center;
  text-decoration: none;
}
@media all and (min-width: 25.75rem) {
  .shortcuts__list-item-link {
    aspect-ratio: 0.79;
    height: auto;
  }
}
@media all and (min-width: 85.375rem) {
  .shortcuts__list-item-link {
    padding: 1.875rem 0;
  }
}
.shortcuts__list-item-link::before {
  background: linear-gradient(181deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5019607843) 100%) 0% 0% no-repeat padding-box;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.shortcuts__list-item-heading {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media all and (min-width: 25.75rem) {
  .shortcuts__list-item-heading {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .shortcuts__list-item-heading {
    font-size: 1.25rem;
  }
}

.shortcuts__list-item-heading,
.shortcuts__list-item-button {
  position: relative;
}

ul .shortcuts__list-item a[target=_blank]::after {
  content: none;
}
ul .shortcuts__list-item a[target=_blank] .shortcuts__list-item-button::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f08e";
  margin-left: 1em;
}

.shortcuts__list-item-button {
  color: #424242;
  display: none;
}
@media all and (min-width: 85.375rem) {
  .shortcuts__list-item-button {
    display: inline-block;
    margin: 0.625rem auto 0 auto;
  }
}

@media all and (max-width: 47.95rem) {
  .layout-gift_card {
    padding: 0;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .layout-gift_card {
    background: #f8f8f8;
    padding: 8vw 0 2rem 0;
  }
}
@media all and (min-width: 64rem) {
  .layout-gift_card {
    padding-top: 10vw;
  }
}
@media all and (min-width: 1170px) {
  .layout-gift_card {
    padding-top: 7.9rem;
  }
}
@media all and (max-width: 47.95rem) {
  .layout-gift_card > .container {
    padding: 0;
  }
}

.gift-card {
  background: #f8f8f8 url("assets/img/shape-gift-card-grey.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #3A516E;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.gift-card__content {
  padding: 2rem;
}
@media all and (min-width: 48rem) {
  .gift-card__content {
    padding: 49px 63px 1rem 49px;
  }
}

.gift-card__heading {
  color: #ED788E;
  font-family: "Kalam", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}
@media all and (min-width: 35.5rem) {
  .gift-card__heading {
    font-size: 2.5rem;
  }
}

.gift-card__payoff {
  font-size: 1.5rem;
  line-height: 1.17;
}
@media all and (min-width: 35.5rem) {
  .gift-card__payoff {
    font-size: 2.5rem;
  }
}

.gift-card__img {
  /* left: 47%;
     max-width: 700px;
     overflow: hidden;
     padding-bottom: 1.5rem;
     position: relative;

     @include translate(-50%, 0);
     width: 110%;
  */
}
.gift-card__img img {
  max-width: 100%;
}

@media all and (min-width: 48rem) {
  .gift-card--full {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-position: right bottom;
    background-size: 90%;
    overflow: visible;
  }
}
@media all and (min-width: 48rem) {
  .gift-card--full .gift-card__content {
    padding: 2rem 0 4.64rem 2rem;
    width: 45%;
  }
}
@media all and (min-width: 64rem) {
  .gift-card--full .gift-card__content {
    padding-right: 0;
  }
}
@media all and (min-width: 1170px) {
  .gift-card--full .gift-card__content {
    padding-left: 3rem;
  }
}
@media all and (min-width: 85.375rem) {
  .gift-card--full .gift-card__content {
    padding: 2.25rem 0 5.5rem 5.9rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 1170px) {
  .gift-card--full .gift-card__heading {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 1170px) {
  .gift-card--full .gift-card__payoff {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 48rem) {
  .gift-card--full .gift-card__img {
    bottom: 5%;
    left: auto;
    padding-bottom: 0;
    position: absolute;
    right: 0;
    width: 65%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media all and (min-width: 85.375rem) {
  .gift-card--full .gift-card__img {
    bottom: 2.5rem;
    max-width: 773px;
    width: 773px;
  }
}

.content-columns .heading--secondary {
  color: #E84261;
}

.col-image img {
  border-radius: 1.25rem;
}

.content-columns__item {
  margin-bottom: 2rem;
}

@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .content-columns {
    margin: auto;
    max-width: 650px;
  }
}
@media all and (min-width: 64rem) {
  .content-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .content-columns {
    gap: 4.625rem;
  }
}
.content-columns .content-columns__column {
  max-width: 645px;
  -webkit-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .content-columns .content-columns__column {
    min-width: 543px;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .content-columns .content-columns__column {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: calc(50% - 1.5625rem);
  }
}

.content-columns--primary-left > :last-child,
.content-columns--primary-right > :first-child {
  max-width: 543px;
}

.page-template-page-member .content-columns .heading--secondary {
  color: #3A516E;
}

.contacts__heading {
  color: #3A516E;
  margin-bottom: 0.875rem;
}

.contact-list {
  width: 240px;
}
@media all and (min-width: 35.5rem) {
  .contact-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
  }
}
@media all and (min-width: 48rem) {
  .contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 48rem) {
  .layout-contacts .contact-list .contact-list__item {
    width: auto;
  }
}

.contact-list__item {
  margin-bottom: 1.25rem;
  overflow: hidden;
  width: 240px;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .contact-list__item {
    width: auto;
  }
}

.contact {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.contact__info {
  background: #3A516E;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.25;
  padding: 1.125rem 1.25rem;
  text-align: center;
}
@media all and (min-width: 64rem) {
  .contact__info {
    font-size: 0.875rem;
  }
}

.contact__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.375rem;
}
@media all and (min-width: 64rem) {
  .contact__name {
    font-size: 1.125rem;
  }
}

.contact__portrait {
  aspect-ratio: 0.91;
}
.contact__portrait img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.contact__email {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.contact__email,
.contact__phone {
  color: inherit;
  text-decoration: none;
}

@media all and (min-width: 48rem) {
  .body-text {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 64rem) {
  .body-text {
    gap: 1.5rem;
  }
}

.body-text__section {
  margin-bottom: 1.5rem;
}
@media all and (min-width: 48rem) {
  .body-text__section {
    margin-bottom: 0.25rem;
  }
}
.body-text__section .heading--secondary {
  color: #E84261;
}
.body-text__section .heading--tertiary {
  color: #5e5e5e;
  margin-bottom: 0.375rem;
}

.page-template-page-member .body-text__section .heading {
  color: #3A516E;
}

.body-text__section--full {
  grid-column: span 2;
}
@media all and (min-width: 64rem) {
  .body-text__section--full {
    margin-bottom: 0;
  }
}

.layout-board .heading--secondary {
  color: #E84261;
}

.board {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}
@media all and (min-width: 23.376rem) {
  .board {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 48rem) {
  .board {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (min-width: 64rem) {
  .board {
    grid-column-gap: 1rem;
    margin-top: 1.5rem;
  }
}

.page-template-page-member .layout-board .heading--secondary,
.page-template-page-member .board__member-title {
  color: #3A516E;
}

.board__member {
  font-size: 0.875rem;
}
@media all and (min-width: 48rem) {
  .board__member {
    border-bottom: 0.5px solid #1d1d1d;
    padding-bottom: 1rem;
  }
}
@media all and (min-width: 64rem) {
  .board__member {
    font-size: 1rem;
    padding-right: 0.75rem;
  }
}
.board__member:nth-last-child(-n+3) {
  border-bottom: none;
}

.board__member-title {
  color: #5e5e5e;
}

.board__member-title,
.board__member-name {
  display: block;
  font-weight: 600;
}

@media all and (min-width: 64rem) {
  .faq__questions {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 85.375rem) {
  .faq__questions {
    gap: 3.125rem;
  }
}

.faq__header {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 64rem) {
  .faq__header {
    margin-bottom: 3.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .faq__header {
    margin-bottom: 3.75rem;
  }
}

.faq__header .heading {
  color: #2C4564;
}

.faq__question {
  border-bottom: 1px solid #5e5e5e;
  margin-bottom: 1.25rem;
}

.faq__question-name {
  color: #5E5E5E;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 1.25rem;
  padding-right: 3.5rem;
  position: relative;
}
.faq__question-name::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
  color: #3F5B7B;
  content: "\f067";
  font-size: 1.375rem;
  position: absolute;
  right: 0;
}
.faq__question-name.active::after {
  content: "\f068";
}

.faq__question-answer {
  display: none;
  padding-bottom: 1.5rem;
  padding-right: 3.5rem;
}

.vcard {
  line-height: 1.5;
}
@media all and (min-width: 64rem) {
  .vcard .faq__question-name {
    padding-bottom: 1rem;
    padding-top: 0.25rem;
  }
  .vcard .faq__question-name::after {
    top: 0;
  }
}
.vcard .photo {
  margin-top: 1.5rem;
}
.vcard a {
  font-weight: normal;
}

@media all and (min-width: 64rem) {
  span.org {
    font-size: 1rem;
    white-space: nowrap;
  }
}

.form__preamble {
  margin-bottom: 2.5rem;
  margin-top: 1.125rem;
}
@media all and (min-width: 85.375rem) {
  .form__preamble {
    margin-bottom: 3rem;
  }
}

.form__preamble p {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media all and (max-width: 47.95rem) {
  .forminator-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 48rem) {
  .forminator-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
}
@media all and (min-width: 64rem) {
  .forminator-row {
    gap: 2.25rem;
  }
}

.forminator-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25rem;
}
@media all and (min-width: 48rem) {
  .forminator-row {
    margin-bottom: 2rem;
  }
}

@media all and (max-width: 47.95rem) {
  .forminator-col {
    margin-bottom: 1.25rem;
  }
  .forminator-col:last-child {
    margin: 0;
  }
}
@media all and (min-width: 48rem) {
  .forminator-col {
    -webkit-box-flex: 1 1 0;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
@media all and (max-width: 47.95rem) {
  .forminator-col-12 {
    width: 100%;
  }
}

.forminator-field {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.forminator-field a {
  color: #E84261;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.forminator-response-message {
  color: #E84261;
  display: block;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.forminator-error-message {
  color: #E84261;
  display: block;
  font-size: 0.75rem;
  margin: 0.75rem 0 0 0;
}

.forminator-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.forminator-input,
.forminator-textarea {
  border-radius: 1.125rem;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  width: 100%;
}
@media all and (min-width: 64rem) {
  .forminator-input,
  .forminator-textarea {
    padding: 1.5rem;
  }
}

.forminator-field-checkbox .forminator-label {
  display: none;
}

.forminator-button-submit {
  max-width: 172px;
  width: auto;
}

.forminator-checkbox {
  display: block;
  font-size: 0.75rem;
  padding-left: 3rem;
  position: relative;
}
.forminator-checkbox + .forminator-error-message {
  display: block;
  padding-left: 3rem;
}

.forminator-checkbox-label::after {
  color: #3A516E;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f0c8";
  font-size: 1.75rem;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media all and (min-width: 85.375rem) {
  .forminator-checkbox-label::after {
    font-size: 2.25rem;
    right: 1.25rem;
  }
}

.forminator-checkbox input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.forminator-checkbox input:checked ~ .forminator-checkbox-label::after {
  content: "\f14a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
}

.partners__heading {
  color: #E84261;
}
@media all and (min-width: 64rem) {
  .partners__heading {
    margin-bottom: 2.5rem;
  }
}

.page-template-page-member .partners__heading {
  color: #3A516E;
}

@media all and (min-width: 85.375rem) {
  .layout-logos {
    padding: 5.625rem 0 400px 0;
  }
}
@media all and (min-width: 99rem) {
  .layout-logos {
    padding-bottom: 470px;
  }
}

.partners__list {
  display: grid;
  list-style: none;
}
@media all and (min-width: 23.376rem) {
  .partners__list {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 25.75rem) {
  .partners__list {
    gap: 1.5rem;
  }
}
@media all and (min-width: 35.5rem) {
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 64rem) {
  .partners__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 85.375rem) {
  .partners__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media all and (min-width: 64rem) {
  .partners__list-item {
    margin-bottom: 1rem;
  }
}
@media all and (min-width: 85.375rem) {
  .partners__list-item {
    margin-bottom: 1.5rem;
  }
}

.partner__logo {
  padding-bottom: 50%;
  position: relative;
}
.partner__logo img {
  display: block;
  height: auto;
  left: 0;
  max-height: calc(100% - 2rem);
  max-width: 100%;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media all and (min-width: 64rem) {
  .partner__logo img {
    max-width: 200px;
  }
}

.partner__description {
  line-height: 1.5;
}

.posts {
  background: #f8f8f8;
  padding-top: calc(7.6vw + 2rem);
}
@media all and (min-width: 35.5rem) {
  .posts {
    padding-top: calc(32px + 2rem);
  }
}
@media all and (min-width: 64rem) {
  .posts {
    padding-bottom: 3.5rem;
    padding-top: 3.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .posts {
    padding-top: 8rem;
  }
}

.post-list {
  list-style: none;
  padding: 2.5rem 0;
}
@media all and (min-width: 25.75rem) {
  .post-list {
    display: grid;
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
    grid-text-emphasis: repeat(2, 1fr);
  }
}
@media all and (min-width: 64rem) {
  .post-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-list__item {
  border-radius: 0.625rem;
  overflow: hidden;
}

@media all and (min-width: 25.75rem) {
  .blog .post-list__item:first-child {
    grid-column: span 2;
  }
}
@media all and (min-width: 48rem) {
  .blog .post-list__item:first-child {
    border-radius: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 64rem) {
  .blog .post-list__item:first-child {
    grid-column: span 3;
  }
}
@media all and (min-width: 48rem) {
  .blog .post-list__item:first-child .post-excerpt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 85.375rem) {
  .blog .post-list__item:first-child .post-excerpt {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .blog .post-list__item:first-child .post-excerpt__meta {
    margin-bottom: 1.25rem;
  }
}
.blog .post-list__item:first-child .post-excerpt__meta-item {
  font-weight: 700;
}
@media all and (min-width: 85.375rem) {
  .blog .post-list__item:first-child .post-excerpt__meta-item {
    font-size: 1.0625rem;
  }
}
.blog .post-list__item:first-child .post-excerpt__title {
  margin-bottom: 1.25rem;
}
@media all and (min-width: 25.75rem) and (max-width: 47.95rem), (min-width: 64rem) {
  .blog .post-list__item:first-child .post-excerpt__title {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .blog .post-list__item:first-child .post-excerpt__title {
    font-size: 2.25rem;
    line-height: 1;
  }
}
.blog .post-list__item:first-child .post-excerpt__thumbnail {
  aspect-ratio: auto;
  height: 100%;
}
@media all and (min-width: 48rem) {
  .blog .post-list__item:first-child .post-excerpt__thumbnail {
    width: 52%;
    -webkit-box-flex: 0 0 52%;
    -webkit-flex: 0 0 52%;
    -ms-flex: 0 0 52%;
    flex: 0 0 52%;
  }
}
.blog .post-list__item:first-child .post-excerpt__content,
.blog .post-list__item:first-child .post-excerpt__button {
  display: block;
}
@media all and (min-width: 25.75rem) {
  .blog .post-list__item:first-child .post-excerpt__content-wrapper {
    padding: 1.5rem 2rem;
  }
}
@media all and (min-width: 64rem) {
  .blog .post-list__item:first-child .post-excerpt__content-wrapper {
    padding: 2.5rem 3rem;
  }
}
@media all and (min-width: 85.375rem) {
  .blog .post-list__item:first-child .post-excerpt__content-wrapper {
    padding: 4.6785rem 5.625rem;
  }
}

.post-excerpt {
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.post-excerpt__thumbnail img {
  aspect-ratio: 1.48;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-excerpt__title {
  color: #E84261;
}
@media all and (min-width: 25.75rem) and (max-width: 35.49rem) {
  .post-excerpt__title {
    font-size: 1rem;
  }
}

.post-excerpt__content-wrapper {
  background: #fff;
  flex: 1;
  padding: 1rem 1.25rem 3rem 1.25rem;
}
@media all and (min-width: 35.5rem) {
  .post-excerpt__content-wrapper {
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media all and (min-width: 85.375rem) {
  .post-excerpt__content-wrapper {
    min-height: 135px;
    padding-bottom: 2.5rem;
  }
}

.post-excerpt__meta {
  list-style: none;
  margin-bottom: 0.5rem;
}

.post-excerpt__meta-item {
  color: #6E6E6E;
  display: inline;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.post-excerpt__meta-item::after {
  content: ", ";
}
.post-excerpt__meta-item:last-child::after {
  content: none;
}

.post-excerpt__content {
  margin-bottom: 2rem;
}

@media all and (min-width: 85.375rem) {
  .post-excerpt__button {
    font-size: 1rem;
    width: 170px;
  }
}

.post-excerpt__content,
.post-excerpt__button {
  display: none;
}

@media all and (min-width: 64rem) {
  .layout-news {
    padding: 2.5rem 0;
  }
}

.theme-white .post-excerpt__content-wrapper {
  background: #f8f8f8;
}

section.single-post {
  padding-bottom: 2.75rem;
}
@media all and (min-width: 85.375rem) {
  section.single-post {
    padding-bottom: 3.125rem;
  }
}

.single .hero,
.single .hero-nav {
  display: none;
}

.single-post__header,
.single-post__content {
  background: #fff;
  padding: 1.5rem 1.25rem;
}
@media all and (min-width: 48rem) {
  .single-post__header,
  .single-post__content {
    padding: 2rem 2rem 1.5rem 2rem;
  }
}
@media all and (min-width: 85.375rem) {
  .single-post__header,
  .single-post__content {
    padding: 2.5rem 13rem 1.5rem 13rem;
  }
}

.single-post__header {
  border-radius: 1.375rem 1.375rem 0 0;
  text-align: center;
}

.single-post__content {
  border-radius: 0 0 1.375rem 1.375rem;
}

.single-post__title {
  color: #E84261;
}

.single-post__thumbnail-wrapper {
  overflow: visible;
  position: static;
}

.single-post__thumbnail {
  position: relative;
}
.single-post__thumbnail::after {
  aspect-ratio: 1.639;
  background: url("assets/img/shape-white-header.svg");
  background-size: cover;
  bottom: -5.6vw;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 70%;
  z-index: 1;
}
@media all and (min-width: 48rem) {
  .single-post__thumbnail::after {
    right: -17vw;
  }
}
@media all and (min-width: 85.375rem) {
  .single-post__thumbnail::after {
    bottom: -69px;
    right: -150px;
    width: 855px;
  }
}
@media all and (min-width: 99rem) {
  .single-post__thumbnail::after {
    right: -120px;
  }
}

.related-posts__heading {
  color: #E84261;
  text-align: center;
}

@media all and (min-width: 85.375rem) {
  .related-posts .post-list {
    padding-bottom: 3.125rem;
  }
}

@media all and (min-width: 48rem) {
  .gift-card-section {
    margin-top: 5rem;
  }
}

@media all and (min-width: 85.375rem) {
  .single-post__gift-card {
    padding-bottom: 4.5rem;
  }
}

/*
.post-filters__toggle {
  background: none;
  border-bottom: 1px solid $lightpink;
  font-size: 1rem;
  justify-content: space-between;
  padding-bottom: .25rem;
  text-align: left;
  @include d-flex;
  width: 100%;

  @media all and (min-width: $md-min) {
    display: none;
  }

  &::after {
    content: '\f107';
    margin-left: 1em;
    @include pseudo-fontawesome-regular;
  }

  &.post-filters__toggle--open::after {
    content: '\f106';
  }
}
 */
.post-filters__toggle {
  margin: 0 -1.25rem !important;
  width: calc(100% + 2.5rem);
}
@media all and (min-width: 48rem) {
  .post-filters__toggle {
    display: none;
  }
}

@media all and (max-width: 47.95rem) {
  .layout.posts {
    padding-top: 0;
  }
}

.post-filters {
  display: none;
}
@media all and (min-width: 48rem) {
  .post-filters {
    display: block !important;
    padding: 0;
  }
}
.post-filters .facetwp-facet {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0;
}
@media all and (min-width: 85.375rem) {
  .post-filters .facetwp-facet {
    gap: 1.25rem;
  }
}
.post-filters .facetwp-counter {
  display: none;
}
.post-filters .facetwp-radio {
  background: #ED788E !important;
  opacity: 0.8;
}
.post-filters .facetwp-radio.checked {
  background: #E84261 !important;
  opacity: 1;
}

.load-more {
  text-align: center;
}

.load-more .facetwp-facet {
  margin-bottom: 0;
  text-align: center;
}
@media all and (min-width: 85.375rem) {
  .load-more .facetwp-facet {
    margin-top: 0.25rem;
  }
}

@media all and (min-width: 85.375rem) {
  .search-area {
    margin: 2.5rem 0 4.375rem 0;
  }
}

@media all and (min-width: 64rem) {
  .search-area__heading {
    margin-bottom: 2.25rem;
  }
}

.search-box {
  background: #3A516E;
  border-radius: 0.875rem;
  display: grid;
  gap: 0.625rem;
  padding: 1.25rem;
}
@media all and (min-width: 48rem) {
  .search-box {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 85.375rem) {
  .search-box {
    border-radius: 1.25rem;
    gap: 2rem;
    padding: 3.125rem;
  }
}

.search-box__item {
  position: relative;
}

.search-box__element {
  background: #f8f8f8;
  border-radius: 0.5rem;
  display: block;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  text-align: left;
  width: 100%;
}
@media all and (min-width: 85.375rem) {
  .search-box__element {
    border-radius: 0.875rem;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

.search-box__toggle {
  position: relative;
}
.search-box__toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media all and (min-width: 85.375rem) {
  .search-box__toggle::after {
    font-size: 2.25rem;
    right: 1.75rem;
  }
}

.search-box__toggle,
.search-box__title::placeholder,
.search-box__checkbox {
  color: #5E5E5E;
  opacity: 1;
}

input:checked + .search-box__checkbox,
.search-box__title {
  color: #1d1d1d;
}

.search-box__toggle--open::after {
  content: "\f106";
}

.search-box__categories {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  list-style: none;
  padding-top: 0.5rem;
  position: absolute;
  top: calc(100% - 0.75rem);
  z-index: 1;
}
@media all and (min-width: 85.375rem) {
  .search-box__categories {
    padding-top: 0.75rem;
  }
}

.search-box__category {
  line-height: 2rem;
  min-height: 2rem;
}
@media all and (min-width: 85.375rem) {
  .search-box__category {
    line-height: 3rem;
    min-height: 3rem;
  }
}

.search-box__checkbox {
  display: block;
  position: relative;
}

.search-box__checkbox::after {
  color: #3A516E;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f0c8";
  font-size: 1.75rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media all and (min-width: 85.375rem) {
  .search-box__checkbox::after {
    font-size: 2.25rem;
    right: 1.25rem;
  }
}

.search-box__category .search-box__checkbox::after {
  right: 0;
}

.visually-hidden:checked + .search-box__checkbox::after {
  content: "\f14a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
}

.business-list {
  list-style: none;
  margin-top: 1.875rem;
}
@media all and (min-width: 25.75rem) {
  .business-list {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}
@media all and (min-width: 48rem) {
  .business-list {
    margin-top: 3.125rem;
  }
}
@media all and (min-width: 64rem) {
  .business-list {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
}

@media all and (max-width: 63.99rem) {
  .business-list__item {
    margin-bottom: 0.5rem;
  }
}
@media all and (min-width: 64rem) {
  .business-list__item {
    margin-bottom: 0.125rem;
  }
}

.business-list__item-link {
  color: #5E5E5E;
  text-decoration: none;
}
@media all and (pointer: fine) {
  .business-list__item-link:hover {
    color: #E84261;
  }
}

.business-list__item-name {
  color: #5E5E5E;
}

.hours-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}
@media all and (max-width: 35.49rem) {
  .hours-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}

.table__cell {
  background: rgba(248, 248, 248, 0.4);
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.625rem 1.25rem;
}
@media all and (min-width: 48rem) {
  .table__cell {
    padding: 1.375rem;
  }
}
@media all and (min-width: 48rem) {
  .table__cell:first-child {
    padding-left: 2.25rem;
  }
}

tr:nth-child(even) .table__cell {
  background: #F1F1F1;
}

@media all and (max-width: 35.49rem) {
  .hours-table__occasion {
    padding-top: 1.25rem;
    width: 100%;
  }
}

@media all and (max-width: 35.49rem) {
  .hours-table__date {
    flex: auto;
    padding-bottom: 1.25rem;
  }
}

@media all and (max-width: 35.49rem) {
  .hours-table__time {
    padding-bottom: 1.25rem;
    -webkit-box-flex: 0 0 34%;
    -webkit-flex: 0 0 34%;
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
  }
}
@media all and (min-width: 48rem) {
  .hours-table__time {
    padding-right: 5rem;
  }
}

.table__cell-heading {
  font-weight: 600;
}

@media all and (min-width: 85.375rem) {
  .opening-hours-area {
    margin: 2.5rem 0 0 0;
  }
}

@media all and (min-width: 64rem) {
  .opening-hours-area__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .opening-hours-area__columns {
    gap: 3.125rem;
  }
}

.opening-hours-area__cta {
  margin: 2.5rem auto;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .opening-hours-area__cta {
    margin-top: 12vw;
  }
}
.opening-hours-area__cta .gift-card--full {
  display: none;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .opening-hours-area__cta .gift-card--full {
    display: block;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .opening-hours-area__cta .gift-card--square {
    display: none;
  }
}
@media all and (min-width: 64rem) {
  .opening-hours-area__cta {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin: 0;
    max-width: 630px;
  }
}

.opening-hours-area__table-wrapper {
  -webkit-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.store {
  background: #f0f0f0;
  padding-top: 0;
}
@media all and (min-width: 64rem) {
  .store {
    background-color: #fff;
  }
}
.store {
  /*
    + .layout-gift_card {
      @media all and (min-width: $lg-min) {
        margin-top: -3.75rem;
      }
    } */
}

.breadcrumbs {
  padding: 1rem 0;
}
@media all and (min-width: 48rem) {
  .breadcrumbs {
    padding: 1.25rem 0 0 0;
  }
}

.breadcrumbs__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
@media all and (min-width: 64rem) {
  .breadcrumbs__menu {
    justify-content: flex-start;
  }
}

.breadcrumbs__item {
  font-size: 0.875rem;
}

.breadcrumbs__item::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  margin: 0 0.5em;
}

.breadcrumbs__item--current::After {
  content: none;
}

.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs__item--current {
  color: #E84261;
}

.store__header {
  padding: 2.5rem 0;
  text-align: center;
}
@media all and (min-width: 64rem) {
  .store__header {
    padding: 1.25rem 0 3.125rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .store__header {
    padding: 1.25rem 0 4.25rem 0;
  }
}

.store__logo {
  align-items: flex-end;
  height: 200px;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  width: 420px;
}
.store__logo .store__logo-img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

@media all and (min-width: 64rem) {
  .store__header {
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media all and (min-width: 64rem) {
  .store__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    column-gap: 2.5rem;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 85.375rem) {
  .store__content {
    column-gap: 5.8rem;
  }
}

.store__title {
  color: #E84261;
  margin-bottom: 1.25rem;
}

.store__tagline {
  color: #5e5e5e;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}

.store__description p {
  margin-bottom: 1.5em;
}

.store__primary {
  max-width: 653px;
}
@media all and (max-width: 63.99rem) {
  .store__primary {
    margin: auto auto 2.75rem auto;
  }
}
@media all and (min-width: 64rem) {
  .store__primary {
    -webkit-box-flex: 0 0 55%;
    -webkit-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
  }
}

.store__secondary {
  margin: auto;
  max-width: 653px;
  position: relative;
}
@media all and (min-width: 64rem) {
  .store__secondary {
    margin: 0 0 0 auto;
    max-width: 444px;
    width: calc(45% - 2.5rem);
    -webkit-box-flex: 1 1 calc(45% - 2.5rem);
    -webkit-flex: 1 1 calc(45% - 2.5rem);
    -ms-flex: 1 1 calc(45% - 2.5rem);
    flex: 1 1 calc(45% - 2.5rem);
  }
}
@media all and (min-width: 64rem) {
  .store__secondary::before {
    background-image: url("assets/img/shape-cta-gray.svg");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 234px;
    left: 2rem;
    position: absolute;
    top: -150px;
    width: 630px;
    z-index: 0;
  }
}
@media all and (min-width: 64rem) and (min-width: 85.375rem) {
  .store__secondary::before {
    height: 274px;
    left: 2rem;
    top: -200px;
    width: 781px;
  }
}
@media all and (min-width: 64rem) and (min-width: 1920px) {
  .store__secondary::before {
    content: none;
  }
}

.store__contact {
  align-self: flex-start;
  background: #3F5B7B;
  border-radius: 1.25rem;
  color: #fff;
  font-family: "Figtree", sans-serif;
  padding: 1.375rem 2.125rem 2.5rem 2.125rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media all and (min-width: 25.75rem) {
  .store__contact {
    padding-top: 1.875rem;
  }
}
@media all and (min-width: 48rem) {
  .store__contact {
    padding-top: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .store__contact {
    padding: 3.125rem 1.875rem;
    text-align: left;
    width: auto;
  }
}
@media all and (min-width: 85.375rem) {
  .store__contact {
    padding: 4.125rem 2rem;
  }
}
.store__contact a {
  color: inherit;
  text-decoration: none;
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .store__contact .store__contact-tel,
  .store__contact .store__contact-email {
    display: block;
  }
}
.store__contact .store__contact-tel + .store__contact-email::before {
  content: "-";
  margin: 0 0.5em 0 0.25em;
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .store__contact .store__contact-tel + .store__contact-email::before {
    content: none;
  }
}

.store__contact-heading {
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.store__hours {
  list-style: none;
  margin-bottom: 1.5rem;
}
.store__hours p {
  line-height: 1.5;
  margin: 0;
}

.store__hours__item {
  line-height: 1.5;
}

.store__socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin-top: 1.875rem;
}
@media all and (min-width: 25.75rem) {
  .store__socials {
    gap: 3.125rem;
    justify-content: center;
  }
}
@media all and (min-width: 64rem) {
  .store__socials {
    justify-content: flex-start;
    padding-left: 1.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .store__socials {
    margin-top: 3.5rem;
  }
}
.store__socials a {
  font-size: 1.625rem;
}
@media all and (min-width: 25.75rem) {
  .store__socials a {
    font-size: 1.875rem;
  }
}
.store__socials a::after {
  content: none !important;
}
.store__socials .fa-facebook-f {
  font-size: 0.9em;
  position: relative;
  top: -0.1em;
}
.store__socials .fa-linkedi-in {
  font-size: 0.8em;
}

.store__giftcard {
  display: block;
  margin-top: 2rem;
  text-align: center;
}
@media all and (min-width: 64rem) {
  .store__giftcard {
    margin-top: 4.125rem;
    text-align: left;
  }
}
.store__giftcard img {
  margin: auto auto 0.5rem auto;
  max-width: 180px;
}
@media all and (min-width: 64rem) {
  .store__giftcard img {
    margin: 0 0 0.5rem 0;
  }
}

.store__giftcard-accepted {
  font-family: "Kalam", sans-serif;
}

.store__image {
  margin-bottom: 2.5rem;
}
.store__image:last-child {
  margin: 0;
}

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