@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__container {
  position: relative;
  box-sizing: border-box;
}
.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.splide.is-active .splide__list {
  display: flex;
}
.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}
.splide {
  visibility: hidden;
}
.splide,
.splide__slide {
  position: relative;
  outline: none;
}
.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__slider {
  position: relative;
}
.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
}
.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide--fade > .splide__track > .splide__list {
  display: block;
}
.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  gllowbltop: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide--ttb > .splide__track > .splide__list {
  display: block;
}
.splide--ttb > .splide__pagination {
  width: auto;
}
.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  opacity: 0.7;
  background: #ccc;
}
.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}
.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__arrow:focus {
  outline: none;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}
.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform 0.2s linear;
  border: none;
  opacity: 0.7;
}
.splide__pagination__page.is-active {
  transform: scale(1.4);
  background: #fff;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus {
  outline: none;
}
.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}
.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
}
.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000;
}
.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}
.splide--rtl > .splide__arrows .splide__arrow--prev,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}
.splide--rtl > .splide__arrows .splide__arrow--prev svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide--rtl > .splide__arrows .splide__arrow--next,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide--rtl > .splide__arrows .splide__arrow--next svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide--ttb > .splide__arrows .splide__arrow,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide--ttb > .splide__arrows .splide__arrow--prev,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}
.splide--ttb > .splide__arrows .splide__arrow--prev svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide--ttb > .splide__arrows .splide__arrow--next,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}
.splide--ttb > .splide__arrows .splide__arrow--next svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 0.5em;
  transform: translateY(50%);
}
@font-face {
  font-display: swap;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 300;
  src: url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-300.d2c7d5c5.woff2)
      format("woff2"),
    url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-300.25d1ce45.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  src: url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-regular.f74389bd.woff2)
      format("woff2"),
    url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-regular.33e6b01f.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 600;
  src: url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-600.17c0392c.woff2)
      format("woff2"),
    url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-600.720fb921.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 700;
  src: url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-700.ed37bc60.woff2)
      format("woff2"),
    url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-700.9dff9dc0.woff)
      format("woff");
}
@font-face {
  font-display: swap;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 900;
  src: url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-900.476756cd.woff2)
      format("woff2"),
    url(https://www.glowbl.com/app/themes/glowbl/build/fonts/source-sans-pro-v14-latin-900.2b5a40a1.woff)
      format("woff");
}
.contact__body-inner,
.container,
.media__compact,
.page__hero-inner {
  max-width: 128.3rem;
  margin: 0 auto;
  position: relative;
}
.sr-only {
  border: 0;
  clip: rect(0.1rem, 0.1rem, 0.1rem, 0.1rem);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 0.1rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0.1rem;
  white-space: nowrap;
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}
.component-id {
  background-color: #f1f1f1;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0.75rem;
  position: absolute;
  transition: all 0.3s ease;
  top: 0;
  z-index: 10;
}
.component-id--is-active {
  opacity: 1;
  visibility: visible;
}
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
@-ms-viewport {
  width: device-width;
}
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  text-align: left;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0.1rem;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
dl,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: 700;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 50%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img,
video {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}
svg:not(:root) {
  fill: currentColor;
  display: block;
  overflow: hidden;
}
[role="button"],
a,
area,
button,
input:not([type="range"]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
button,
input,
label,
select {
  cursor: pointer;
}
label {
  display: inline-block;
}
button {
  background: none;
  border: 0;
  border-radius: 0;
}
button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
html {
  font-size: 62.5%;
  scroll-padding-top: 7.6rem;
  scroll-behavior: smooth;
}
@media screen and (max-width: 47.9375em) {
  html {
    scroll-padding-top: 6.4rem;
  }
}
body {
  color: rgba(0, 0, 0, 0.8);
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.6rem;
  line-height: 1.43;
}
body.overflow-hidden {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
::-moz-selection {
  background: #9376b3;
  color: #fff;
}
::selection {
  background: #9376b3;
  color: #fff;
}
.text--header {
  font-size: 5.2rem;
  font-weight: 300;
  line-height: 1;
	
	/* jc */ 
color: #757575;
}
.text--sub__header {
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.19;
/* JC */ 
  color: #757575;
	
}
@media screen and (max-width: 35.3125em) {
  .text--sub__header {
    font-size: 2.8rem;
  }
}
.text--sub__header-label {
  font-size: 2rem;
  line-height: 1.5;
  text-transform: uppercase;
 
  /* JC */ 
  color: #9376b3;
}
@media screen and (max-width: 35.3125em) {
  .text--sub__header-label {
    font-size: 1.4rem;
  }
}
.text--chapo {
  font-size: 2rem;
  line-height: 1.33;
}
.text--title {
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 1.27;
}
@media screen and (max-width: 35.3125em) {
  .text--title {
    font-size: 3rem;
  }
}
.text--title__label {
  font-size: 1.3rem;
  line-height: 1.3;
}
.text--sub__title {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.33;
}
.text--light {
  font-weight: 300;
}
.text--medium {
  font-weight: 600;
}
.text--black {
  font-weight: 900;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
p {
  font-size: 1.6rem;
  line-height: 1.43;
}
.accordion__list {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.accordion__list .accordion {
  border: 0.1rem solid #d9d9d9;
  border-bottom: 0;
  box-shadow: none;
}
.accordion__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 74.9375em) {
  .accordion__inner {
    width: 100%;
  }
}
.accordion__column {
  align-items: flex-start;
  display: flex;
}
@media screen and (max-width: 64em) {
  .accordion__column {
    flex-direction: column;
  }
}
.accordion__column .accordion {
  flex: 1;
  margin: 0 1.35rem;
}
@media screen and (max-width: 64em) {
  .accordion__column .accordion {
    margin: 1.35rem;
  }
}
.accordion {
  background-color: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.16);
}
.accordion__header {
  align-items: center;
  border-bottom: 0.1rem solid #d9d9d9;
  display: flex;
  font-weight: 700;
  min-height: 9.6rem;
  padding: 0.5rem 1.5rem;
  text-align: left;
  width: 100%;
}
.accordion__header[aria-expanded="true"] .accordion__name {
  color: #9376b3;
}
.accordion__header[aria-expanded="true"] .accordion__action svg {
  transform: rotate(0);
}
.accordion__illustration {
  flex-shrink: 0;
  margin-right: 1.5rem;
  pointer-events: none;
}
.accordion__illustration img,
.accordion__illustration svg {
  height: 5.4rem;
  width: 5.4rem;
}
.accordion__name {
  color: rgba(0, 0, 0, 0.81);
  padding-right: 1rem;
  pointer-events: none;
}
.accordion__title {
  line-height: 1.4em;
}
.accordion__action {
  align-items: center;
  border-left: 0.1rem solid #d9d9d9;
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  min-height: 2.5rem;
  padding-left: 1.75rem;
  pointer-events: none;
  width: 4rem;
}
.accordion__action svg {
  fill: rgba(0, 0, 0, 0.54);
  height: 0.5rem;
  transition: all 0.3s ease;
  transform: rotate(-180deg);
  width: 1rem;
}
.accordion__panel {
  background-color: #f9f5f8;
  transition: all 0.3s ease;
}
.accordion__panel[aria-hidden="true"] {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
}
.accordion__panel[aria-hidden="false"] {
  max-height: 99em;
  opacity: 1;
  visibility: visible;
}
.accordion__panel-inner {
  border-bottom: 0.1rem solid #d9d9d9;
  padding: 1.5rem;
}
.accordion__media-video {
  position: relative;
  padding-top: 56.25%;
}
.accordion__media-video iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.banner__cta {
  padding: 10rem 2.7rem;
  position: relative;
}
.banner__cta:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/background-banner-cta.b636fd94.svg)
    no-repeat 50%;
  background-size: 40%;
  bottom: 0;
  content: "";
  isolation: isolate;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 64em) {
  .banner__cta:after {
    background-size: 75%;
  }
}
@media screen and (max-width: 47.9375em) {
  .banner__cta {
    padding: 5rem 2.7rem;
  }
}
.banner__cta-inner {
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 83.1644583009%;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .banner__cta-inner {
    width: 100%;
  }
}
.breadcrumb {
  margin-top: 2rem;
}
.breadcrumb__item,
.breadcrumb__list {
  align-items: center;
  display: flex;
}
.breadcrumb__item {
  margin: 0 0.75rem;
  min-height: 3.2rem;
}
.breadcrumb__item--home {
  margin-left: 0;
}
.breadcrumb__item--home svg {
  height: 3.2rem;
  width: 3.2rem;
}
.breadcrumb__link {
  align-items: center;
  color: rgba(0, 0, 0, 0.54);
  display: inline-flex;
}
.breadcrumb__link:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/chevron.232442a9.svg)
    no-repeat;
  content: "";
  display: flex;
  height: 1rem;
  margin-left: 1.5rem;
  opacity: 0.6;
  width: 1rem;
}
.bubble__icon {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.bubble__icon-inner {
  margin: 0 auto;
  width: 66.3289166017%;
}
@media screen and (max-width: 64em) {
  .bubble__icon-inner {
    width: 100%;
  }
}
.bubble__icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -0.675rem;
  margin-right: -0.675rem;
}
@media screen and (max-width: 64em) {
  .bubble__icon-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.bubble__icon-item {
  margin: 1.35rem 0.675rem;
  text-align: center;
  width: calc(25% - 1.35rem);
}
@media screen and (max-width: 64em) {
  .bubble__icon-item {
    width: calc(50% - 1.35rem);
  }
}
@media screen and (max-width: 35.3125em) {
  .bubble__icon-item {
    margin: 1.35rem 0;
    width: 100%;
  }
}
.bubble__icon-item > span {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/bubble.d3cd14b1.svg)
    no-repeat 50%;
  display: block;
  height: 13rem;
  margin: 0 auto;
  position: relative;
  width: 13rem;
}
.bubble__icon-item > span:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/hollow.8c48fe79.svg)
    no-repeat 50%;
  background-size: 17rem;
  bottom: 0;
  content: "";
  isolation: isolate;
  left: -2rem;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: -0.5rem;
  width: 16rem;
  z-index: 2;
}
.bubble__icon-item img {
  height: 6.5rem;
  left: 3rem;
  position: absolute;
  top: 3rem;
  width: 6.5rem;
}
.bubble__icon-title {
  margin-top: 2rem;
}
.button {
  align-items: center;
  border: 0;
  border-radius: 2.3rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  display: inline-flex;
  font-weight: 500;
  font-size: 1.6rem;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 1.2rem 2.6rem;
}
.button:focus,
.button:hover {
  box-shadow: 0 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.36);
}
.button--light {
  background-color: #f9f5f8;
  box-shadow: none;
  color: #9376b3;
}
.button--light:focus,
.button--light:hover {
  background-color: #4a4a4a;
  color: #fff;
}
.button--dark {
  background-color: #000;
  box-shadow: none;
  color: #fff;
}
.button--dark:focus,
.button--dark:hover {
  background-color: #4a4a4a;
  color: #fff;
}
.button--primary {
  background-color: #9376b3;
  color: #fff;
}
.button--primary:focus,
.button--primary:hover {
  background-color: #4a4a4a;
}
.button--secondary {
  background-color: #a63f70;
  color: #fff;
}
.button--secondary:focus,
.button--secondary:hover {
  background-color: #4a4a4a;
}
.button--third {
  background-color: #68a5cb;
  color: #fff;
}
.button--third:focus,
.button--third:hover {
  background-color: #4a4a4a;
}
.button--fourth {
  background-color: #42b9b9;
  color: #fff;
}
.button--fourth:focus,
.button--fourth:hover {
  background-color: #4a4a4a;
}
.button--fifth {
  background-color: #957fc6;
  color: #fff;
}
.button--fifth:focus,
.button--fifth:hover {
  background-color: #4a4a4a;
}
.card__accordion {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.card__accordion-inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .card__accordion-inner {
    width: 100%;
  }
}
.card__accordion-list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -0.675rem;
  margin-right: -0.675rem;
}
@media screen and (max-width: 64em) {
  .card__accordion-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.card__accordion-item {
  background-color: #fff;
  box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.16);
  margin: 1.35rem;
  width: 25.2533125487%;
}
@media screen and (max-width: 74.9375em) {
  .card__accordion-item {
    width: calc(33.33333% - 2.7rem);
  }
}
@media screen and (max-width: 64em) {
  .card__accordion-item {
    width: calc(50% - 2.7rem);
  }
}
@media screen and (max-width: 35.3125em) {
  .card__accordion-item {
    margin: 1.35rem 0;
    width: 100%;
  }
}
.card__accordion-item--is-active .card__accordion-button {
  color: #9376b3;
}
.card__accordion-item--is-active .card__accordion-button svg {
  transform: rotate(0);
}
.card__accordion-item--is-active .card__accordion-content {
  background-color: #f9f5f8;
  position: static;
}
.card__accordion-image {
  display: block;
  padding-top: 67.6470588235%;
  position: relative;
}
.card__accordion-image img {
  bottom: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.card__accordion-button {
  align-items: center;
  display: flex;
  min-height: 7.5rem;
  padding: 0.5rem 2.5rem 0.5rem 3.5rem;
  text-align: left;
  width: 100%;
}
.card__accordion-button span:not(.card__accordion-button-inner) {
  align-items: center;
  border-left: 0.1rem solid #d9d9d9;
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  min-height: 2.5rem;
  padding-left: 1.75rem;
  width: 4rem;
}
.card__accordion-button svg {
  fill: rgba(0, 0, 0, 0.54);
  height: 0.5rem;
  transition: all 0.3s ease;
  transform: rotate(-180deg);
  width: 1rem;
}
.card__accordion-button p {
  margin-bottom: 0;
}
.card__accordion-button-inner {
  line-height: 1.1em;
  flex: 1;
  padding: 0.5em 2rem 0.5em 0;
}
.card__accordion-button-inner * {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.33;
}
.card__accordion-content {
  transition: all 0.3s ease;
}
.card__accordion-content[aria-hidden="true"] {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.card__accordion-content[aria-hidden="false"] {
  max-height: 99em;
  opacity: 1;
  visibility: visible;
}
.card__accordion-content p:last-child {
  margin-bottom: 0;
}
.card__accordion-main {
  padding: 3.5rem;
}
.column__double {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.column__double-inner {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 64em) {
  .column__double-inner {
    flex-direction: column;
    margin-left: 0;
  }
}
.column__double-inner--inverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 64em) {
  .column__double-inner--inverse {
    flex-direction: column;
  }
}
.column__double-inner--inverse .column__double-item:first-child {
  margin-left: 1.5rem;
}
@media screen and (max-width: 64em) {
  .column__double-inner--inverse .column__double-item:first-child {
    margin-left: 0;
  }
}
.column__double-inner--inverse .column__double-item:last-child {
  margin-left: 0;
}
.column__double-item:first-child {
  flex-shrink: 0;
  margin-left: 8.4567420109%;
  width: 32.5798908807%;
}
@media screen and (max-width: 64em) {
  .column__double-item:first-child {
    margin-left: 0;
    width: 100%;
  }
}
.column__double-item:last-child {
  flex: 1;
  margin-left: 1.5rem;
}
@media screen and (max-width: 64em) {
  .column__double-item:last-child {
    flex: auto;
    margin-left: 0;
    width: 100%;
  }
}
.column__double-testimony {
  margin-top: 5rem;
  padding-left: 4.5rem;
}
.column__double-image {
  align-items: center;
  display: flex;
  justify-content: center;
}
.column__double-image img {
  flex-shrink: 0;
}
.column__double-video {
  position: relative;
  padding-top: 56.25%;
}
.column__double-video iframe {
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.column__offer {
  margin: 8rem 0;
  position: relative;
}
.column__offer + div {
  margin-top: -15rem;
}
@media screen and (max-width: 64em) {
  .column__offer + div {
    margin-top: -11rem;
  }
}
.column__offer-header {
  padding: 7rem 1.35rem 20rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 64em) {
  .column__offer-header {
    padding-top: 4rem;
    padding-bottom: 14rem;
  }
}
@media screen and (max-width: 35.3125em) {
  .column__offer-header {
    padding-bottom: 10rem;
  }
}
.column__offer-header:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/background-column-offer.f0d28bd3.svg)
    no-repeat center top -15rem;
  background-size: 60%;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 64em) {
  .column__offer-header:after {
    background-size: 75%;
  }
}
.column__offer-inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
.column__offer-list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0.675rem;
}
.column__offer-item {
  margin: 1.35rem;
  position: relative;
  top: -9.3rem;
  width: 22.1356196415%;
}
@media screen and (max-width: 64em) {
  .column__offer-item {
    width: calc(50% - 2.7rem);
  }
}
@media screen and (max-width: 35.3125em) {
  .column__offer-item {
    width: 100%;
  }
}
.column__offer-item--featured {
  top: -14rem;
}
@media screen and (max-width: 64em) {
  .column__offer-item--featured {
    top: -9.3rem;
  }
}
.cta {
  margin: 0 0 4rem;
  padding: 0 2.7rem;
  position: relative;
}
.cta__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 74.9375em) {
  .cta__inner {
    width: 100%;
  }
}
.cta__list {
  text-align: center;
}
.cta__list .button {
  margin: 0.675rem;
}
hr {
  background-color: #d9d9d9;
  border: 0;
  color: #d9d9d9;
  margin: 6rem 0;
}
.divider--plus {
  margin: 3rem 0;
  position: relative;
}
.divider--plus:after,
.divider--plus:before {
  background-color: #d9d9d9;
  content: "";
  height: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
}
.divider--plus:before {
  left: 0;
}
.divider--plus:after {
  right: 0;
}
.divider--plus p {
  align-items: center;
  background-color: #fff;
  border: 0.1rem solid #9376b3;
  border-radius: 2.3rem;
  display: flex;
  font-size: 2.4rem;
  justify-content: center;
  margin: 0 auto;
  height: 2.3rem;
  width: 2.3rem;
}
.image__text__cta {
  margin: 8rem 0;
  position: relative;
}
.image__text__cta .image__text__cta-inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .image__text__cta .image__text__cta-inner {
    width: 100%;
  }
}
.image__text__cta .image__text__cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -0.675rem;
  margin-right: -0.675rem;
}
@media screen and (max-width: 64em) {
  .image__text__cta .image__text__cta-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.image__text__cta .image__text__cta-item {
  background-color: #fff;
  box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.16);
  border-radius: 0.4rem;
  margin: 1.35rem;
  padding-bottom: 1rem;
  text-align: center;
  width: calc(33.33333% - 2.7rem);
}
@media screen and (max-width: 64em) {
  .image__text__cta .image__text__cta-item {
    width: calc(50% - 2.7rem);
  }
}
@media screen and (max-width: 42.5em) {
  .image__text__cta .image__text__cta-item {
    margin: 1.35rem 0;
    width: 100%;
  }
}
.image__text__cta .image__text__cta-image {
  display: flex;
  height: 12rem;
  justify-content: center;
  margin-top: 4rem;
  padding: 0 2rem;
  width: 100%;
}
.image__text__cta .image__text__cta-image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.image__text__cta .image__text__cta__image--full {
  height: auto;
  margin-top: 0;
  padding: 71.875% 0 0;
  position: relative;
}
.image__text__cta .image__text__cta__image--full img {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.image__text__cta .image__text__cta-title {
  margin-top: 2rem;
  padding: 0 2rem;
}
.image__text__cta .image__text__cta-text {
  margin-top: 2rem;
  padding: 0 3rem;
}
.image__text__cta .image__text__cta-text hr {
  margin: 2.5rem 0;
}
.image__text__cta--background .image__text__cta-body,
.image__text__cta--default {
  padding: 0 2.7rem;
}
.image__text__cta--background .image__text__cta-header {
  background-color: #f9f5f8;
  padding: 6rem 0 18rem;
}
@media screen and (max-width: 47.9375em) {
  .image__text__cta--background .image__text__cta-header {
    padding: 3rem 0 13rem;
  }
}
.image__text__cta--background .flexible__header {
  margin-bottom: 0;
  padding: 0 2.7rem;
  position: relative;
  z-index: 2;
}
.image__text__cta--background .image__text__cta-body {
  position: relative;
}
.image__text__cta--background .image__text__cta-background {
  height: 77rem;
  left: 0;
  max-width: 160rem;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -25rem;
}
@media screen and (max-width: 47.9375em) {
  .image__text__cta--background .image__text__cta-background {
    display: none;
  }
}
.image__text__cta--background .image__text__cta-list {
  margin-top: -11.5rem;
}
.list--check li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/check.0c0ad6bc.svg);
  background-size: 1.2rem 0.8rem;
  background-repeat: no-repeat;
  background-position: top 0.75rem left;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}
.list--check-purple li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/check-purple.1cb18ad0.svg);
}
.list--check-blue li,
.list--check-purple li {
  background-size: 1.6rem;
  background-repeat: no-repeat;
  background-position: top 0.75rem left -0.2rem;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}
.list--check-blue li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/check-blue.ed2c35bd.svg);
}
.list--check-green li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/check-green.57e4f874.svg);
  background-size: 1.6rem;
  background-position: top 0.75rem left -0.2rem;
}
.list--check-green li,
.list--triangle li {
  background-repeat: no-repeat;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}
.list--triangle li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/triangle-list.319936d1.svg);
  background-size: 1.2rem 0.8rem;
  background-position: top 0.75rem left;
}
.logo {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.logo__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .logo__inner {
    width: 100%;
  }
}
.logo__list {
  flex-wrap: wrap;
  margin-top: -2.7rem;
}
.logo__item,
.logo__list {
  display: flex;
  justify-content: center;
}
.logo__item {
  align-items: center;
  margin: 2.7rem 0;
  padding: 0 2.7rem;
  width: 20%;
}
@media screen and (max-width: 47.9375em) {
  .logo__item {
    width: 33.33333%;
  }
}
@media screen and (max-width: 35.3125em) {
  .logo__item {
    width: 50%;
  }
}
.media {
  margin: 8rem auto;
  position: relative;
}
.media__image {
  text-align: center;
}
.media__video span {
  display: block;
  padding-top: 56.25%;
  position: relative;
}
.media__video iframe {
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.media__small {
  margin: 0 auto;
  width: 85.1rem;
}
@media screen and (max-width: 47.9375em) {
  .media__small {
    padding: 0 1.35rem;
    width: 100%;
  }
}
.media__full img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.menu {
  transition: all 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .menu {
    background-color: #fff;
    left: -0.675rem;
    min-height: calc(100vh - 6.4rem);
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    padding-top: 2rem;
    position: absolute;
    right: 0;
    transform: translateY(100%);
    top: 6.4rem;
    width: calc(100% + 2.7rem);
  }
}
.menu--is-active {
  opacity: 1;
  transform: translateX(-0.675rem);
  visibility: visible;
}
.menu__list {
  align-items: center;
  display: flex;
  min-height: inherit;
}
@media screen and (max-width: 47.9375em) {
  .menu__list {
    align-items: flex-start;
    flex-direction: column;
  }
}
.menu__item {
  align-items: center;
  display: flex;
  margin-right: 2.8rem;
  min-height: inherit;
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .menu__item {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2rem;
    margin-right: 0;
    min-height: auto;
    width: 100%;
  }
}
.menu__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 47.9375em) {
  .menu__item:last-child {
    margin-bottom: 0;
  }
}
.menu__item--is-active .menu__link,
.menu__item--is-active .menu__sub-link,
.menu__item--is-active .menu__toggle {
  color: #9376b3;
}
@media screen and (max-width: 47.9375em) {
  .menu .menu__action {
    padding: 0 2.5rem;
  }
}
.menu .menu__action:focus,
.menu .menu__action:hover {
  color: #9376b3;
  text-decoration: underline;
}
.menu__toggle {
  align-items: center;
  display: inline-flex;
  padding: 0;
}
.menu__toggle:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/chevron.232442a9.svg)
    no-repeat;
  content: "";
  display: inline;
  height: 1rem;
  margin-left: 0.75rem;
  margin-top: 0.5rem;
  transform: rotate(90deg);
  width: 1rem;
}
.menu__toggle[aria-expanded="true"] + .menu__sub {
  opacity: 1;
  visibility: visible;
  max-height: 999em;
}
@media screen and (max-width: 47.9375em) {
  .menu__link {
    padding: 2.5rem;
  }
}
.menu__sub {
  background-color: #fff;
  border-radius: 0.8rem;
  border: 0.1rem solid #d9d9d9;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  display: flex;
  left: 0;
  margin-left: -0.675rem;
  margin-right: -0.675rem;
  opacity: 0;
  padding: 3rem 3rem 2rem 2rem;
  position: absolute;
  visibility: hidden;
  transition: all 0.3s ease;
  top: calc(100% - 1rem);
  z-index: 10;
}
@media screen and (max-width: 47.9375em) {
  .menu__sub {
    background-color: #f9f5f8;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    flex-direction: column;
    max-height: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    top: 1.5rem;
    position: relative;
    width: 100%;
  }
}
.menu__sub:before {
  background-color: #fff;
  bottom: calc(100% - 0.6rem);
  border-color: #d9d9d9 transparent transparent #d9d9d9;
  border-style: solid;
  border-width: 0.1rem;
  content: "";
  display: block;
  left: 3rem;
  height: 1.2rem;
  margin: auto;
  position: absolute;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 1.2rem;
}
@media screen and (max-width: 47.9375em) {
  .menu__sub:before {
    display: none;
  }
}
.menu__sub .menu__sub-item--title {
  background-image: none;
  padding-left: 0;
}
@media screen and (max-width: 47.9375em) {
  .menu__sub-list {
    padding: 2rem 4.5rem 0;
  }
}
@media screen and (max-width: 35.3125em) {
  .menu__sub-list {
    padding: 2rem 2rem 0;
  }
}
.menu__sub-column {
  flex: 1;
  margin: 0 0.675rem;
  min-width: 20rem;
}
.menu__sub-column:last-child .menu__sub-list {
  padding-bottom: 0;
}
.menu__sub-item--title {
  border-bottom: 0.1rem solid #d9d9d9;
  color: rgba(0, 0, 0, 0.54);
  padding-bottom: 1rem;
  text-transform: uppercase;
}
@media screen and (max-width: 47.9375em) {
  .menu .menu__sub-link {
    padding: 0;
  }
}
.offer {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.16);
}
.offer__title {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.33;
  align-items: center;
  background-color: #f9f5f8;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: flex;
  justify-content: center;
  min-height: 8rem;
  padding: 1rem;
  position: relative;
  text-align: center;
}
.offer__title span {
  font-weight: 900;
}
.offer__featured {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/bubble-arrow.5d73f2a1.svg)
    no-repeat 50%;
  background-size: 14rem;
  color: #fff;
  font-size: 1.4rem;
  height: 12rem;
  position: absolute;
  right: -3rem;
  top: -8rem;
  width: 12rem;
}
@media screen and (max-width: 64em) {
  .offer__featured {
    right: -3rem;
  }
}
.offer__featured span {
  display: block;
  transform: rotate(-7deg);
  position: relative;
  top: 3.6rem;
}
.offer__body {
  padding: 0 3rem 2rem;
  text-align: center;
}
.offer__advice {
  align-items: center;
  border-bottom: 0.1rem solid #d9d9d9;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
}
.offer__advice .simpletooltip_container {
  position: absolute;
  right: -1rem;
}
.offer__advice button.js-simple-tooltip {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.offer__advice svg {
  flex-shrink: 0;
  height: 3rem;
  margin-left: auto;
  position: relative;
  transition: all 0.3s ease;
  width: 3rem;
}
.offer__advice-title {
  font-size: 1.3rem;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.54);
  flex: 1;
  margin-bottom: 0;
  padding: 0 3rem;
  text-transform: uppercase;
}
.offer__text {
  padding: 3rem 0 0;
}
.offer__text .button {
  margin-top: 1rem;
}
.offer__text ol,
.offer__text ul {
  text-align: left;
}
.offer__text hr {
  margin: 4rem 0;
}
.offer__text a:not(.button) {
  color: #9376b3;
  text-decoration: underline;
}
.reference__bubble {
  background-color: #f9f5f8;
  margin: 0;
  min-height: 62rem;
  padding: 0 1.35rem;
  position: relative;
}
@media screen and (max-width: 64em) {
  .reference__bubble {
    min-height: auto;
  }
}
.reference__bubble:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/background-reference.7720c7cf.svg)
    no-repeat 50%;
  bottom: 0;
  content: "";
  isolation: isolate;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 64em) {
  .reference__bubble:after {
    display: none;
  }
}
.reference__bubble-text {
  margin: 0 auto;
  max-width: 42rem;
  padding: 12rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .reference__bubble-text {
    background-color: #f9f5f8;
    padding: 5rem 6rem 4rem;
  }
  .reference__bubble-text:after {
    background: url(https://www.glowbl.com/app/themes/glowbl/build/images/background-reference-mobile.4add3704.svg)
      no-repeat 50%;
    bottom: 0;
    content: "";
    isolation: isolate;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.reference__bubble-list {
  bottom: 0;
  left: 0;
  min-height: 62rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .reference__bubble-list {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    position: static;
  }
}
.reference__bubble-item {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 12.743rem;
  position: absolute;
  width: 14.36rem;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item {
    margin-bottom: 1.35rem;
    position: relative;
    width: 33.33333%;
  }
}
@media screen and (max-width: 47.9375em) {
  .reference__bubble-item {
    width: 50%;
  }
}
.reference__bubble-item span {
  position: relative;
  z-index: 2;
}
.reference__bubble-item img {
  display: block;
  margin: 0 auto;
  max-height: 6rem;
  max-width: 9rem;
}
.reference__bubble-item:after {
  content: "";
  height: 12.743rem;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 14.36rem;
}
.reference__bubble-item:first-child {
  left: 19%;
  top: 60%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:first-child {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:first-child:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(2) {
  left: 70%;
  top: 13%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(2) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(2):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(3) {
  left: 22%;
  top: 13%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(3) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(3):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-b.0ce5e924.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(4) {
  left: 70%;
  top: 55%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(4) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(4):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-b.0ce5e924.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(5) {
  left: 32%;
  top: 77%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(5) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(5):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-b.0ce5e924.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(6) {
  left: 55%;
  top: 71%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(6) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(6):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(7) {
  left: 13%;
  top: 36%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(7) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(7):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-c.1cd7e2dc.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(8) {
  left: 79%;
  top: 36%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(8) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(8):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-c.1cd7e2dc.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(9) {
  left: 84%;
  top: 58%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(9) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(9):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(10) {
  left: 4%;
  top: 58%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(10) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(10):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-b.0ce5e924.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(11) {
  left: 87%;
  top: 13%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(11) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(11):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-b.0ce5e924.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(12) {
  left: 4%;
  top: 13%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(12) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(12):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(13) {
  left: 75%;
  top: 75%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(13) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(13):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-c.1cd7e2dc.svg)
    no-repeat 50%;
}
.reference__bubble-item:nth-child(14) {
  left: 12%;
  top: 75%;
}
@media screen and (max-width: 64em) {
  .reference__bubble-item:nth-child(14) {
    left: 0;
    top: 0;
  }
}
.reference__bubble-item:nth-child(14):after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-c.1cd7e2dc.svg)
    no-repeat 50%;
}
.reference__bubble-link {
  display: block;
}
.rich__accordion {
  margin: 8rem 0;
  overflow: hidden;
  padding: 0 2.7rem 5rem;
  position: relative;
}
@media screen and (max-width: 64em) {
  .rich__accordion {
    padding-bottom: 0;
  }
}
.flexible__header.rich__accordion-header {
  margin: 0 auto 10rem;
  width: 83.1644583009%;
}
.rich__accordion-inner {
  margin: 0 auto;
  min-height: 52rem;
  position: relative;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .rich__accordion-inner {
    min-height: auto;
    width: 100%;
  }
}
.rich__accordion-inner:before {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/background-rich-accordion.e3120a71.svg)
    no-repeat 0 0;
  background-size: 115.3rem 78.5rem;
  content: "";
  height: 78rem;
  isolation: isolate;
  left: -12rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: -20rem;
  width: 100%;
}
@media screen and (max-width: 64em) {
  .rich__accordion-inner:before {
    width: calc(100vw + 7.6rem);
    display: none;
  }
}
.rich__accordion-inner--inverse .rich__accordion-list {
  margin-left: auto;
}
.rich__accordion-inner--inverse .rich__accordion-slider {
  left: 0;
}
.rich__accordion-list {
  max-width: 33.4rem;
  position: relative;
  top: 9rem;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .rich__accordion-list {
    max-width: none;
    position: static;
  }
}
.rich__accordion-slider {
  opacity: 0;
  left: 23.2657833203%;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
  width: 76.73422%;
}
.rich__accordion-slider.is-active {
  opacity: 1;
}
@media screen and (max-width: 64em) {
  .rich__accordion-slider {
    display: none;
  }
}
.rich-text {
  margin: 1rem 0;
  padding: 0 2.7rem;
  position: relative;
  overflow: hidden;
}
.rich-text .rich-text__header {
  margin-bottom: 2rem;
}
.rich-text__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .rich-text__inner {
    width: 100%;
  }
}
.rich-text__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.6rem;
  margin-right: -1.6rem;
}
.rich-text__item {
  margin: 3rem 1.6rem;
}
@media screen and (max-width: 47.9375em) {
  .rich-text__item {
    margin: 0.8rem 1.6rem;
  }
}
.rich-text__item--33 {
  width: calc(33.33333% - 3.2rem);
}
@media screen and (max-width: 64em) {
  .rich-text__item--33 {
    width: 100%;
  }
}
.rich-text__item--50 {
  width: calc(50% - 3.2rem);
}
@media screen and (max-width: 35.3125em) {
  .rich-text__item--50 {
    width: 100%;
  }
}
.rich-text__item--66 {
  width: calc(66.66667% - 3.2rem);
}
@media screen and (max-width: 64em) {
  .rich-text__item--66 {
    width: 100%;
  }
}
.rich-text__item--100 {
  width: 100%;
}
.rich-text__video {
  padding-top: 56.25%;
  position: relative;
}
.rich-text__video iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.share {
  margin-top: 2rem;
}
.share,
.share__inner {
  display: flex;
  justify-content: flex-end;
}
.share__inner {
  align-items: center;
  border-bottom: 0.1rem solid #d9d9d9;
  max-width: 37.5rem;
  padding-bottom: 1rem;
}
.share__label {
  margin-right: 2rem;
  margin-bottom: 0;
}
.share__list {
  align-items: center;
  display: flex;
}
.share__list .share__item {
  margin-right: 1.5rem;
  margin-bottom: 0;
}
.share__list .share__item:last-child svg {
  height: 2rem;
  width: 2rem;
}
.share__list .share__item svg {
  fill: #9376b3;
  height: 2.5rem;
  width: 2.5rem;
}
.table {
  margin: 8rem 0;
  padding: 0 2.7rem;
  position: relative;
  overflow: hidden;
}
.table__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .table__inner {
    width: 100%;
  }
}
.table__container {
  overflow-x: auto;
  width: 100%;
}
@media screen and (max-width: 64em) {
  .table__container {
    padding-right: 1.35rem;
  }
}
table {
  border-collapse: collapse;
  width: 102rem !important;
}
@media screen and (max-width: 64em) {
  table {
    width: 85rem;
  }
}
thead tr {
  border-bottom: 0.1rem solid #d9d9d9;
}
thead th {
  font-weight: 400;
  padding: 0 0.5rem 2rem;
}
tbody tr:first-child td {
  padding-top: 3.5rem;
}
tbody tr:last-child td {
  border-bottom: 0;
}
tbody td {
  border-bottom: 0.1rem solid #d9d9d9;
  border-spacing: 1rem;
  padding: 2rem 0.5rem;
}
.testimony__name {
  color: hsla(0, 0%, 100%, 0.7);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}
.testimony__company,
.testimony__job {
  color: rgba(0, 0, 0, 0.81);
  margin-bottom: 0;
}
.testimony__company {
  font-weight: 600;
  text-transform: uppercase;
}
.testimony--full {
  margin: 4rem 0;
  padding: 0 2.7rem;
  position: relative;
}
.testimony--full .testimony__list--single .testimony__item-inner {
  padding-bottom: 3rem;
}
.testimony--full .testimony__list--single .splide__arrow,
.testimony--full .testimony__list--single .splide__pagination {
  display: none;
}
.testimony--full .testimony__inner {
  margin: 0 auto;
  width: 83.1644583009%;
}
@media screen and (max-width: 64em) {
  .testimony--full .testimony__inner {
    width: 100%;
  }
}
.testimony--full .testimony__item {
  padding-top: 6rem;
  text-align: center;
}
.testimony--full .testimony__item-inner {
  background-image: linear-gradient(
    171deg,
    #bf63a4 -22%,
    #b47dad 13%,
    #9075b2 89%
  );
  border: 0.1rem solid hsla(0, 0%, 100%, 0.33);
  border-radius: 0.5rem;
  box-shadow: 0.4rem 0.7rem 1.6rem 0 rgba(0, 0, 0, 0.39);
  height: 100%;
  margin-bottom: 0;
  padding: 6rem 15%;
  position: relative;
}
.testimony--full .testimony__item-inner:before {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/bubble-dots-secondary.84c13cfa.svg)
    no-repeat 50%;
  background-size: 15rem;
  bottom: 0;
  content: "";
  isolation: isolate;
  left: -2rem;
  height: 14rem;
  margin: 0 auto;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: -7.5rem;
  width: 15rem;
  z-index: -1;
}
@media screen and (max-width: 47.9375em) {
  .testimony--full .testimony__item-inner {
    padding: 6rem;
  }
}
@media screen and (max-width: 35.3125em) {
  .testimony--full .testimony__item-inner {
    padding: 6rem 2.7rem;
  }
}
.testimony--full .testimony__header {
  display: flex;
  justify-content: center;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -4rem;
}
.testimony--full .testimony__profile {
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  border: 0.2rem solid #fdfbff;
  border-radius: 6rem;
  height: 6rem;
  margin-left: 2rem;
  margin-right: 3rem;
  position: relative;
  width: 6rem;
}
.testimony--full .testimony__profile img {
  border-radius: 6rem;
}
.testimony--full .testimony__logo {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 9.5rem;
  position: relative;
  top: -2rem;
  width: 8.5rem;
  transform: scale(1.35);
}
.testimony--full .testimony__logo:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/reference-a.58c97e4b.svg)
    no-repeat 50%;
  content: "";
  position: absolute;
  top: 0;
  height: 9.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 8.5rem;
}
.testimony--full .testimony__logo:before {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/bubble-ghost.7bae9658.svg)
    no-repeat 50%;
  background-size: 11rem;
  bottom: 0;
  content: "";
  left: -1rem;
  height: 10rem;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 11rem;
  z-index: 0;
}
.testimony--full .testimony__logo img,
.testimony--full .testimony__logo svg {
  max-height: 4rem;
  max-width: 8rem;
  position: relative;
  z-index: 2;
}
.testimony--full .testimony__text {
  color: #fff;
}
.testimony--full .testimony__footer {
  margin-top: 3rem;
}
.testimony--full .splide__pagination {
  bottom: 3rem;
}
.testimony--full .splide__pagination__page {
  background: transparent;
  border: 0.1rem solid #fff;
  border-radius: 1rem;
  height: 1rem;
  margin: 0.3rem 0.5rem;
  opacity: 0.5;
  width: 1rem;
}
.testimony--full .splide__pagination__page.is-active {
  background: #fff;
  opacity: 1;
  transform: scale(1);
}
.testimony--full .splide__arrow {
  background-color: transparent;
  border: 0.1rem solid #fff;
  border-radius: 2.4rem;
  color: #fff;
  height: 2.4rem;
  opacity: 1;
  top: calc(50% + 3rem);
  width: 2.4rem;
}
.testimony--full .splide__arrow svg {
  height: 1.5rem;
  width: 1.5rem;
}
.testimony--widget .testimony__item {
  background-image: linear-gradient(
    171deg,
    #bf63a4 -22%,
    #b47dad 13%,
    #9075b2 89%
  );
  border: 0.1rem solid hsla(0, 0%, 100%, 0.33);
  border-radius: 0.5rem;
  box-shadow: 0.4rem 0.7rem 1.6rem 0 rgba(0, 0, 0, 0.39);
  position: relative;
}
.testimony--widget .testimony__item:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/bubble-dots.07c102bc.svg)
    no-repeat 50%;
  background-size: 17rem;
  bottom: 0;
  content: "";
  isolation: isolate;
  left: -6rem;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: -3rem;
  width: 16rem;
  z-index: -1;
}
.testimony--widget .testimony__image {
  background-color: #fff;
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  border: 0.2rem solid #fdfbff;
  border-radius: 4.5rem;
  display: flex;
  height: 4.5rem;
  left: -2.25rem;
  position: absolute;
  top: -2.25rem;
  width: 4.5rem;
}
.testimony--widget .testimony__image img {
  border-radius: 4.5rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.testimony--widget .testimony__text {
  padding: 3rem 2.3rem;
}
.testimony--widget .testimony__text p {
  line-height: 1.25;
}
.testimony--widget .testimony__main {
  color: #fff;
  line-height: 1.25;
}
.testimony--widget .testimony__footer {
  margin-top: 2rem;
}
.simpletooltip[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
}
.simpletooltip[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.simpletooltip_container {
  display: block;
  position: relative;
}
.simpletooltip {
  background-color: #f9f5f8;
  border-radius: 0.4rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  line-height: 1.3;
  left: auto;
  min-height: 17rem;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  text-align: left;
  top: -22rem;
  transition: all 0.3s ease;
  width: 26rem;
  z-index: 666;
}
button.js-simple-tooltip {
  width: 100%;
}
.wysiwyg ol,
.wysiwyg ul {
  list-style-position: inside;
  text-align: left;
}
.wysiwyg li {
  margin-bottom: 1rem;
}
.wysiwyg a:not(.button) {
  color: #9376b3;
  text-decoration: underline;
}
.flexible__header {
  margin: 0 auto 4rem;
  max-width: 85rem;
  padding: 0 1.35rem;
  text-align: center;
}
@media screen and (max-width: 64em) {
  .flexible__header {
    margin: 0 auto 3rem;
    width: 100%;
  }
}
.header {
  background-color: #fff;
  border-bottom: 0.1rem solid #eaeaea;
  left: 0;
  padding: 0 1.35rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}
.header__inner {
  align-items: center;
  display: flex;
  min-height: 7.6rem;
}
@media screen and (max-width: 47.9375em) {
  .header__inner {
    min-height: 6.4rem;
  }
}
.header__open {
  display: none;
  margin-right: 1rem;
  height: 4.4rem;
  width: 4.4rem;
}
@media screen and (max-width: 47.9375em) {
  .header__open {
    display: block;
  }
}
.header__open svg {
  height: 1.8rem;
  margin: 0 auto;
  width: 1.8rem;
}
.header__logo svg {
  height: 4rem;
  width: 13rem;
}
@media screen and (max-width: 35.3125em) {
  .header__logo svg {
    height: 2.7rem;
    width: 9.6rem;
  }
}
.header__menu {
  margin: 0 3%;
}
@media screen and (min-width: 48em) {
  .header__menu {
    min-height: inherit;
  }
}
@media screen and (max-width: 47.9375em) {
  .header__menu {
    margin: 0;
  }
}
.header__action {
  align-items: center;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 74.9375em) {
  .header__action {
    display: none;
  }
}
.header__action--mobile {
  display: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 74.9375em) {
  .header__action--mobile {
    align-items: center;
    display: flex;
    margin-left: auto;
  }
}
.header__action--mobile-hide {
  opacity: 0;
  visibility: hidden;
}
.header__account-link {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 4.4rem;
  width: 4.4rem;
}
.header__account-link svg {
  fill: rgba(0, 0, 0, 0.8);
  height: 2rem;
  width: 2rem;
}
.header__action-item {
  margin-right: 2.4rem;
}
.header__action-item:last-child {
  margin-right: 0;
}
.header__action-link {
  opacity: 0.54;
}
.header__action-link:focus,
.header__action-link:hover {
  text-decoration: underline;
}
.header__other {
  margin-left: 1rem;
  position: relative;
}
.header__other-inner {
  background-color: #fff;
  border-radius: 0.8rem;
  border: 0.1rem solid #d9d9d9;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  opacity: 0;
  padding: 2rem 3rem 1rem;
  position: absolute;
  right: 0.5rem;
  top: 4.5rem;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 26rem;
}
.header__other-inner:before {
  background-color: #fff;
  bottom: calc(100% - 0.6rem);
  border-color: #d9d9d9 transparent transparent #d9d9d9;
  border-style: solid;
  border-width: 0.1rem;
  content: "";
  display: block;
  right: 1rem;
  height: 1.2rem;
  margin: auto;
  position: absolute;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 1.2rem;
}
.header__other-inner a:focus,
.header__other-inner a:hover {
  color: #9376b3;
  text-decoration: underline;
}
.header__other-inner[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.header__other-button {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 4.4rem;
  width: 4.4rem;
}
.header__other-button svg {
  fill: rgba(0, 0, 0, 0.8);
  height: 2rem;
  width: 0.45rem;
}
.header__close {
  height: 4.4rem;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 4.4rem;
}
.header__close svg {
  height: 4.2rem;
  width: 4.2rem;
}
.header__close--is-active {
  visibility: visible;
  opacity: 1;
}
.main {
  min-height: calc(100vh - 7.6rem);
  padding-top: 7.6rem;
}
@media screen and (max-width: 47.9375em) {
  .main {
    padding-top: 6.4rem;
  }
}
body.admin-bar .main {
  padding-top: 4.4rem;
}
.content--complex {
  position: relative;
}
.content--complex:after,
.content--complex:before {
  content: "";
  position: absolute;
}
@media screen and (max-width: 64em) {
  .content--complex:after,
  .content--complex:before {
    display: none;
  }
}
.content--complex:before {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/minhomepage-hero-1character.040179d5.png)
    no-repeat 50%;
  background-size: 12vw;
  left: 4vw;
  height: 12vw;
  top: calc(16vw + 7.6rem);
  width: 12vw;
}
.content--complex:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/minhomepage-hero-2character.1e4b9768.png)
    no-repeat 50%;
  background-size: 7vw;
  height: 12vw;
  right: 12vw;
  top: calc(16vw + 7.6rem);
  width: 9vw;
}
.footer {
  background-color: #2b323d;
}
.footer__main {
  padding: 4.5rem 2.7rem;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .footer__main {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 35.3125em) {
  .footer__main {
    padding: 4rem 2.7rem;
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.675rem;
  margin-right: -0.675rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu {
    margin: 0;
  }
}
.footer__menu-item {
  color: #fff;
  flex: 1;
  margin: 0 0.675rem;
  max-width: 20.1rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-item {
    flex: none;
    max-width: none;
    margin: 1.35rem 0;
    width: 100%;
  }
}
.footer__menu-item--large {
  max-width: 41.7rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-item--large {
    max-width: none;
    width: 100%;
  }
}
.footer__menu-item--large .footer__menu-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 64em) {
  .footer__menu-item--large .footer__menu-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-item--large .footer__menu-list {
    flex-direction: row;
  }
}
.footer__menu-item--large .footer__menu-list li {
  padding-right: 0.675rem;
  width: 50%;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-item--others {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 25em) {
  .footer__menu-item--others {
    flex-direction: column;
  }
}
.footer__menu-title {
  background-color: rgba(149, 153, 158, 0.2);
  letter-spacing: 0.085rem;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
}
.footer__menu-list {
  padding: 1rem 1rem 0;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__menu-list li {
  background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/triangle-list.319936d1.svg);
  background-size: 1.2rem 0.8rem;
  background-repeat: no-repeat;
  background-position: top 0.75rem left;
  letter-spacing: 0.085rem;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-list li {
    padding-right: 0.675rem;
    width: 50%;
  }
}
.footer__menu-list a {
  color: #fff;
}
.footer__menu-list a:focus,
.footer__menu-list a:hover {
  text-decoration: underline;
}
.footer__subtitle {
  border-bottom: 0.1rem solid;
  text-transform: uppercase;
}
.footer__subtitle,
.footer__subtitle + p {
  color: hsla(0, 0%, 100%, 0.5);
  letter-spacing: 0.085rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__newsletter {
    padding-right: 0.675rem;
    width: 50%;
  }
}
@media screen and (max-width: 25em) {
  .footer__newsletter {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer__column {
    padding-left: 0.675rem;
    width: 50%;
  }
}
@media screen and (max-width: 25em) {
  .footer__column {
    padding-left: 0;
    width: 100%;
  }
}
.footer__account a {
  max-width: 20rem;
  width: 100%;
}
.footer__lang {
  margin-top: 2rem;
}
.footer__lang a:focus,
.footer__lang a:hover {
  text-decoration: underline;
}
.footer__sub {
  background-color: #404751;
  border-top: 0.1rem solid #707070;
  color: hsla(0, 0%, 100%, 0.7);
  padding: 1.5rem 2.7rem;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .footer__sub {
    padding: 3rem 2.7rem;
  }
}
.footer__sub-inner,
.footer__sub-list {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__sub-list {
  margin: 0 0.5rem;
}
.footer__sub-list li {
  margin: 0 0.25rem;
}
@media screen and (max-width: 47.9375em) {
  .footer__sub-list li:first-child:before {
    display: none;
  }
}
.footer__sub-list li:before {
  content: "-";
  display: inline-flex;
  margin-right: 0.75rem;
}
.footer__sub-list a:focus,
.footer__sub-list a:hover {
  text-decoration: underline;
}
.footer__sub-social {
  margin-left: 3rem;
}
@media screen and (max-width: 64em) {
  .footer__sub-social {
    margin-left: 0;
    margin-top: 3rem;
    width: 100%;
  }
}
.footer__sub-social-list {
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer__sub-social-item {
  margin-right: 1rem;
}
.footer__sub-social-item:last-child {
  margin-right: 0;
}
.footer__sub-social-link img {
  height: 2.5rem;
  width: 2.5rem;
}
.error-404,
.error-404 > .contact__body-inner,
.error-404 > .container,
.error-404 > .media__compact,
.error-404 > .page__hero-inner {
  min-height: inherit;
}
.error-404__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  text-align: center;
}
.error-404__button {
  margin-top: 4rem;
}
.contact {
  min-height: calc(100vh - 7.6rem);
}
@media screen and (max-width: 47.9375em) {
  .contact {
    min-height: calc(100vh - 6.4rem);
  }
}
.contact__header {
  background-color: #f9f5f8;
  padding: 6rem 2.7rem 14rem;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .contact__header {
    padding: 3rem 0 13rem;
  }
}
.contact__body {
  position: relative;
  top: -11rem;
}
.contact__body iframe {
  width: 100% !important;
}
.contact__body-inner {
  background-color: #fff;
  box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.16);
  max-width: 74.3rem;
  min-height: 50rem;
  padding: 1.35rem 2.7rem;
  width: 100%;
}
.contact__background {
  top: -10rem;
  max-height: 77rem;
  max-width: 128.3rem;
  margin: 0 auto;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 47.9375em) {
  .contact__background {
    display: none;
  }
}
.homepage {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/hero-homepage.2dfcdc5e.svg)
      no-repeat 0 0,
    url(https://www.glowbl.com/app/themes/glowbl/build/images/body-background-left.64db3909.svg)
      repeat-y 0 0,
    url(https://www.glowbl.com/app/themes/glowbl/build/images/body-background-right.b89fcb50.svg)
      repeat-y 100% 0;
  background-size: auto, 20rem, 20rem;
}
@media screen and (max-width: 47.9375em) {
  .homepage {
    background: url(https://www.glowbl.com/app/themes/glowbl/build/images/purple-banner.344e9415.svg)
        no-repeat 0 0,
      url(https://www.glowbl.com/app/themes/glowbl/build/images/generic-banner.8f238f88.svg)
        no-repeat 0 0;
  }
}
.homepage__hero .hero__inner {
  margin: 0 auto;
  padding-top: 10.5vw;
  width: 80%;
}
@media screen and (max-width: 35.3125em) {
  .homepage__hero .hero__inner {
    padding: 10.5vw 1.35rem 0;
    width: auto;
  }
}
.homepage__hero .hero__inner:after,
.homepage__hero .hero__inner:before {
  content: "";
  position: absolute;
}
@media screen and (max-width: 35.3125em) {
  .homepage__hero .hero__inner:after,
  .homepage__hero .hero__inner:before {
    display: none;
  }
}
.homepage__hero .hero__inner:before {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/homepage-hero-webcam.e70ae7fc.png)
    no-repeat 50%;
  background-size: 12vw;
  left: 6vw;
  height: 12vw;
  top: calc(5vw + 7.6rem);
  width: 12vw;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__inner:before {
    top: calc(5vw + 6.4rem);
  }
}
.homepage__hero .hero__inner:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/homepage-hero-character.7bbdd806.png)
    no-repeat 50%;
  background-size: 7vw;
  left: 12vw;
  height: 12vw;
  top: calc(28vw + 7.6rem);
  width: 9vw;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__inner:after {
    top: calc(28vw + 6.4rem);
  }
}
.homepage__hero .hero__text {
  padding-left: 16.66667%;
  position: relative;
  width: 58.33333%;
  z-index: 3;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__text {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 35.3125em) {
  .homepage__hero .hero__text {
    padding-left: 0;
  }
}
.homepage__hero .hero__text .button {
  margin: 0.675rem;
}
.homepage__hero .hero__slider {
  position: absolute;
  right: 0;
  top: 7.6rem;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__slider {
    margin-top: 3rem;
    position: static;
    top: 6.4rem;
  }
}
.homepage__hero .hero__slider-item {
  min-height: 100rem;
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__slider-item {
    display: none;
  }
  .homepage__hero .hero__slider-item[data-index="0"] {
    display: block;
    min-height: auto;
  }
}
.homepage__hero .hero__slider-item > div {
  position: absolute;
  right: 0;
  top: 0;
  width: 41.9329696025%;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__slider-item > div {
    position: static;
    width: 100%;
  }
}
.homepage__hero .hero__slider-item picture {
  display: block;
  padding-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 35.3125em) {
  .homepage__hero .hero__slider-item picture {
    padding-top: 0;
  }
}
.homepage__hero .hero__slider-item:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/hero-homepage-slider.459313f2.svg)
    no-repeat 21vw 0;
  background-size: 44vw;
  content: "";
  display: block;
  height: 38vw;
  position: absolute;
  right: 0;
  top: 0;
  width: 64vw;
  z-index: -1;
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .hero__slider-item:after {
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 35.3125em) {
  .homepage__hero .hero__slider-item:after {
    display: none;
  }
}
.homepage__hero .hero__slider-item--even:after {
  background: url(https://www.glowbl.com/app/themes/glowbl/build/images/hero-homepage-slider-2.46ac3286.svg)
    no-repeat 21vw 0;
  background-size: 44vw;
}
.homepage__hero .hero__slider-item--even.is-active:after {
  transform: translateX(6rem);
}
.homepage__hero .hero__slider-item--leave {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.homepage__hero .hero__slider-item--leave:after {
  transition: transform 1s ease;
  transform: translateX(20rem);
}
.homepage__hero .hero__slider-item--enter:after {
  -webkit-animation: enter 1.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation: enter 1.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.homepage__hero .hero__slider-item--rewind:after {
  -webkit-animation: rewind 1.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation: rewind 1.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@media screen and (max-width: 47.9375em) {
  .homepage__hero .splide__list {
    width: 100%;
  }
}
@-webkit-keyframes enter {
  0% {
    transform: translateX(100rem);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes enter {
  0% {
    transform: translateX(100rem);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes rewind {
  0% {
    transform: translateX(-100rem);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes rewind {
  0% {
    transform: translateX(-100rem);
  }
  to {
    transform: translateX(0);
  }
}
.homepage__flexible {
  margin-top: 12vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 87.5em) {
  .homepage__flexible {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 47.9375em) {
  .homepage__flexible {
    margin-top: 8vw;
  }
}
.offer-plans .column__offer {
  margin-top: 0;
}
.offer-plans__navigation {
  background-color: #292527;
  align-items: center;
  color: #fff;
}
.offer-plans__navigation-list {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 47.9375em) {
  .offer-plans__navigation-list {
    flex-direction: column;
  }
}
.offer-plans__navigation-item {
  flex: 1;
}
@media screen and (max-width: 47.9375em) {
  .offer-plans__navigation-item {
    width: 100%;
  }
}
.offer-plans__navigation-link {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.33;
  align-items: center;
  border-bottom: 0.8rem solid transparent;
  color: hsla(0, 0%, 100%, 0.7);
  display: flex;
  justify-content: center;
  min-height: 8rem;
  padding: 0 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .offer-plans__navigation-link {
    border-bottom-width: 0.4rem;
  }
}
.offer-plans__navigation-link.offer-plans__navigation-link--is-active,
.offer-plans__navigation-link:focus,
.offer-plans__navigation-link:hover {
  border-bottom-color: #fff;
  color: #fff;
}
.page__hero {
  padding: 8rem 0 0;
}
.page__hero-inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 20rem;
  width: 65.0818394388%;
}
@media screen and (max-width: 64em) {
  .page__hero-inner {
    width: 100%;
  }
}
@media screen and (max-width: 64em) {
  .page__hero--with-image {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 35.3125em) {
  .page__hero--with-image {
    padding-top: 15rem;
  }
}
.page__hero--with-image .page__hero-inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media screen and (max-width: 93.75em) {
  .page__hero--with-image .page__hero-inner {
    padding: 0 10rem;
  }
}
@media screen and (max-width: 64em) {
  .page__hero--with-image .page__hero-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 35.3125em) {
  .page__hero--with-image .page__hero-inner {
    padding: 0 0.675rem;
  }
}
.page__hero--with-image .page__hero-text {
  max-width: 41.8rem;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 64em) {
  .page__hero--with-image .page__hero-text {
    max-width: none;
    text-align: center;
  }
}
.page__hero--with-image .page__hero-image {
  align-items: center;
  display: flex;
  flex: 1;
  padding-left: 1.35rem;
}
@media screen and (max-width: 64em) {
  .page__hero--with-image .page__hero-image {
    padding-left: 0;
  }
}
.page__hero--with-image .page__hero-image--left {
  justify-content: flex-start;
}
.page__hero--with-image .page__hero-image--center {
  justify-content: center;
}
.page__hero--with-image .page__hero-image--right {
  justify-content: flex-end;
}
.page__hero-text {
  padding: 0 2.7rem;
  text-align: center;
}
.page__hero-text .button {
  margin: 0.675rem;
}
.page__hero-navigation {
  margin-top: auto;
  padding-top: 5rem;
  text-align: center;
}
.page__hero-navigation-list {
  background-color: #fff;
  box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.16);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: inline-flex;
  padding: 0 2.5rem;
}
.page__hero-navigation-link {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.33;
  border-bottom: 0.8rem solid transparent;
  display: block;
  opacity: 0.7;
  padding: 3rem 5rem 1.5rem;
  transition: all 0.3s ease;
}
.page__hero-navigation-link--is-active,
.page__hero-navigation-link:focus,
.page__hero-navigation-link:hover {
  border-bottom-color: #9376b3;
  opacity: 1;
}

/************************************************** JC  **********************************************/ 

 .home .media__small {
     box-shadow: 0 0 3.4rem rgba(0, 0, 0, 0.32);
     border-radius: 10px;
}
 .home .media {
    /*background: no-repeat top center url(https://www.glowbl.com/app/themes/glowbl/app/uploads/2020/12/background_home_video2.svg);
    */
     margin-bottom: 2.5em;
}
 .home .media__video iframe {
    border-radius: 10px;
     box-shadow: 0px 5px 10px #0000002b;
}
 .bordurevideo {
    position:relative;
     border: solid 1px red;
}
 .homepage__hero .hero__inner:before {
     background:none;
}
 video.camshome {
     border: solid 1px white;
}
 video.camshome{
     margin: 0 auto 0 auto;
     display: block;
     width: 25%;
     position: absolute;
     z-index: 100;
     left: -6vh;
     top: -26%;
     border: none;
}
 .bordurevideo::before{
     position:absolute;
     z-index:12;
     content: "a";
     width: 100%;
     border: solid 2px blue;
}
 @media screen and ( max-width: 1302px) {
     .home .media {
         background:none;
    }
     .home .media__small, .home .media__video {
         width: 100%;
    }
     .home .media__small iframe, .home .media__video iframe {
        border-radius:0px;
    }
     video.camshome{
         top: -15%;
    }
}
 @media screen and ( max-width: 1200px) {
     video.camshome{
         top: -10%;
    }
}
 @media screen and ( max-width:760px) {
     video.camshome{
         width: 100px;
         top:-14%;
    }
}
 @media screen and ( max-width: 550px) {
     video.camshome{
         display:none;
    }
}
/* Recaler les blocs acc0ordion list si trop long */
 .column__double-video {
     padding-top: 0%;
}
 .page-id-660 
/* Classes virtuelles */
 #component-3 
/*"NOTRE SINGULARITÃ‰" */
 .rich__accordion-list, .page-id-1991 
/* Virtual classrooms */
 #component-3 
/*"OUR UNIQUENESS" */
 .rich__accordion-list {
    top: -2rem;
}
 .page-id-2790 #component-6 
/*"Jumeau numÃ©riqueOUR UNIQUENESS" */
 .rich__accordion-list, .page-id-2844 #component-6 
/*"Jumeau numÃ©riqueOUR UNIQUENESS" */
 .rich__accordion-list {
    top: -5rem;
}
 .page-id-2844 .page-id-1446 
/* RÃ©unions en ligne */
 #component-2 
/*"NOTRE ATOUT" */
 .rich__accordion-list, .page-id-2146 
/* Online meetings */
 #component-2 
/*"OUR STRENGTH" */
 .rich__accordion-list {
    top: -1rem;
}
 .page-id-1509 
/* Webinars et sÃ©minaires */
 #component-2 
/*"UNE EXPÃ‰RIENCE SOCIALE INNOVANTE" */
 .rich__accordion-list, .page-id-2202 
/* Webinars and seminars */
 #component-2 
/*"AN INNOVATIVE SOCIAL EXPERIENCE" */
 .rich__accordion-list {
    top: -2rem;
}
/* .rich__accordion-list {
     max-width: 45.4rem;
}
 */

.image__text__cta .image__text__cta-item{
    overflow: hidden;
	border-radius: 8px;
}
.card__accordion-item {

    border-radius: 8px;
    overflow: hidden;}
 #component-7 .rich__accordion-list {
    top: 0rem;
}
 #component-666 .rich__accordion-list {
    top: 0rem;
}
 #component-8 .rich__accordion-list {
    top: 0rem;
}
 #component-2 .rich__accordion-list {
    top: 0rem;
}
/* ----------------------------------------------- */
/* - Ci-dessus Ã  intÃ¨gre dans le css gÃ©nÃ©ral - */
/* ----------------------------------------------- */
/* L'interlignage texte titre bloc */

/*accordion__title {
     line-height: 1.4em;
}
/* L'interlignage texte titre bloc */
/*.card__accordion-button-inner * {
     line-height: 1.1em;
     padding: 0.5em 0;
}
/* ----------------------------------------------- */
/* - Ci-dessus Ã  Modifier le css gÃ©nÃ©ral - */
/* ----------------------------------------------- */
/*.accordion__illustration svg, .accordion__illustration img {
     height: 5rem;
     width: 5rem;
}
/* .splide__track {
     box-shadow: 0px 8px 9px 10px rgba(196,172,184,0.30);
}

/* Fin jc */
/* Safari 9+ */
 @supports (overflow:-webkit-Marquee) and (justify-content:inherit) {
     .homepage__hero .hero__inner:before {
        background:url(https://www.glowbl.com/app/themes/glowbl/build/images/homepage-hero-webcam.e70ae7fc.png) no-repeat 50%;
    }
}

/* ----------------------------------------------- */
/* - Bloc aide  - */
/* ----------------------------------------------- */
.bricaide {
	display: flex;
    flex-direction: row;
	align-items: center;
}
.bricaide35 .bricaide1 {
	width: 35%;
  padding: 20px 40px 20px 20px;
}
.bricaide35 .bricaide2 {
	width: 65%;
}
.bricaide50 .bricaide1,
.bricaide50 .bricaide2
{
	width: 50%;
  padding: 20px;
}

.bricaide100 .bricaide1,
.bricaide100 .bricaide2 {
	width: 100%;
  padding: 20px;
}
.bricaide100 {
	flex-direction: column;
    align-items: center;}
.bricaide2 {
  padding: 20px;
}

.bricaide p, .bricaide li {
	font-size: 1.3em;
	font-weight: 300;
  line-height: 1.33;
}

.bricaide p{color: rgb(0 0 0 / 70%);}
.bricaide strong {color: rgb(0 0 0 / 96%);
	font-weight: 500;
}
.bricaide  ul li {    
	background-image: url(https://www.glowbl.com/app/themes/glowbl/build/images/triangle-list.319936d1.svg);
    background-size: 1.2rem 0.8rem;
    background-position: top 0.75rem left;
	background-repeat: no-repeat;
	    padding-left: 1.8rem;
}

.bricaide  img {
  display: block;
  max-width:100%;
  width: auto;
  height: auto;
 box-shadow: 1px 2px 20px #5555554a;
	    border-radius: 0.4em;
} 
.bricaide  video {
  display: block;
  width:100%;
  width: auto;
  height: auto;
 box-shadow: 1px 2px 20px #5555554a;
	    border-radius: 0.4em;
} 
.bricaide  ol { 
	list-style-type: auto;
	padding-left: 2.2em;
}
.bricaide  ol li { 
	font-size: 1.3em;
    font-weight: 300;
    line-height: 1.33;
    padding-left: -0.8em;
    list-style-position: outside;
}
.bricaide  ol li::marker {

    color: #9376b3;
    font-weight: 600;
    font-size: 1.4em;

}
.bricaide   .boxAlire {
    padding: 1em;
    background-color: #ffffffed;
    border-radius: 6px;
    border: solid 1px #e8e6e8;
    display: inline-block;
    width: 100%;
	
}
.bricaide   .boxAlire h4 {padding-bottom: 0.8em;}
.bricaide   .boxAlire li {font-size: 1.2em;}

.accordion__num {    
	border-radius: 1.5em;
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background: #e7dbe561;
    text-align: center;
    margin-right: 0.5em;
    color: #72777cb8;
    font-weight: 400;
}




del,  .icone{
font-family: "font_glowbl", serif;
text-decoration: none;
}


.bricaide del, .bricaide .icone{
    font-size: 1.2em;
    /* font-weight: 600; */
    display: inline-block;
    border: solid 2px #9376b3ab;
    background-color: #FFFFFF;
    border-radius: 100px;
    padding: 1px 5px;
	}

 @media screen and ( max-width: 1200px) {
   .bricaide {
	display: flex;
   flex-direction: column ;
	
		 
  }

	 .bricaide100 .bricaide2,
   .bricaide35 .bricaide2,
	 .bricaide50 .bricaide2,
	 .bricaide100 .bricaide1,
   .bricaide35 .bricaide1,
	 .bricaide50 .bricaide1,
	 .bricaide2 {
	width: 100%;
  padding: 20px 20px 20px 20px;
	}


	 .bricaide2 { text-align: center;}
}

.page-id-4265 .main.container {
	 max-width: 140.3rem;
	
}
.page-id-4265 .page__hero-inner{
	min-height: 0rem;
	    width: 85.081839%;
}

.page-id-4265 .accordion__list {
    margin: 3rem 0;
}

.page-id-4416 .image__text__cta-header{
	max-width: none;
	    padding: 0 0;
}


.page-id-4416 .image__text__cta {
    margin: 0 0 8rem 0;
}
/* - Fin Bloc aide  - */
/* ----------------------------------------------- */
.accordion__panel .slidesVideo {
	display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
	  align-items: flex-start;
	  gap: 1.5em;

	flex-wrap: wrap;


}
.accordion__panel .slidesVideo li{ 
	/*
	order: 4; 
	flex-grow: 4;
*/

   
    width: 31%;

    display: block;
	  flex-basis:auto;
	

}
.accordion__panel .slidesVideo a{    padding: 0.5em;   display: block; background-color: white; 
	 border-radius: 0.3em;
    border: solid 0.1em #e5e3e478;
	position: relative;


} 
.accordion__panel .slidesVideo a:hover{    background-color: #d7d1de9c;
} 
.accordion__panel .slidesVideo a:hover img{   opacity: 0.33; 
	
} 
.accordion__panel .slidesVideo a img{ 
    border-radius: 0.2em;
    box-shadow: -1px 2px 5px 1px rgb(0 0 0 / 8%);
}
.accordion__panel .slidesVideo a::before {
content: url(https://www.glowbl.com/app/themes/glowbl/assets/svg/iconeplay.svg);
 position: absolute;
    font-size: 0px;
    top: 20%;
    left: 35%;
    opacity: 0;
	display: block;
    width: 30%;
    height: 30%;
}
/*
.accordion__panel .slidesVideo a::after
{
  content: attr(data-after-content);
		 position: absolute;
	 top: 20%;
    left: 35%;
		display: block;
    width: 30%;
    height: 30%;
	    border: solid 1pxred;
	
}
.accordion__panel .slidesVideo a:hover::after
{}*/
.lien {color: #9376b3;
    text-decoration: underline;
	font-size: 1.1em;
	    font-weight: 300;
}
.accordion__panel .slidesVideo a:hover::before { opacity: 1;}
.accordion__panel .slidesVideo span{display: block; overflow: hidden;    font-size: 1.8rem;
    font-weight: 300;
    padding: 0.6rem 0;}

 .rich__accordion-list {
    top: 5rem;
}
.yoast_breadcrumb { }
.yoast_breadcrumb i{display: none; }

.yoast_breadcrumb .breadcrumb__link:after {
    height: 1rem;
    margin: 0 0.7rem 0 1rem;
    opacity: .6;
    width: 0.8rem;
}
.yoast_breadcrumb .icone::before {
  content: url('');
background: url(https://www.glowbl.com/app/themes/glowbl/assets/svg/home.svg) no-repeat;
	background-size: 100%;
    content: " ";
display: inline-block;
    height: 3.3rem;
    margin-left: 1.5rem;
    vertical-align: middle;
    width: 3.3rem;
}
.yoast_breadcrumb {
    margin-bottom: 3rem;
}
/*.aide-basique .listTuto {    display: none;}*/

.boxShadow {
    overflow: hidden;
    border-radius: 8px;
}
.boxShadow {
    background-color: #fff;
    box-shadow: 0 0 3.4rem rgb(0 0 0 / 16%);
    border-radius: 0.4rem;
    margin: 1.35rem;
    padding-bottom: 1rem;
    text-align: center;
    width: calc(33.33333% - 2.7rem);
}
.boxShadow .bricaide2 {
    padding-left: 5rem;
    padding-right: 5rem;
	padding-bottom: 4rem;
	padding-top:4rem; 
   /* width: 60%;*/
}

/******* jc ****/ 

:root { 
	--longueur: -350px;
	--temp: 25s;
	--width: 200px;
	--space: 10px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wrapperJ {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem 32px ;
	transform: scale(1.0);
	justify-content:flex-start;
	align-items:center;
	position: relative;
}

.wrapperJ::after,
.wrapperJ::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 32px;
  z-index: 10;
}

.wrapperJ::after {
	left: 0;
	background: linear-gradient(to right, #ffffff, #ffffff00);
}

.wrapperJ::before {
	right: 0;
	background: linear-gradient(to left, #ffffff, #ffffff00);
}

#wrapperJ {
	animation-name: animate;
}

.wrapperJ .item {
	filter: grayscale(100%);
	animation: animate var(--temp) alternate linear infinite;
	transition: filter 0.5s ease-out;
	list-style-type: none;
	max-width: var(--width);
	margin: 0 var(--space);
	padding: 0;
	height: auto;
}

.wrapperJ .item img {	
	width: auto;
	max-width: var(--width);
	height: 100%;
	max-height: 100%;
}

.wrapperJ .item:hover {
	filter: grayscale(0%);
	transform: scale(2);
	animation-play-state: paused;
}

.wrapperJ:hover {}

.wrapperJ:hover .item {
	animation-play-state: paused;
}

@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(var(--longueur), 0, 0);
	}
}




