@charset "UTF-8";
@keyframes favorite-throb {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.5);
  }
  75% {
    transform: scale(1.75);
  }
  100% {
    transform: scale(1);
  }
}
.audioplayer {
  user-select: none;
  font-family: "sofia-pro";
  position: fixed;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 100px;
  background-color: black;
  z-index: 1001;
  color: white;
  padding: 16px;
}
.audioplayer.playing button.play-pause:after {
  content: "pause_circle_filled" !important;
}
.audioplayer.with-current-track .nowplaying {
  visibility: visible;
}
.audioplayer .nowplaying {
  visibility: hidden;
  display: grid;
  grid-template-columns: 50px auto 1fr;
  grid-template-rows: 30px 20px;
  gap: 0 10px;
  white-space: nowrap;
  position: relative;
}
.audioplayer .nowplaying .track-title {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audioplayer .nowplaying .track-title:hover {
  text-decoration: underline;
}
.audioplayer .nowplaying .artist {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 400;
  color: #B8B7B7;
  grid-row: 2;
}
.audioplayer .nowplaying .album {
  display: none;
}
.audioplayer .nowplaying .tools {
  grid-row: 1/span 2;
  display: none;
}
.audioplayer .nowplaying button.favorite {
  cursor: pointer;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  padding: 0;
  margin: 0 10px;
}
.audioplayer .nowplaying button.favorite:after {
  color: white;
  font-size: 20px;
  vertical-align: middle;
  font-family: "Material Icons";
  content: "favorite_border";
  display: inline-block;
  position: relative;
  top: -1px;
}
.audioplayer .nowplaying button.favorite.selected:after {
  color: rgb(191, 63, 0);
  content: "favorite";
}
.audioplayer .nowplaying img.cover {
  grid-row: 1/span 2;
  width: 50px;
  height: 50px;
  object-fit: cover;
  background-color: #ccc;
  border-radius: 4px;
}
.audioplayer .nowplaying-auto {
  grid-template-columns: auto auto 1fr;
}
.audioplayer button {
  background-color: transparent;
  border: none;
}
.audioplayer .controls {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.audioplayer .controls .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.audioplayer .controls button {
  color: white;
  font-size: 38px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 38px;
  text-align: center;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  justify-content: center;
}
.audioplayer .controls button:after {
  font-family: "Material Icons";
}
.audioplayer .controls button.play-pause:after {
  content: "play_circle_filled";
}
.audioplayer .controls button.next:after {
  content: "skip_next";
}
.audioplayer .controls button.prev:after {
  content: "skip_previous";
}
.audioplayer .controls button.shuffle:after {
  opacity: 0.6;
  font-size: 24px;
  content: "shuffle";
}
.audioplayer .controls button.enabled:after {
  color: #8B7BFF;
  opacity: 1 !important;
}
.audioplayer .controls button.repeat:after {
  opacity: 0.6;
  font-size: 24px;
  content: "repeat";
}
.audioplayer .volume-controls {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  align-self: center;
  justify-self: end;
}
.audioplayer .volume-controls input[type=range] {
  cursor: hand;
  width: 120px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  min-height: 6px;
  border-radius: 3px;
  background-color: #C6C6C6;
  pointer-events: none;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  background-color: #8B7BFF;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.audioplayer .volume-controls input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb:hover {
  background: #d83d0e;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
  -webkit-box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
}
.audioplayer .volume-controls button.mute {
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: white;
  display: grid;
  align-items: center;
  justify-content: center;
}
.audioplayer .volume-controls button.mute:after {
  font-family: "Material Icons";
  content: "volume_up";
  font-size: 24px;
}
.audioplayer .volume-controls button.mute.muted:after {
  content: "volume_off";
}
@media only screen and (max-width: 768px) {
  .audioplayer .volume-controls {
    display: none;
  }
}
.audioplayer .progress-display {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.audioplayer .progress-display .progress {
  background-color: rgba(255, 255, 255, 0.25);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
}
.audioplayer .progress-display .progress > span.bar {
  border-radius: 3px;
  background-color: #8B7BFF;
  height: 100%;
}
.audioplayer .progress-display .duration {
  font-size: 12px;
  line-height: 16px;
  min-width: 30px;
}
.audioplayer .progress-display .duration.elapsed {
  text-align: right;
}
.audioplayer .progress-display .duration.total {
  text-align: left;
}
.audioplayer {
  transition: 0.5s transform, 0.5s height, 0.5s max-height;
}
.audioplayer:not(.with-current-track) {
  transform: translateY(100%);
}
@media only screen and (max-width: 768px) {
  .audioplayer:not(.with-current-track) {
    transform: translateY(100%);
  }
  .audioplayer:not(.with-current-track) .progress-display .duration {
    display: none;
  }
  .audioplayer {
    height: 70px;
    max-height: 70px;
  }
  .audioplayer.expanded {
    max-height: 525px;
    height: 525px;
    padding: 35px 35px 30px 35px;
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .audioplayer.expanded .nowplaying {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }
  .audioplayer.expanded .nowplaying:before {
    display: block;
    position: absolute;
    font-family: "Material Icons";
    content: "expand_more";
    color: white;
    left: 0;
    top: -30px;
    font-size: 28px;
  }
  .audioplayer.expanded .nowplaying .album {
    text-transform: uppercase;
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    text-align: center;
  }
  .audioplayer.expanded .nowplaying .artist {
    grid-row: 3;
  }
  .audioplayer.expanded .nowplaying .tools {
    grid-column: 2;
    grid-row: 2;
  }
  .audioplayer.expanded .nowplaying .cover {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    grid-column: 1/span 2;
    grid-row: 1;
    position: relative;
  }
  .audioplayer.expanded .progress-display {
    order: -1;
    grid-template-columns: auto 1fr auto;
  }
  .audioplayer.expanded .progress-display .progress {
    grid-column: 1/span 3;
  }
  .audioplayer.expanded .progress-display .duration.elapsed {
    grid-row: 2;
    grid-column: 1;
    text-align: left;
  }
  .audioplayer.expanded .progress-display .duration.total {
    grid-row: 2;
    grid-column: 3;
    text-align: right;
  }
  .audioplayer:not(.expanded) {
    max-height: 70px;
    padding: 12px 8px 8px 8px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .audioplayer:not(.expanded) button.favorite {
    display: none;
  }
  .audioplayer:not(.expanded) .nowplaying {
    grid-template-rows: 25px 25px;
  }
  .audioplayer:not(.expanded) .nowplaying .artist {
    position: relative;
    left: 83px;
  }
  .audioplayer:not(.expanded) .nowplaying .artist:before {
    content: "•";
    position: relative;
    top: -1px;
    padding-right: 8px;
  }
  .audioplayer:not(.expanded) .controls {
    align-items: center;
  }
  .audioplayer:not(.expanded) .progress-display {
    position: absolute;
    top: 0px;
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 1;
    background-color: #F0EFFB;
    grid-template-columns: 1fr;
  }
  .audioplayer:not(.expanded) .progress-display .progress {
    border-radius: 0;
  }
  .audioplayer:not(.expanded) .progress-display .progress > span.bar {
    height: 4px;
    border-radius: 0;
  }
  .audioplayer:not(.expanded) .progress-display .duration {
    position: absolute;
    bottom: -52px;
    left: 68px;
    z-index: 1;
    font-size: 13px;
    color: #B8B7B7;
    text-align: left;
  }
  .audioplayer:not(.expanded) .progress-display .duration.total {
    left: 100px;
  }
  .audioplayer:not(.expanded) .progress-display .duration.total:before {
    content: "/";
    padding-right: 8px;
  }
  .audioplayer:not(.expanded) .mob-extra-space-dur {
    left: 140px !important;
  }
  .audioplayer:not(.expanded) .mob-extra-space {
    left: 110px !important;
  }
  .audioplayer:not(.expanded) .controls button.next,
  .audioplayer:not(.expanded) .controls button.prev,
  .audioplayer:not(.expanded) .controls button.repeat,
  .audioplayer:not(.expanded) .controls button.shuffle {
    display: none;
  }
  .audioplayer:not(.expanded) .controls button.play-pause {
    font-size: 30px;
  }
  .audioplayer:not(.expanded) .controls button.play-pause:after {
    content: "play_arrow";
  }
  .audioplayer:not(.expanded).playing button.play-pause:after {
    content: "pause" !important;
  }
}

.aspect-16-9-img {
  aspect-ratio: 16/9;
  width: auto !important;
}

main.album h1, main.album h2, main.album h3, main.album h4, main.playlist h1, main.playlist h2, main.playlist h3, main.playlist h4 {
  font-weight: 400;
}
main.album h1, main.playlist h1 {
  font-size: 32px;
  margin: 0;
  line-height: 42px;
}
main.album h2, main.playlist h2 {
  font-size: 20px;
  margin: 0.25em 0 0.75em 0;
}
main.album, main.playlist {
  font-size: 16px;
  padding: 0 0 5em 0;
  font-family: "sofia-pro";
}
main.album.playing header button.play:before, main.playlist.playing header button.play:before {
  content: "pause" !important;
}
main.album header, main.playlist header {
  position: relative;
  color: white;
  text-shadow: 0 0 3px black;
  margin-bottom: 2em;
}
main.album header .actions, main.playlist header .actions {
  margin: 0;
  display: flex;
  gap: 8px;
}
main.album header .actions button.favorite, main.playlist header .actions button.favorite {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions button.favorite:hover, main.playlist header .actions button.favorite:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions button.favorite:after, main.playlist header .actions button.favorite:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
    right: 100%;
    left: auto;
  }
}
main.album header .actions button.favorite:hover:before, main.playlist header .actions button.favorite:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
    display: none;
  }
}
main.album header .actions button.favorite, main.playlist header .actions button.favorite {
  padding: 0px;
}
main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
  content: "Add favorite";
}
main.album header .actions button.favorite.selected:before, main.playlist header .actions button.favorite.selected:before {
  content: "Remove favorite";
}
main.album header .actions button.favorite.selected:after, main.playlist header .actions button.favorite.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmarkselected.svg");
  background-size: contain;
  animation-name: favorite-throb;
  animation-duration: 0.5s;
  animation-play-state: running;
  background-repeat: no-repeat;
  background-position: center;
}
main.album header .actions button.favorite:after, main.playlist header .actions button.favorite:after {
  content: "";
  background: url("/images/bookmark.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.album header .actions button.favorite:disabled, main.playlist header .actions button.favorite:disabled {
  opacity: 0.5;
}
main.album header .actions .favorite.sleepstories-icon.selected:after, main.playlist header .actions .favorite.sleepstories-icon.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmark_sleepstory_selected.svg") !important;
  background-size: contain !important;
  animation-name: favorite-throb !important;
  animation-duration: 0.5s !important;
  animation-play-state: running !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
main.album header .actions .favorite.sleepstories-icon:after, main.playlist header .actions .favorite.sleepstories-icon:after {
  content: " " !important;
  background: url("/images/bookmark_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.album header .actions button.share, main.playlist header .actions button.share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions button.share:hover, main.playlist header .actions button.share:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions button.share:after, main.playlist header .actions button.share:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions button.share:before, main.playlist header .actions button.share:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.album header .actions button.share:before, main.playlist header .actions button.share:before {
    right: 100%;
    left: auto;
  }
}
main.album header .actions button.share:hover:before, main.playlist header .actions button.share:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.album header .actions button.share:before, main.playlist header .actions button.share:before {
    display: none;
  }
}
main.album header .actions button.share, main.playlist header .actions button.share {
  padding: 0px;
}
main.album header .actions button.share:before, main.playlist header .actions button.share:before {
  content: "Share";
}
main.album header .actions button.share:after, main.playlist header .actions button.share:after {
  content: "";
  background: url("/images/share.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.album header .actions button.share.selected:before, main.playlist header .actions button.share.selected:before {
  display: none;
}
main.album header .actions button.share.selected .share-options, main.playlist header .actions button.share.selected .share-options {
  display: grid;
}
main.album header .actions button.share .share-options, main.playlist header .actions button.share .share-options {
  position: absolute;
  z-index: 900;
  top: calc(100% - 5px);
  left: 5px;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  display: none;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 6px;
}
main.album header .actions button.share .share-options.above, main.playlist header .actions button.share .share-options.above {
  top: auto;
  bottom: calc(100% - 5px);
}
main.album header .actions button.share .share-options.left, main.playlist header .actions button.share .share-options.left {
  left: auto;
  right: 5px;
}
main.album header .actions button.share .share-options button, main.playlist header .actions button.share .share-options button {
  font-family: "sofia-pro";
  color: black;
  background-color: white;
  line-height: 3em;
  text-align: left;
  padding: 0 15px 0 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
main.album header .actions button.share .share-options button:last-child, main.playlist header .actions button.share .share-options button:last-child {
  border-bottom: none;
}
main.album header .actions button.share .share-options button:before, main.playlist header .actions button.share .share-options button:before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  font-size: 18px;
  margin-right: 10px;
}
main.album header .actions button.share .share-options button[data-action=link]:before, main.playlist header .actions button.share .share-options button[data-action=link]:before {
  font-family: "Material Icons";
  content: "link";
  left: 1px;
  top: 0px;
}
main.album header .actions button.share .share-options button.icon:before, main.playlist header .actions button.share .share-options button.icon:before {
  font-size: 15px;
  font-family: "collective";
}
main.album header .actions button.share .share-options button:hover, main.playlist header .actions button.share .share-options button:hover {
  background-color: #eee;
}
main.album header .actions .share.sleepstories-icon:after, main.playlist header .actions .share.sleepstories-icon:after {
  content: "" !important;
  background: url("/images/share_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.album header .actions > button, main.playlist header .actions > button {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
main.album header .actions > button.play, main.playlist header .actions > button.play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions > button.play:hover, main.playlist header .actions > button.play:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions > button.play:after, main.playlist header .actions > button.play:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions > button.play, main.playlist header .actions > button.play {
  background-color: #8B7BFF !important;
}
main.album header .actions > button.play:before, main.playlist header .actions > button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  line-height: 40px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions > button.selected, main.playlist header .actions > button.selected {
  background-color: #8B7BFF !important;
}
@media only screen and (max-width: 425px) {
  main.album header .actions, main.playlist header .actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
  }
  main.album header .actions > button.play, main.playlist header .actions > button.play {
    order: 3;
    justify-self: end;
    width: 48px;
    height: 48px;
  }
  main.album header .actions > button.play:before, main.playlist header .actions > button.play:before {
    font-size: 26px;
    line-height: 48px;
  }
}
main.album header .wrapper, main.playlist header .wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 89px;
  padding-top: 40px;
  padding-right: 100px;
  padding-left: 100px;
}
main.album header .info, main.playlist header .info {
  display: flex;
  flex-direction: column;
}
main.album header .info .type, main.playlist header .info .type {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 6px;
}
main.album header .info .authors, main.playlist header .info .authors {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
main.album header .info .description, main.playlist header .info .description {
  max-width: 800px;
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 12px;
}
main.album header .info .description p:first-child, main.playlist header .info .description p:first-child {
  margin: 0;
}
main.album header .summary, main.playlist header .summary {
  font-family: "sofia-pro";
  font-weight: 300;
}
main.album header .cover, main.playlist header .cover {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
main.album header .cover button.play, main.playlist header .cover button.play {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  text-align: center;
}
main.album header .cover button.play:before, main.playlist header .cover button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  color: black;
  line-height: 40px;
  position: relative;
  top: -1px;
}
main.album header .cover img, main.playlist header .cover img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
main.album header .cover .aspect-16-9, main.playlist header .cover .aspect-16-9 {
  aspect-ratio: 16/9;
}
main.album header .healing-tone, main.playlist header .healing-tone {
  aspect-ratio: 16/9;
}
main.album header .bottom-space, main.playlist header .bottom-space {
  margin-bottom: 30px;
}
main.album header .tags, main.playlist header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.album header .tags a, main.playlist header .tags a {
  text-shadow: none;
  font-size: 13px;
  font-family: "sofia-pro";
  display: block;
  line-height: 32px;
  text-decoration: none;
  padding: 0 1em;
  white-space: nowrap;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.25);
}
main.album header .blurrybg, main.playlist header .blurrybg {
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  main.album header .cover, main.playlist header .cover {
    width: 150px;
  }
  main.album header h1, main.playlist header h1 {
    font-size: 24px;
  }
  main.album header h2, main.playlist header h2 {
    font-size: 18px;
  }
  main.album header .wrapper, main.playlist header .wrapper {
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 426px) {
  main.album header, main.playlist header {
    margin-bottom: 1em;
  }
  main.album header h1, main.album header .type, main.album header .description, main.playlist header h1, main.playlist header .type, main.playlist header .description {
    text-align: center;
  }
  main.album header .cover, main.playlist header .cover {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  main.album header .wrapper, main.playlist header .wrapper {
    gap: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
}
main.album .sleep-story .info h1, main.playlist .sleep-story .info h1 {
  line-height: 110%;
  margin-bottom: 10px;
}
main.album .sleep-story .info .type, main.playlist .sleep-story .info .type {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.5px;
  margin-bottom: 14px;
}
main.album .sleep-story .info .description, main.playlist .sleep-story .info .description {
  margin-bottom: 12px;
}
main.album .sleep-story .info .actions, main.playlist .sleep-story .info .actions {
  margin-top: 12px;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  main.album .sleep-story .wrapper, main.playlist .sleep-story .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 526px) {
  main.album .sleep-story .wrapper, main.playlist .sleep-story .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main.album .tracks, main.playlist .tracks {
  width: 100%;
  max-width: 100%;
  border: none;
  border-spacing: 0;
  font-family: "sofia-pro";
  table-layout: fixed;
}
main.album .tracks tr.hidden > td, main.playlist .tracks tr.hidden > td {
  padding: 0;
  height: 0px;
}
main.album .tracks .tracknum, main.playlist .tracks .tracknum {
  width: 80px;
  text-align: center;
}
main.album .tracks .tracknum > div, main.playlist .tracks .tracknum > div {
  padding: 15px 15px 15px 20px;
  position: relative;
  font-size: 12px;
  line-height: 15px;
}
main.album .tracks .tracknum > div:after, main.playlist .tracks .tracknum > div:after {
  text-align: center;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  content: "play_arrow";
  font-family: "Material Icons";
  background-color: #8B7BFF;
  color: white;
  display: block;
  font-size: 18px;
}
main.album .tracks .audio-track, main.playlist .tracks .audio-track {
  cursor: pointer;
  padding: 10px 0;
}
main.album .tracks .audio-track:hover, main.playlist .tracks .audio-track:hover {
  border-radius: 0.5px;
  background: rgba(139, 123, 255, 0.06);
}
main.album .tracks .audio-track:hover .tracknum > div:after, main.playlist .tracks .audio-track:hover .tracknum > div:after {
  visibility: visible;
}
main.album .tracks .audio-track a, main.playlist .tracks .audio-track a {
  text-decoration: none;
}
main.album .tracks .audio-track a:hover, main.playlist .tracks .audio-track a:hover {
  text-decoration: underline;
}
main.album .tracks .audio-track.playing:not(:hover) .tracknum > div:after, main.playlist .tracks .audio-track.playing:not(:hover) .tracknum > div:after {
  visibility: visible;
  content: "";
  background-image: url("/images/eq.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
}
main.album .tracks .audio-track.playing:hover .tracknum > div:after, main.playlist .tracks .audio-track.playing:hover .tracknum > div:after {
  content: "pause";
}
main.album .tracks th, main.playlist .tracks th {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  padding: 12px 10px 12px 10px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 17px;
}
main.album .tracks td.title, main.playlist .tracks td.title {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
}
main.album .tracks td.title .track-title, main.playlist .tracks td.title .track-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
main.album .tracks td.title .artist, main.playlist .tracks td.title .artist {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}
main.album .tracks td.album a, main.playlist .tracks td.album a {
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  white-space: nowrap;
}
main.album .tracks .duration, main.playlist .tracks .duration {
  text-align: right;
  padding-right: 15px;
  width: 70px;
  font-size: 12px;
  line-height: 19.5px;
  font-weight: 400;
}
main.album .tracks .thumbnail, main.playlist .tracks .thumbnail {
  text-align: center;
  width: 70px;
  padding: 10px 10px 10px 0;
}
main.album .tracks .thumbnail > div, main.playlist .tracks .thumbnail > div {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
main.album .tracks .thumbnail > div img, main.playlist .tracks .thumbnail > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  main.album .tracks .album, main.playlist .tracks .album {
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  main.album .tracks .tracknum, main.album .tracks .album, main.album .tracks .duration, main.playlist .tracks .tracknum, main.playlist .tracks .album, main.playlist .tracks .duration {
    display: none;
  }
  main.album .tracks .tracknum, main.album .tracks .album, main.album .tracks .duration, main.playlist .tracks .tracknum, main.playlist .tracks .album, main.playlist .tracks .duration {
    display: none;
  }
  main.album .tracks .audio-track.playing .thumbnail > div:after, main.playlist .tracks .audio-track.playing .thumbnail > div:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
    background-image: url("/images/eq-white.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    border-radius: 50%;
    background-color: #8B7BFF;
  }
  main.album .tracks, main.playlist .tracks {
    /*

     &:not(:hover) .tracknum > div:after {

     button.play {
        visibility: visible;
     }

    :not(:hover) button.play {
     &:after {
         display: none;
     }                
     background-image: url('/images/eq-white.svg');
     background-size: 20px 20px;
     background-repeat: no-repeat;
     background-position: center;
     }*/
  }
}
main.album .blurrybg, main.playlist .blurrybg {
  filter: brightness(50%);
}
main.album header .actions button.favorite.selected:after, main.playlist header .actions button.favorite.selected:after {
  background-image: url(/images/bookmarkselected-light.svg);
}

main.audio-track {
  flex: 1 1 100%;
  display: grid;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
main.audio-track h1, main.audio-track h2, main.audio-track h3, main.audio-track h4 {
  font-weight: 400;
}
main.audio-track h1 {
  font-size: 32px;
  margin: 0;
}
main.audio-track h2 {
  font-size: 20px;
  margin: 0.25em 0 0.75em 0;
}
main.audio-track {
  font-size: 16px;
  font-family: "sofia-pro";
}
main.audio-track header {
  position: relative;
  color: white;
  text-shadow: 0 0 3px black;
  margin-bottom: 2em;
}
main.audio-track header .actions {
  margin: 0;
  display: flex;
  gap: 8px;
}
main.audio-track header .actions button.favorite {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions button.favorite:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions button.favorite:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions button.favorite:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.audio-track header .actions button.favorite:before {
    right: 100%;
    left: auto;
  }
}
main.audio-track header .actions button.favorite:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.audio-track header .actions button.favorite:before {
    display: none;
  }
}
main.audio-track header .actions button.favorite {
  padding: 0px;
}
main.audio-track header .actions button.favorite:before {
  content: "Add favorite";
}
main.audio-track header .actions button.favorite.selected:before {
  content: "Remove favorite";
}
main.audio-track header .actions button.favorite.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmarkselected.svg");
  background-size: contain;
  animation-name: favorite-throb;
  animation-duration: 0.5s;
  animation-play-state: running;
  background-repeat: no-repeat;
  background-position: center;
}
main.audio-track header .actions button.favorite:after {
  content: "";
  background: url("/images/bookmark.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.audio-track header .actions button.favorite:disabled {
  opacity: 0.5;
}
main.audio-track header .actions .favorite.sleepstories-icon.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmark_sleepstory_selected.svg") !important;
  background-size: contain !important;
  animation-name: favorite-throb !important;
  animation-duration: 0.5s !important;
  animation-play-state: running !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
main.audio-track header .actions .favorite.sleepstories-icon:after {
  content: " " !important;
  background: url("/images/bookmark_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.audio-track header .actions button.share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions button.share:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions button.share:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions button.share:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.audio-track header .actions button.share:before {
    right: 100%;
    left: auto;
  }
}
main.audio-track header .actions button.share:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.audio-track header .actions button.share:before {
    display: none;
  }
}
main.audio-track header .actions button.share {
  padding: 0px;
}
main.audio-track header .actions button.share:before {
  content: "Share";
}
main.audio-track header .actions button.share:after {
  content: "";
  background: url("/images/share.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.audio-track header .actions button.share.selected:before {
  display: none;
}
main.audio-track header .actions button.share.selected .share-options {
  display: grid;
}
main.audio-track header .actions button.share .share-options {
  position: absolute;
  z-index: 900;
  top: calc(100% - 5px);
  left: 5px;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  display: none;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 6px;
}
main.audio-track header .actions button.share .share-options.above {
  top: auto;
  bottom: calc(100% - 5px);
}
main.audio-track header .actions button.share .share-options.left {
  left: auto;
  right: 5px;
}
main.audio-track header .actions button.share .share-options button {
  font-family: "sofia-pro";
  color: black;
  background-color: white;
  line-height: 3em;
  text-align: left;
  padding: 0 15px 0 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
main.audio-track header .actions button.share .share-options button:last-child {
  border-bottom: none;
}
main.audio-track header .actions button.share .share-options button:before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  font-size: 18px;
  margin-right: 10px;
}
main.audio-track header .actions button.share .share-options button[data-action=link]:before {
  font-family: "Material Icons";
  content: "link";
  left: 1px;
  top: 0px;
}
main.audio-track header .actions button.share .share-options button.icon:before {
  font-size: 15px;
  font-family: "collective";
}
main.audio-track header .actions button.share .share-options button:hover {
  background-color: #eee;
}
main.audio-track header .actions .share.sleepstories-icon:after {
  content: "" !important;
  background: url("/images/share_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.audio-track header .actions > button {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
main.audio-track header .actions > button.play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions > button.play:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions > button.play:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions > button.play {
  background-color: #8B7BFF !important;
}
main.audio-track header .actions > button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  line-height: 40px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions > button.selected {
  background-color: #8B7BFF !important;
}
@media only screen and (max-width: 425px) {
  main.audio-track header .actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
  }
  main.audio-track header .actions > button.play {
    order: 3;
    justify-self: end;
    width: 48px;
    height: 48px;
  }
  main.audio-track header .actions > button.play:before {
    font-size: 26px;
    line-height: 48px;
  }
}
main.audio-track header .wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 89px;
  padding-top: 40px;
  padding-right: 100px;
  padding-left: 100px;
}
main.audio-track header .info {
  display: flex;
  flex-direction: column;
}
main.audio-track header .info .type {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 6px;
}
main.audio-track header .info .authors {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
main.audio-track header .info .description {
  max-width: 800px;
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 12px;
}
main.audio-track header .info .description p:first-child {
  margin: 0;
}
main.audio-track header .summary {
  font-family: "sofia-pro";
  font-weight: 300;
}
main.audio-track header .cover {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
main.audio-track header .cover button.play {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  text-align: center;
}
main.audio-track header .cover button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  color: black;
  line-height: 40px;
  position: relative;
  top: -1px;
}
main.audio-track header .cover img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
main.audio-track header .cover .aspect-16-9 {
  aspect-ratio: 16/9;
}
main.audio-track header .healing-tone {
  aspect-ratio: 16/9;
}
main.audio-track header .bottom-space {
  margin-bottom: 30px;
}
main.audio-track header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.audio-track header .tags a {
  text-shadow: none;
  font-size: 13px;
  font-family: "sofia-pro";
  display: block;
  line-height: 32px;
  text-decoration: none;
  padding: 0 1em;
  white-space: nowrap;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.25);
}
main.audio-track header .blurrybg {
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  main.audio-track header .cover {
    width: 150px;
  }
  main.audio-track header h1 {
    font-size: 24px;
  }
  main.audio-track header h2 {
    font-size: 18px;
  }
  main.audio-track header .wrapper {
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 426px) {
  main.audio-track header {
    margin-bottom: 1em;
  }
  main.audio-track header h1, main.audio-track header .type, main.audio-track header .description {
    text-align: center;
  }
  main.audio-track header .cover {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  main.audio-track header .wrapper {
    gap: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
}
main.audio-track .sleep-story .info h1 {
  line-height: 110%;
  margin-bottom: 10px;
}
main.audio-track .sleep-story .info .type {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.5px;
  margin-bottom: 14px;
}
main.audio-track .sleep-story .info .description {
  margin-bottom: 12px;
}
main.audio-track .sleep-story .info .actions {
  margin-top: 12px;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  main.audio-track .sleep-story .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 526px) {
  main.audio-track .sleep-story .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main.audio-track.playing header button.play:before {
  content: "pause";
}
main.audio-track header {
  margin-bottom: 0;
  align-items: center;
  display: grid;
  min-height: calc(100vh - var(--header-height));
  /* padding-bottom: 90px; */
}
@media only screen and (max-width: 768px) {
  main.audio-track header {
    padding-bottom: 70px;
  }
}

@font-face {
  font-family: "collective";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url(https://static-living.roundglass.com/assets/fonts/collective/collective.woff2) format("woff2");
}
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "collective";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-lotus:before {
  content: "\e800";
}

.icon-location:before {
  content: "\e801";
}

.icon-peoples:before {
  content: "\e802";
}

.icon-facebook:before {
  content: "\e803";
}

.icon-heart:before {
  content: "\e804";
}

.icon-collective-black:before {
  content: "\e805";
}

.icon-twitter-share:before {
  content: "";
  background: url("https://res.cloudinary.com/roundglass/image/upload/v1719375978/rg/collective/assets/images/newtwittericon.png");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}

.icon-linkedin-share:before {
  content: "\e807";
}

.icon-fb-share:before {
  content: "\e808";
}

.icon-program:before {
  content: "\e809";
}

.icon-twitter:before {
  background: url("/images/X-1.png");
  background-size: contain;
  background-position: center;
  height: 100%;
  background-repeat: no-repeat;
  content: "";
}

.icon-photo:before {
  content: "\e80b";
}

.icon-nutrition:before {
  content: "\e80c";
}

.icon-notification:before {
  content: "\e80d";
}

.icon-method:before {
  content: "\e80e";
}

.icon-lessons:before {
  content: "\e80f";
}

.icon-media:before {
  content: "\e810";
}

.icon-ingredients:before {
  content: "\e811";
}

.icon-camera:before {
  content: "\e812";
}

.icon-pin:before {
  content: "\e813";
}

.icon-vimeo:before {
  content: "\e814";
}

.icon-zoom-in:before {
  content: "\e815";
}

.icon-zoom-out:before {
  content: "\e816";
}

.icon-picture:before {
  content: "\e817";
}

.icon-pinterest:before {
  content: "\e818";
}

.icon-fab-linkedin:before {
  content: "\e819";
}

.icon-globe:before {
  content: "\e80b";
}

.icon-fab-facebook:before {
  content: "\e81a";
}

.icon-fab-google:before {
  content: "\e81b";
}

.icon-discussion:before {
  content: "\e81c";
}

.icon-back_arrow:before {
  content: "\e81d";
}

.icon-instagram_color:before {
  content: "\e81e";
}

.icon-chevro-down:before {
  content: "\e81f";
}

.icon-chevron-left:before {
  content: "\e820";
}

.icon-chevron-right:before {
  content: "\e821";
}

.icon-chevron-up:before {
  content: "\e822";
}

.icon-triangle-down:before {
  content: "\e823";
}

.icon-compass:before {
  content: "\e824";
}

.icon-comment:before {
  content: "\e825";
}

.icon-calendar:before {
  content: "\e826";
}

.icon-triangle-left:before {
  content: "\e827";
}

.icon-triangle-right:before {
  content: "\e828";
}

.icon-triangle-up:before {
  content: "\e829";
}

.icon-medium:before {
  content: "\e836";
}

.icon-mail-alt:before {
  content: "\f0e0";
}

.icon-upload-cloud:before {
  content: "\f0ee";
}

.icon-youtube:before {
  content: "\f167";
}

.icon-instagram:before {
  content: "\f16d";
}

.icon-tumblr:before {
  content: "\f173";
}

.icon-apple:before {
  content: "\f179";
}

.icon-dribbble:before {
  content: "\f17d";
}

.icon-behance:before {
  content: "\f1b4";
}

.icon-spotify:before {
  content: "\f1bc";
}

.icon-soundcloud:before {
  content: "\f348";
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format("woff2");
  font-display: swap;
}
/* fallback */
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5euIg.woff2) format("woff2");
  font-display: swap;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.material-icons-outlined {
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

footer.page-footer {
  padding-top: 3.75rem;
  padding-bottom: 7.1875rem;
  background: #F0EEEB;
  position: relative;
}
@media (max-width: 768px) {
  footer.page-footer {
    padding: 2.5rem 0 5rem;
  }
}
footer.page-footer .logo img {
  width: 13.125rem;
}
@media (max-width: 768px) {
  footer.page-footer .logo a {
    display: flex;
    justify-content: center;
  }
}
footer.page-footer a {
  color: inherit;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
}
footer.page-footer h4 {
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer.page-footer h4 {
    line-height: 115%;
    margin: 1.25rem 0 1rem 0;
  }
}
footer.page-footer .multilevel div {
  display: grid;
}
footer.page-footer .multilevel p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  margin: 0;
  margin-bottom: 0.75rem;
}
footer.page-footer .multilevel a {
  margin-left: 1rem;
}
footer.page-footer nav.contents {
  margin: 2.5rem 0;
  display: flex;
  gap: 20%;
}
@media (max-width: 1400px) {
  footer.page-footer nav.contents {
    gap: 10%;
  }
}
@media (max-width: 1024px) {
  footer.page-footer nav.contents {
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-direction: column;
    align-items: center;
  }
}
footer.page-footer nav.contents > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer.page-footer nav.contents .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    display: none;
  }
}
footer.page-footer nav.contents .footer-nav a {
  margin-bottom: 0.75rem;
}
footer.page-footer nav.contents .footer-nav .about br {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav .about br {
    display: block;
  }
}
footer.page-footer nav.contents .footer-nav-sm {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav-sm {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    display: grid;
  }
}
footer.page-footer nav.contents .footer-nav-sm a {
  margin-bottom: 1rem;
}
footer.page-footer nav.contents .footer-nav-sm .business {
  margin-bottom: 2.5rem;
}
footer.page-footer nav.contents .footer-nav-sm .resources {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads {
    flex-direction: row;
  }
}
footer.page-footer nav.contents .downloads img {
  margin-bottom: 0.3125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads img {
    width: 8.125rem;
  }
}
footer.page-footer nav.rg-pages {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 0.0625rem solid #6A6E74;
  border-bottom: 0.0625rem solid #6A6E74;
  color: #040316;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages {
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rg-logo {
  margin-right: 1.25rem;
  display: flex;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rg-logo {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
footer.page-footer nav.rg-pages .rg-logo a {
  line-height: 1rem;
}
footer.page-footer nav.rg-pages .rg-logo img {
  width: 9.375rem;
}
footer.page-footer nav.rg-pages .rglinks {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    gap: 0.625rem;
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rglinks div {
  display: flex;
}
footer.page-footer nav.rg-pages .rglinks span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks span {
    margin: 0 0.375rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    grid-template-columns: 1fr 1fr;
  }
}
footer.page-footer nav.rg-pages .rglinks a,
footer.page-footer nav.rg-pages .rglinks span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks a,
  footer.page-footer nav.rg-pages .rglinks span {
    font-size: 0.75rem;
    line-height: 100%;
  }
}
footer.page-footer nav.rg-pages .rglinks a {
  cursor: pointer;
}
footer.page-footer nav.toc {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: #6A6E74;
}
@media (max-width: 768px) {
  footer.page-footer nav.toc {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer nav.toc span {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer nav.toc nav {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
}
@media (max-width: 576px) {
  footer.page-footer nav.toc nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer.page-footer .hidesm {
    display: none;
  }
}
footer.page-footer .legal {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .legal {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer .legal div {
  display: flex;
  align-items: center;
}
footer.page-footer .legal span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer .legal span {
    margin: 0 0.375rem;
  }
}
footer.page-footer .legal a {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer .social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .social {
    justify-content: center;
    gap: 1.5rem;
  }
}
footer.page-footer .social img {
  width: 1.125rem;
}
footer.page-footer .social a {
  background-color: #000;
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-wrap: wrap;
  }
  footer.page-footer nav.contents a.logo {
    flex: 1 0 100%;
    width: 100%;
  }
}

.footer-cta {
  z-index: 1000;
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-family: "sofia-pro", sans-serif;
  text-align: center;
  padding: 20px 2.5%;
  font-size: 1.5em;
  font-weight: 300;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.footer-cta strong {
  font-weight: 500;
}
.footer-cta .button {
  font-size: 16px;
  vertical-align: middle;
  font-weight: 500;
  line-height: 2.5em;
  margin: 10px 0;
}
@media only screen and (max-width: 576px) {
  .footer-cta {
    font-size: 1.2em;
    padding: 40px 2.5% 20px;
  }
}
.footer-cta.hidden {
  transform: translateY(105%);
}

.footer-cta.free {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.free h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.free div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free {
    grid-template-columns: auto;
  }
}
.footer-cta.free a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free a.button {
    grid-column: 1;
    grid-row: auto;
  }
}

.footer-cta.warn {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.warn h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  text-align: left;
}
.footer-cta.warn div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.warn a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn a.button {
    grid-column: 1;
    grid-row: auto;
  }
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn {
    grid-template-columns: auto;
  }
}
.footer-cta.warn button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 18px;
  position: absolute;
  top: 15%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn button.close {
    top: 10px;
    transform: none;
  }
}

.footer-cta.final {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 0 25px;
  padding: 80px 20px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.final:before {
  content: "";
  display: block;
  background-image: url("https://res.cloudinary.com/roundglass/image/upload/v1700632389/rg/collective/assets/logo986.png");
  background-position: 50% 50%;
  width: 80px;
  height: 80px;
  background-size: contain;
  grid-column: 1;
  grid-row: 1/span 2;
}
.footer-cta.final h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final a.button {
  grid-column: 3;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.footer-cta.final button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 24px;
  position: absolute;
  top: 10%;
  right: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.final button.close {
    top: 10px;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-cta.final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .footer-cta.final:before {
    margin: 0;
  }
}

* {
  box-sizing: border-box;
  font-family: "sofia-pro";
}

html {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-size-adjust: none;
}

body {
  max-width: 100vw;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
body > header, body > footer {
  flex: 0 0 auto;
}
body > main {
  flex: 1 0 100%;
  position: relative;
  margin-top: -0.5px; /* fix small antialiasing bug in safari, where a while line would appear between the header and content */
}
body.webview > header, body.webview > footer, body.webview section.footer {
  display: none;
}

a {
  color: inherit;
}

button {
  border: none;
  outline: none;
  color: inherit;
}

.limited-width {
  max-width: 1260px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.mb-60 {
  margin-bottom: 60px;
}

button.standard, .button.standard {
  color: white;
  background-color: #999;
  display: inline-block;
  line-height: 26px;
  text-decoration: none;
  padding: 0 1.5em;
  /*text-transform: uppercase;*/
  white-space: nowrap;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  padding: 7px 24px 9px;
  font-size: 18px;
}
button.standard.action, .button.standard.action {
  font-size: 18px;
  background-color: #8B7BFF;
}
button.standard.cancel, .button.standard.cancel {
  background-color: #f3f2ff !important;
  border: 1px solid #8b7bff !important;
  color: #000;
}
@media (max-width: 768px) {
  button.standard, .button.standard {
    font-size: 16px !important;
  }
}

button.mute {
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: white;
  display: grid;
  align-items: center;
  justify-content: center;
  background: transparent;
}
button.mute:after {
  font-family: "Material Icons";
  content: "volume_up";
  font-size: 24px;
}
button.mute.muted:after {
  content: "volume_off";
}

body > .alert {
  font-family: "sofia-pro";
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 15px 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

body > .alert.hidden {
  opacity: 0;
}

body > .cookie-consent h3 {
  font-family: "sofia-pro";
  margin: 0 0 0.5em 0;
  font-size: 20px;
}
body > .cookie-consent h4 {
  margin: 0;
  font-weight: 400;
}
body > .cookie-consent blockquote {
  margin: 1em 0;
  font-size: 14px;
}
body > .cookie-consent button.action {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  line-height: 40px;
}
body > .cookie-consent fieldset {
  margin: 1em 0;
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body > .cookie-consent fieldset label {
  font-size: 13px;
}
body > .cookie-consent fieldset label .title {
  text-transform: uppercase;
}
body > .cookie-consent fieldset label {
  position: relative;
}
body > .cookie-consent fieldset input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body > .cookie-consent fieldset input:not(:disabled) + div {
  cursor: pointer;
}
body > .cookie-consent fieldset input:checked:disabled + div > .box {
  background-color: #ccc;
  border-color: #ccc;
}
body > .cookie-consent fieldset input:checked + div {
  user-select: none;
}
body > .cookie-consent fieldset input:checked + div > .box {
  background-color: #8B7BFF;
  border-color: #8B7BFF;
}
body > .cookie-consent fieldset input:checked + div > .box:after {
  content: "check";
  display: block;
  font-family: "Material Icons";
  color: white;
  font-size: 18px;
  position: relative;
  top: 0px;
  left: 0px;
}
body > .cookie-consent fieldset input + div {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
body > .cookie-consent fieldset input + div > .box {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  position: relative;
}
body > .cookie-consent div.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: stretch;
  gap: 15px;
}
body > .cookie-consent div.actions button {
  font-size: 13px;
  text-transform: uppercase;
}
body > .cookie-consent button.close {
  background: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
body > .cookie-consent button.close:after {
  content: "close";
  font-family: "Material Icons";
  color: #000;
}
body > .cookie-consent {
  font-family: "sofia-pro";
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1010;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  padding: 30px 30px 25px 30px;
}
@media (max-width: 768px) {
  body > .cookie-consent {
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    max-width: none;
    border-radius: 0px;
    padding-bottom: 35px;
  }
  body > .cookie-consent button.close {
    top: 15px;
    right: 15px;
  }
}

body.section-living > .cookie-consent h3 {
  font-family: "sofia-pro";
}
body.section-living > .cookie-consent fieldset input:checked + div {
  user-select: none;
}
body.section-living > .cookie-consent fieldset input:checked + div > .box {
  background-color: #8b7bff;
  border-color: #8b7bff;
}
body.section-living > .cookie-consent {
  font-family: "sofia-pro";
}
body.section-living > .cookie-consent .actions button.standard.action,
body.section-living > .cookie-consent .actions .button.standard.action {
  background-color: #8b7bff;
}

a.edit-cms {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0px;
  bottom: 50px;
  border-radius: 15px 0 0 15px;
  background-color: #8B7BFF;
  color: white;
  text-decoration: none;
  display: grid;
  align-items: center;
  justify-content: center;
}
a.edit-cms:after {
  font-family: "Material Icons";
  content: "edit";
}

a.analytics {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0px;
  bottom: 15px;
  border-radius: 15px 0 0 15px;
  background-color: #8B7BFF;
  color: white;
  text-decoration: none;
  display: grid;
  align-items: center;
  justify-content: center;
}
a.analytics:after {
  font-family: "Material Icons";
  content: "bar_chart";
}

.d-none {
  display: none;
}

html.with-popup-video-playing body {
  overflow: hidden;
}

.full-page-player {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-page-player .close {
  right: 10px;
  top: 10px;
  position: fixed;
  color: white;
  background-color: rgba(255, 255, 255, 0.25);
  width: 45px;
  height: 45px;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-page-player .close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.full-page-player .close:after {
  font-family: "Material Icons";
  position: relative;
  top: -1px;
  content: "close";
}
.full-page-player .video-wrapper {
  position: relative;
  max-width: min(900px, 90%);
  flex: 1 1 90%;
  aspect-ratio: 16/9;
}
.full-page-player .video-wrapper .video-js {
  background-color: transparent;
}
.full-page-player .details {
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 1em;
}
.full-page-player .details h3 {
  margin: 0;
  font-family: "sofia-pro";
  font-size: 18px;
  font-weight: 400;
}
.full-page-player .details .button {
  font-family: "sofia-pro";
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.full-page-player .vjs-cloudinary-button {
  display: none !important;
}

.carousel .dots {
  position: absolute;
  bottom: 10px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  visibility: hidden;
}
.carousel .dots > span {
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 4px;
  transition: 0.5s background-color;
}
.carousel .dots > span.selected {
  background-color: black;
}

.results-panel .carousel {
  display: grid;
  position: relative;
}
.results-panel .carousel .results {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.results-panel .carousel .results::-webkit-scrollbar {
  display: none;
}
.results-panel .carousel .results {
  grid-template-columns: none;
  grid-auto-columns: calc(33% - 12.5px);
  grid-auto-flow: column;
  overflow-x: scroll;
}
.results-panel .carousel .results > * {
  scroll-snap-align: start;
}
.results-panel .carousel .results .result {
  grid-column: auto;
}
@media (max-width: 600px) {
  .results-panel .carousel .results {
    grid-auto-columns: 42%;
  }
}
@media (max-width: 425px) {
  .results-panel .carousel .results {
    grid-auto-columns: 65%;
  }
}
.results-panel .carousel.four-up .results {
  grid-auto-columns: calc(25% - 19px);
}
@media (max-width: 768px) {
  .results-panel .carousel.four-up .results {
    grid-auto-columns: 40%;
  }
}
.results-panel .carousel button.swiper {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
.results-panel .carousel button.swiper:disabled {
  opacity: 0.5;
}
.results-panel .carousel button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
.results-panel .carousel button.swiper.next {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}
.results-panel .carousel button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
.results-panel .carousel button.swiper.prev {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.results-panel .carousel button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (hover: none) and (pointer: coarse) {
  .results-panel .carousel button.swiper {
    display: none;
  }
}
.results-panel .carousel:not(.scrollable) .next, .results-panel .carousel:not(.scrollable) .prev {
  display: none;
}

section.herobanner {
  margin-top: 0;
}
section.herobanner > .limited-width {
  position: relative;
}
section.herobanner .scroller {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow: hidden;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
section.herobanner .scroller::-webkit-scrollbar {
  display: none;
}
section.herobanner .slide {
  padding: 0 1px;
  display: grid;
  grid-template-columns: 40fr 60fr;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 12px;
  background-color: #F0EFFB;
}
section.herobanner .slide h1, section.herobanner .slide h2 {
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  line-height: 110%;
}
section.herobanner .slide p {
  font-size: 20px;
  margin: 12px 0;
  line-height: 130%;
  font-weight: 300;
}
section.herobanner .slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
section.herobanner .slide blockquote {
  align-self: stretch;
  position: relative;
  z-index: 1;
  padding: 0 55px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
section.herobanner .slide blockquote .button {
  font-family: "sofia-pro";
  font-weight: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  padding: 7px 24px 9px;
  margin-top: 16px;
}
section.herobanner .dots {
  bottom: -25px;
}
@media (max-width: 768px) {
  section.herobanner .dots {
    bottom: 10px;
  }
}
@media (hover: none) and (pointer: coarse) {
  section.herobanner .dots {
    visibility: visible;
  }
}
section.herobanner button.swiper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
@media (hover: none) and (pointer: coarse) {
  section.herobanner button.swiper {
    display: none;
  }
}
section.herobanner button.swiper:disabled {
  opacity: 0.5;
}
section.herobanner button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
section.herobanner button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
section.herobanner button.swiper.prev {
  right: 65px;
  prev: 0;
}
section.herobanner button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (max-width: 1024px) {
  section.herobanner {
    font-size: 14px;
  }
  section.herobanner .slide h1, section.herobanner .slide h2 {
    font-size: 1.5em;
  }
  section.herobanner .slide blockquote {
    padding: 20px 20px 30px 20px;
  }
}
@media (max-width: 768px) {
  section.herobanner .limited-width {
    width: 100%;
  }
  section.herobanner .slide {
    background-color: transparent;
    align-items: start;
    gap: 0;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 0;
  }
  section.herobanner .slide blockquote {
    order: 1;
  }
  section.herobanner button.swiper {
    top: 25vw;
  }
  section.herobanner button.swiper.prev {
    right: auto;
    left: 5px;
    z-index: 1;
  }
  section.herobanner button.swiper.next {
    right: 5px;
    z-index: 1;
  }
}

section.herobannerstatic {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}
section.herobannerstatic > .limited-width {
  position: relative;
}
section.herobannerstatic .slide {
  padding: 0;
  overflow: hidden;
  background-color: #F0EFFB;
  position: relative;
  display: flex;
  justify-content: end;
}
section.herobannerstatic .slide h1, section.herobannerstatic .slide h2 {
  text-align: left;
  font-size: 2em;
  margin: 0;
}
section.herobannerstatic .slide .media-wrapper {
  height: clamp(20rem, 56.25vw, 100vh);
  aspect-ratio: 16/9;
  width: 100%;
}
@media (max-width: 768px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 70vh;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 60vh;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 75vh;
  }
}
section.herobannerstatic .slide .media-wrapper .media {
  height: clamp(20rem, 56.25vw, 100vh);
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media (max-width: 768px) {
  section.herobannerstatic .slide .media-wrapper .media {
    height: 70vh;
  }
}
section.herobannerstatic .slide .media-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: 100%;
}
section.herobannerstatic .slide .text-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 75%);
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay {
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgba(255, 255, 255, 0) 75%);
  }
}
section.herobannerstatic .slide .text-overlay .banner-info {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  color: #000000;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info {
    bottom: 1rem;
    justify-content: flex-end;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
  font-family: "sofia-pro";
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: #000000;
  width: 80%;
}
@media (max-width: 1280px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2.2rem;
    width: 100%;
  }
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 1.688rem;
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 1.25rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
  font-size: 1.875rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    font-size: 1rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .tagline {
  font-size: 1.5rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1.2rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1.125rem;
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos span {
  display: flex;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos span::after {
  content: "";
  background-color: #d7d7d7;
  display: block;
  width: 1px;
  height: 32px;
  margin-left: 16px;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos .rglogo {
  width: 150px;
  height: auto;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos .logo {
  width: 85px;
  height: auto;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .logos {
    justify-content: center;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper button.standard.action,
section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper .button.standard.action {
  margin: 2rem 0;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "sofia-pro";
  font-size: 1rem;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper button.standard.action,
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper .button.standard.action {
    padding: 0.25rem 1.25rem;
    letter-spacing: 1px;
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper {
    display: flex;
    justify-content: center;
  }
}
section.herobannerstatic button.swiper {
  position: absolute;
  bottom: 4rem;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
section.herobannerstatic button.swiper:disabled {
  opacity: 0.5;
}
section.herobannerstatic button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper:after {
    height: 8px;
    width: 8px;
    top: 3px;
  }
}
section.herobannerstatic button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
section.herobannerstatic button.swiper.prev {
  right: 65px;
  prev: 0;
}
section.herobannerstatic button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper.prev {
    right: 55px;
  }
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper {
    bottom: 1rem;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  section.herobannerstatic {
    font-size: 14px;
  }
  section.herobannerstatic .slide h1, section.herobannerstatic .slide h2 {
    font-size: 1.5em;
  }
}

.container-width {
  max-width: 1320px !important;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container-width {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1680px) {
  .container-width {
    max-width: calc(95.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 1920px) {
  .container-width {
    max-width: calc(110.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 2561px) {
  .container-width {
    max-width: calc(102.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 3840px) {
  .container-width {
    max-width: calc(120.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 4096px) {
  .container-width {
    max-width: calc(125.5rem + 0.2vw) !important;
  }
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

button {
  cursor: pointer;
}

.primary-btn, .option-btn, .teritary-btn, .transparent-btn, .secondary-btn {
  border-radius: 0.625rem;
  padding: 0.8125rem 2rem 0.9375rem;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0;
  background: var(--Living-purple);
  color: var(--White);
  white-space: nowrap;
  text-decoration: none;
  height: 3.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .primary-btn, .option-btn, .teritary-btn, .transparent-btn, .secondary-btn {
    padding: 0.625rem 1.25rem 0.875rem;
    font-size: 1.25rem;
  }
}
.primary-btn:hover, .option-btn:hover, .teritary-btn:hover, .transparent-btn:hover, .secondary-btn:hover, .primary-btn:active, .option-btn:active, .teritary-btn:active, .transparent-btn:active, .secondary-btn:active {
  background: linear-gradient(0deg, var(--Living-purple), var(--Living-purple)), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}
.primary-btn:disabled, .option-btn:disabled, .teritary-btn:disabled, .transparent-btn:disabled, .secondary-btn:disabled {
  cursor: not-allowed;
}

.secondary-btn {
  background: transparent;
  color: var(--Living-purple);
}
.secondary-btn.bg-white {
  background: var(--White);
}
.secondary-btn:hover, .secondary-btn:active {
  border: 2px solid var(--Living-purple);
  background: var(--Living-purple);
  color: var(--White);
}

.teritary-btn, .transparent-btn {
  background: var(--White);
  color: var(--Living-purple);
  border: 2px solid var(--Living-purple);
}
.teritary-btn:hover, .transparent-btn:hover, .teritary-btn:active, .transparent-btn:active {
  border: 2px solid var(--Living-purple);
  background: var(--Living-purple);
  color: var(--White);
}

.transparent-btn {
  background: transparent;
}

.play-btn {
  background: transparent;
  width: 2rem;
  height: 2rem;
  display: grid;
  align-items: center;
  justify-content: center;
}
.play-btn:after {
  content: "";
  background: url("/images/living-new/play.svg");
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  background-repeat: no-repeat;
}

.option-btn {
  background: var(--White);
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.1215686275);
  color: var(--Black, #272727);
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}
.option-btn.selected, .option-btn:hover, .option-btn:active {
  background: transparent;
  color: var(--Black);
  border: 2px solid var(--Living-purple, #8b7bff);
}

.button-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

.dialog-container .blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0E1226;
  opacity: 0.6;
  z-index: 1500;
}
.dialog-container .dialog-content {
  padding: 30px 50px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 32px 40px rgba(70, 83, 97, 0.4), 0px 16px 32px -16px rgba(70, 83, 97, 0.32), 0px 8px 24px -8px rgba(70, 83, 97, 0.24), 0px 4px 16px -4px rgba(70, 83, 97, 0.16), 1px 2px 8px -2px rgba(70, 83, 97, 0.08), 0px 1px 4px -1px rgba(70, 83, 97, 0.08);
  border-radius: 8px;
  width: 542px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1600;
  font-family: "sofia-pro";
  max-width: 100%;
}
.dialog-container .dialog-content h2 {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .dialog-container .dialog-content h2 {
    font-size: 18px;
    font-weight: 400;
  }
}
.dialog-container .dialog-content .title {
  font-size: 28px;
}
.dialog-container .dialog-content .subtitle {
  font-family: "sofia-pro";
}
.dialog-container .dialog-content .subtitle span {
  font-weight: 600;
}
.dialog-container .dialog-content .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 580px) {
  .dialog-container .dialog-content {
    padding: 10px;
  }
}

html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav {
  visibility: visible;
  transition-delay: 0s;
  height: auto;
  opacity: 1;
  position: absolute; /* switched to fixed to resolve Safari rendering issues on iOS */
  transform: translate3d(0, 0, 0);
  z-index: 5000;
  display: flex;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav *,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav * {
  visibility: initial;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in div.hamburger,
html.with-hamburger-menu-open header.page-header nav.user.logged-in div.hamburgerloggedout,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out div.hamburger,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out div.hamburgerloggedout {
  z-index: 5001;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile {
  transform: translateX(-180px);
  transition-delay: 0.25s;
  z-index: 5001;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile span,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile span {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.75s;
}

html header.page-header nav.user {
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}

html.with-login header.page-header nav.user.logged-in {
  display: flex;
  opacity: 1;
  visibility: visible;
}
html.with-login header.page-header nav.user.logged-out {
  display: none;
}

html.without-login header.page-header nav.user.logged-in {
  display: none;
}
html.without-login header.page-header nav.user.logged-out {
  display: flex;
  opacity: 1;
  visibility: visible;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 40px;
  padding: 10px;
  gap: 5px;
  align-items: center;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox] {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotate(-45deg);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: scaleX(0);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform: rotate(45deg);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout span {
  display: block;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  border-radius: 1px;
  transition: all 0.5s ease-in-out;
  transform-origin: 100% 50%;
  transform: scaleX(1) translateX(0);
}

@media only screen and (max-width: 1330px) {
  html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav {
    visibility: visible;
    display: flex !important;
    transition-delay: 0s;
  }
  html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile {
    transform: translateX(calc(-185px + 2.5vw));
    transition-delay: 0.25s;
  }
  html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile span,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile span {
    font-size: 16px;
    opacity: 1;
    visibility: visible;
    width: auto;
    transition-delay: 0.75s;
  }
  header.page-header nav.user.logged-in > nav,
  header.page-header nav.user.logged-out > nav {
    height: 100vh !important;
    transform: translateX(calc(100% + 2.5vw));
    opacity: 1;
    right: -2.5vw !important;
  }
}
header.page-header nav.user.logged-in {
  display: none;
}
header.page-header nav.user.logged-in > nav {
  opacity: 0;
}
header.page-header div.hamburger {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 30px;
  padding: 10px 0px 10px 10px;
  gap: 5px;
  align-items: center;
}
header.page-header div.hamburger input[type=checkbox] {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotate(-45deg);
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: scaleX(0);
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform: rotate(45deg);
}
header.page-header div.hamburger span {
  display: block;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  border-radius: 1px;
  transition: all 0.5s ease-in-out;
  transform-origin: 100% 50%;
  transform: scaleX(1) translateX(0);
}
header.page-header nav.user.logged-out {
  gap: 20px;
}
header.page-header nav.user.logged-in,
header.page-header nav.user.logged-out {
  height: 100%;
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
header.page-header nav.user.logged-in button.profile,
header.page-header nav.user.logged-out button.profile {
  outline: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  background-size: cover;
  background-position: 50% 50%;
  cursor: pointer;
  z-index: 10;
  transform: translateX(0);
  transition: transform 0.5s;
  transition-delay: 0s;
  background-image: url("/images/no-user.png");
}
header.page-header nav.user.logged-in button.profile > span,
header.page-header nav.user.logged-out button.profile > span {
  opacity: 0;
  width: 0;
  position: absolute;
  white-space: nowrap;
  z-index: 9;
  color: #000000;
  top: 10px;
  left: 50px;
  font-size: 16px;
  transition: all 0.5s;
  transition-delay: 0s;
  /* overflow: hidden; */
}
header.page-header nav.user.logged-in > nav,
header.page-header nav.user.logged-out > nav {
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  min-width: 315px;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: -15px;
  background-color: #E9EEF3;
  gap: 12px;
  line-height: 24px;
  font-size: 16px;
  transition: all 0.5s;
  padding: 92px 12px 12px 12px;
  align-items: stretch;
}
header.page-header nav.user.logged-in > nav:before,
header.page-header nav.user.logged-out > nav:before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
}
header.page-header nav.user.logged-in > nav *,
header.page-header nav.user.logged-out > nav * {
  visibility: hidden;
}
header.page-header nav.user.logged-in > nav a,
header.page-header nav.user.logged-out > nav a {
  display: block;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}
header.page-header nav.user.logged-in > nav a:hover,
header.page-header nav.user.logged-out > nav a:hover {
  background-color: white;
}
header.page-header nav.user.logged-in > nav button.logout,
header.page-header nav.user.logged-in > nav button.school-logout,
header.page-header nav.user.logged-out > nav button.logout,
header.page-header nav.user.logged-out > nav button.school-logout {
  margin: 0px;
  font-size: 16px;
  font-weight: 300;
}
header.page-header nav.user.logged-in > nav .switch-tabs,
header.page-header nav.user.logged-out > nav .switch-tabs {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tabs,
header.page-header nav.user.logged-out > nav .switch-tabs .tabs {
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background-color: #DCE0E4;
  color: #999B9E;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tab-kid,
header.page-header nav.user.logged-out > nav .switch-tabs .tab-kid {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tab-teens,
header.page-header nav.user.logged-out > nav .switch-tabs .tab-teens {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .selected-tab,
header.page-header nav.user.logged-out > nav .switch-tabs .selected-tab {
  border: 1px solid rgb(139, 123, 255) !important;
  background-color: rgb(243, 242, 255);
  color: #000000;
  border-radius: 12px;
  z-index: 10;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

.download-app {
  z-index: 11;
  top: 0;
  left: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
}
.download-app .close-btn {
  position: absolute;
  right: 20px;
  top: 1.25rem;
  cursor: pointer;
}
.download-app .content, .download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753433140/rg/collective/media/living-new/Pop%20up%20-%20Background%20-%20Desktop.jpg);
  background-size: cover;
  background-position: center;
  color: var(--White);
  width: 100%;
  max-width: 68.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12.5rem;
  position: relative;
  aspect-ratio: 1096/470;
}
@media (max-width: 1024px) {
  .download-app .content, .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 992px) {
  .download-app .content, .download-app .content-sm {
    display: none;
  }
}
.download-app .content .qrcode-wrapper, .download-app .content-sm .qrcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download-app .content .title, .download-app .content-sm .title {
  text-align: center;
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media (max-width: 992px) {
  .download-app .content .title, .download-app .content-sm .title {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .title, .download-app .content-sm .title {
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
  }
}
.download-app .content .desc, .download-app .content-sm .desc {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.875rem;
}
@media (max-width: 992px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    margin-bottom: 0.625rem;
  }
}
.download-app .content .qr-code, .download-app .content-sm .qr-code {
  background: var(--White);
  width: 7.0625rem;
  height: 7.0625rem;
  border-radius: 12px;
  margin: 0;
  margin-bottom: 0rem;
}
.download-app .content .liv, .download-app .content-sm .liv {
  position: absolute;
  width: 95%;
  bottom: 0rem;
  right: 0%;
}
.download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753436486/rg/collective/media/living-new/Background.jpg);
  background-size: cover;
  background-position: center;
  aspect-ratio: 396/704;
  display: none;
  max-width: 24.75rem;
}
@media (max-width: 992px) {
  .download-app .content-sm {
    display: flex;
    margin-top: 3.75rem;
  }
}
@media (max-width: 576px) {
  .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm {
    margin-top: 1rem;
    max-height: 95vh;
  }
}
.download-app .content-sm .download-btns {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.download-app .content-sm .download-btns img {
  height: auto;
}
@media (max-width: 475px) {
  .download-app .content-sm .download-btns img {
    max-width: 7.5rem;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm .download-btns img {
    max-width: 6.25rem;
  }
}

.show-dialog {
  display: block !important;
  z-index: 9999 !important;
}

.backdrop {
  background: black;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  display: none;
}

.page-header {
  background: linear-gradient(84.62deg, var(--White) -40.21%, rgba(255, 255, 255, 0.5) 274.25%);
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.1215686275);
  position: sticky;
  z-index: 1500;
  width: 100%;
  top: 0;
  display: grid;
  align-items: center;
  color: var(--Black);
  backdrop-filter: blur(20px);
  box-shadow: -1px 3px 10px 0px rgba(0, 0, 0, 0.1019607843);
  backdrop-filter: blur(20px);
  transition: all 0.3s linear;
}
@media (hover) {
  .page-header.bg-white {
    background: var(--White);
  }
}
.page-header nav {
  align-items: center;
}
.page-header nav > .menu {
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
}
@media (hover) {
  .page-header nav > .menu:hover .expandable:after {
    visibility: visible;
  }
}
@media (hover) and (max-width: 992px) {
  .page-header nav > .menu:hover .expandable:after {
    visibility: hidden;
  }
}
.page-header a {
  text-decoration: none;
  display: block;
  text-decoration: inherit;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  width: max-content;
}
.page-header .top-level {
  font-size: 0.9375rem;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
}
@media (max-width: 1360px) {
  .page-header .top-level {
    grid-template-columns: 45% 55%;
  }
}
@media (max-width: 1200px) {
  .page-header .top-level {
    grid-template-columns: 34% 66%;
  }
}
@media (max-width: 992px) {
  .page-header .top-level {
    grid-template-columns: 1fr;
  }
}
.page-header .top-level > nav {
  height: 100%;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
}
@media (max-width: 992px) {
  .page-header .top-level > nav {
    grid-template-columns: 1fr;
  }
}
.page-header .nav-bar-item {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  position: relative;
  width: 7.5rem;
  white-space: nowrap;
}
@media only screen and (max-width: 992px) {
  .page-header .nav-bar-item {
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 120%;
    width: max-content;
  }
}
.page-header .nav-bar-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.625rem;
  height: 0.125rem;
  left: 0rem;
  right: 1.25rem;
  width: 70%;
  background-color: var(--Living-purple);
  visibility: hidden;
}
@media (max-width: 992px) {
  .page-header .nav-bar-item:after {
    background: url("/images/living-new/downarrow.svg");
    background-size: contain;
    background-position: center;
    height: 12px !important;
    width: 12px !important;
    background-repeat: no-repeat;
    content: "";
    bottom: auto;
    top: 0.875rem;
    right: -4.0625rem;
    background-color: none;
    left: 110%;
    visibility: visible;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.page-header .nav-bar-item.business-item:after {
  width: 60%;
}
.page-header .nav-bar-item.about-item:after {
  width: 60%;
}
@media (hover) {
  .page-header .nav-bar-item:hover:after {
    visibility: visible;
  }
}
.page-header .home {
  height: 7.5rem !important;
}
.page-header .home .logo img {
  display: block;
  width: 18.75rem;
}
@media only screen and (max-width: 992px) {
  .page-header .home .logo img {
    margin-top: 1.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-header .home .logo img {
    width: 12.5625rem;
  }
}
.page-header nav.main {
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 992px) {
  .page-header nav.main {
    display: none;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    position: absolute;
    min-height: calc(100vh - 120px);
    overflow-y: auto;
    top: 7.5rem;
    background: var(--White);
    left: 0;
  }
  .page-header nav.main #menu-toggle:checked ~ .main {
    display: flex;
  }
}
.page-header nav.main .nav-links {
  display: flex;
  align-items: center;
  height: inherit;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .page-header nav.main .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    height: 110vh;
    overflow-y: scroll;
    gap: 0;
  }
}
@media (max-width: 475px) {
  .page-header nav.main .nav-links {
    height: 90vh;
  }
}
.page-header nav.main .nav-links .menu {
  height: inherit;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .page-header nav.main .nav-links .menu {
    padding: 1rem 0;
    height: auto;
    display: block;
  }
}
@media (max-width: 375px) {
  .page-header nav.main .nav-links .menu {
    padding: 0.375rem 0;
  }
}
.page-header nav.main .nav-links .menu.profile {
  display: none;
}
@media (max-width: 992px) {
  .page-header nav.main .nav-links .menu.profile {
    display: block;
  }
}
.page-header .right {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  height: 100%;
}
@media (max-width: 992px) {
  .page-header .right {
    justify-content: flex-start;
    width: 95%;
    margin: 1rem auto;
    align-items: flex-start;
  }
}
.page-header .right .logout-sm {
  display: none;
}
@media (max-width: 992px) {
  .page-header .right .logout-sm {
    display: block;
  }
}
.page-header .right .primary-btn, .page-header .right .secondary-btn, .page-header .right .teritary-btn, .page-header .right .transparent-btn, .page-header .right .option-btn {
  display: inline-flex;
}
.page-header .right .user #profilePicture {
  display: none !important;
}
@media (max-width: 992px) {
  .page-header .right .user.logged-in {
    display: none !important;
  }
}
.page-header .right .user.logged-in nav {
  padding-top: 0.75rem !important;
  min-width: 20.625rem !important;
  top: 7.5rem;
}
.page-header .right .user.logged-in nav:before {
  height: 0rem !important;
}
.page-header .right .user.logged-in nav a {
  width: 100%;
}
.page-header .open > .drop-down,
.page-header .pinned > .drop-down {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition-delay: 0.25s;
}
@media (max-width: 992px) {
  .page-header .open > .drop-down,
  .page-header .pinned > .drop-down {
    height: auto;
    transition-delay: 0s;
  }
}
.page-header .open > .expandable:after,
.page-header .pinned > .expandable:after {
  visibility: visible;
}
.page-header .open > .nav-bar-item,
.page-header .pinned > .nav-bar-item {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .page-header .open > .nav-bar-item,
  .page-header .pinned > .nav-bar-item {
    color: var(--Living-purple);
  }
}
@media (max-width: 992px) {
  .page-header .open > .nav-bar-item:after,
  .page-header .pinned > .nav-bar-item:after {
    background: url("/images/living-new/uparrow.svg");
    background-size: contain;
    background-position: center;
    height: 12px !important;
    width: 12px !important;
    background-repeat: no-repeat;
  }
}
.page-header.bg-white .drop-down {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition-delay: 0.25s;
}
@media (max-width: 992px) {
  .page-header.bg-white .drop-down {
    height: auto;
    transition-delay: 0s;
  }
}
.page-header.bg-white > .expandable:after {
  visibility: visible;
}
@media only screen and (max-width: 992px) {
  .page-header.bg-white > .nav-bar-item {
    color: var(--Living-purple);
  }
}
@media (max-width: 992px) {
  .page-header.bg-white > .nav-bar-item:after {
    transform: rotate(-90deg);
    top: 1.125rem;
    right: -0.75rem;
    left: 90%;
  }
}
.page-header .drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  z-index: 2000;
  background: linear-gradient(84.62deg, var(--White) -40.21%, rgba(255, 255, 255, 0.5) 274.25%);
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  background: #fff;
  opacity: 0;
  transition: all 0.25s;
  transition-delay: 0s;
  overflow: hidden;
  justify-content: space-between;
  padding: 0 0rem 4rem;
}
@media (max-width: 992px) {
  .page-header .drop-down {
    position: relative;
    padding: 0px 0px;
    top: auto;
    box-shadow: none;
    height: 0;
  }
}
.page-header .drop-down.dropdown-sm {
  display: none;
}
@media (max-width: 992px) {
  .page-header .drop-down.dropdown-sm {
    display: block;
  }
}
.page-header .drop-down.dropdown-lg {
  display: block;
}
@media (max-width: 992px) {
  .page-header .drop-down.dropdown-lg {
    display: none;
  }
}
.page-header .drop-down .container-width {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
}
@media (max-width: 1360px) {
  .page-header .drop-down .container-width {
    grid-template-columns: 45% 55%;
  }
}
@media (max-width: 1200px) {
  .page-header .drop-down .container-width {
    grid-template-columns: 34% 66%;
  }
}
@media (max-width: 1200px) {
  .page-header .drop-down .left-panel img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .page-header .drop-down .left-panel {
    display: none;
  }
}
.page-header .drop-down .left-panel .download-banner {
  background: linear-gradient(239.67deg, #C87AF8 27.13%, #8B7BFF 44.25%, #5F2FD3 92.99%);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  color: var(--White);
  border-radius: 0.625rem;
  padding-top: 1.5rem;
  max-width: 34.0625rem;
}
.page-header .drop-down .left-panel .download-banner img {
  width: 100%;
}
.page-header .drop-down .left-panel .download-banner .download-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-header .drop-down .left-panel .download-banner .download-info .tagline {
  width: 11.625rem;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .page-header .drop-down .left-panel .download-banner .download-info .tagline {
    width: 7.5rem;
  }
}
.page-header .drop-down .left-panel .download-banner .download-info .qr-code {
  width: 5.75rem;
  aspect-ratio: 1/1;
  background-color: var(--White);
  border-radius: 0.375rem;
}
@media (max-width: 1200px) {
  .page-header .drop-down .left-panel .download-banner .download-info .qr-code {
    width: 3.25rem;
  }
}
.page-header .drop-down .left-panel .download-banner .download-image {
  display: flex;
  align-items: flex-end;
}
.page-header .drop-down .left-panel .download-banner .download-image img {
  border-radius: 0.625rem;
}
.page-header .drop-down .panel {
  margin-bottom: 1.875rem;
  text-align: center;
}
.page-header .drop-down .panel h3 {
  margin: 0;
  font-size: 3.375rem;
  font-weight: 400;
  line-height: normal;
}
.page-header .drop-down .panel .subtitle {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 400;
}
.page-header .drop-down .choices {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 0.125rem solid var(--Living-purple);
  padding-top: 1.25rem;
}
@media only screen and (max-width: 992px) {
  .page-header .drop-down .choices {
    border: none;
  }
}
.page-header .drop-down .choices.resources {
  padding-left: 9.0625rem;
}
@media (max-width: 992px) {
  .page-header .drop-down .choices.resources {
    padding-left: 0;
    border-top: 0;
  }
}
.page-header .drop-down .choices.aboutus {
  padding-left: 18rem;
}
@media (min-width: 1680px) {
  .page-header .drop-down .choices.aboutus {
    padding-left: 17.5rem;
  }
}
@media (max-width: 992px) {
  .page-header .drop-down .choices.aboutus {
    padding-left: 0;
    border-top: 0;
  }
}
.page-header .drop-down .choices .multilevel p {
  margin: 0;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2.5625rem;
}
.page-header .drop-down .choices .multilevel a {
  justify-content: flex-start;
  margin-left: 1.25rem;
}
.page-header .drop-down .choices a {
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2.5625rem;
  cursor: pointer;
}
.page-header .drop-down .choices a:hover {
  color: var(--Living-purple);
}
.page-header .mobile-nav {
  display: none;
}
@media (max-width: 992px) {
  .page-header .mobile-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.875rem;
  }
}
.page-header .hamburger {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 2.5rem;
  padding: 0.625rem;
  gap: 0.3125rem;
  align-items: center;
}
.page-header .hamburger input[type=checkbox] {
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.page-header .hamburger input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.page-header .hamburger input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: scaleX(0);
}
.page-header .hamburger input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform: rotate(45deg);
}
.page-header .hamburger span {
  display: block;
  height: 0.125rem;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  border-radius: 0.0625rem;
  transition: all 0.5s ease-in-out;
  transform-origin: 100% 50%;
  transform: scaleX(1) translateX(0);
}
@media (max-width: 992px) {
  .page-header .main {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .page-header input:checked ~ .main {
    display: flex;
  }
}
.page-header .headerbg-sm {
  display: none;
  width: 95%;
  background: url("/images/living-new/headerbg-sm.png");
  background-size: cover;
  color: var(--White);
  background-position: center;
  padding: 1.25rem;
  border-radius: 1.25rem;
  margin: 1rem auto;
  position: relative;
}
@media (max-width: 992px) {
  .page-header .headerbg-sm {
    display: flex;
    position: absolute;
    bottom: 1rem;
  }
}
@media (max-width: 375px) {
  .page-header .headerbg-sm {
    padding: 0.375rem;
    margin: 0;
  }
}
.page-header .headerbg-sm .headerfooter-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
}
.page-header .headerbg-sm .headerfooter-img img {
  width: 100%;
  border-radius: 20px;
}
.page-header .headerbg-sm .download-content {
  width: 60%;
  display: grid;
  gap: 1.25rem;
  padding-top: 2.5rem;
}
@media (max-width: 576px) {
  .page-header .headerbg-sm .download-content {
    padding-top: 1.25rem;
  }
}
@media (max-width: 375px) {
  .page-header .headerbg-sm .download-content {
    padding-top: 0rem;
  }
}
.page-header .headerbg-sm .content, .page-header .headerbg-sm .download-app .content-sm, .download-app .page-header .headerbg-sm .content-sm {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.page-header .headerbg-sm .content p, .page-header .headerbg-sm .download-app .content-sm p, .download-app .page-header .headerbg-sm .content-sm p {
  margin: 0;
}
.page-header .headerbg-sm .downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.page-header .headerbg-sm .downloads img {
  width: 100%;
}
.page-header .headerbg-sm .olgl {
  width: 12.5rem;
}
@media (max-width: 400px) {
  .page-header .headerbg-sm .olgl {
    width: 10.625rem;
  }
}

.with-hamburger-menu-open .main {
  display: flex !important;
}
.with-hamburger-menu-open div.hamburger,
.with-hamburger-menu-open div.hamburgerloggedout {
  z-index: 5001;
}

html.minimized-nav:not(.with-menu-open, .with-hamburger-menu-open) .page-header:not(:hover) {
  top: -7.5rem;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

footer.page-footer {
  padding-top: 3.75rem;
  padding-bottom: 7.1875rem;
  background: #F0EEEB;
  position: relative;
}
@media (max-width: 768px) {
  footer.page-footer {
    padding: 2.5rem 0 5rem;
  }
}
footer.page-footer .logo img {
  width: 13.125rem;
}
@media (max-width: 768px) {
  footer.page-footer .logo a {
    display: flex;
    justify-content: center;
  }
}
footer.page-footer a {
  color: inherit;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
}
footer.page-footer h4 {
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer.page-footer h4 {
    line-height: 115%;
    margin: 1.25rem 0 1rem 0;
  }
}
footer.page-footer .multilevel div {
  display: grid;
}
footer.page-footer .multilevel p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  margin: 0;
  margin-bottom: 0.75rem;
}
footer.page-footer .multilevel a {
  margin-left: 1rem;
}
footer.page-footer nav.contents {
  margin: 2.5rem 0;
  display: flex;
  gap: 20%;
}
@media (max-width: 1400px) {
  footer.page-footer nav.contents {
    gap: 10%;
  }
}
@media (max-width: 1024px) {
  footer.page-footer nav.contents {
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-direction: column;
    align-items: center;
  }
}
footer.page-footer nav.contents > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer.page-footer nav.contents .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    display: none;
  }
}
footer.page-footer nav.contents .footer-nav a {
  margin-bottom: 0.75rem;
}
footer.page-footer nav.contents .footer-nav .about br {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav .about br {
    display: block;
  }
}
footer.page-footer nav.contents .footer-nav-sm {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav-sm {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    display: grid;
  }
}
footer.page-footer nav.contents .footer-nav-sm a {
  margin-bottom: 1rem;
}
footer.page-footer nav.contents .footer-nav-sm .business {
  margin-bottom: 2.5rem;
}
footer.page-footer nav.contents .footer-nav-sm .resources {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads {
    flex-direction: row;
  }
}
footer.page-footer nav.contents .downloads img {
  margin-bottom: 0.3125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads img {
    width: 8.125rem;
  }
}
footer.page-footer nav.rg-pages {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 0.0625rem solid #6A6E74;
  border-bottom: 0.0625rem solid #6A6E74;
  color: #040316;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages {
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rg-logo {
  margin-right: 1.25rem;
  display: flex;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rg-logo {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
footer.page-footer nav.rg-pages .rg-logo a {
  line-height: 1rem;
}
footer.page-footer nav.rg-pages .rg-logo img {
  width: 9.375rem;
}
footer.page-footer nav.rg-pages .rglinks {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    gap: 0.625rem;
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rglinks div {
  display: flex;
}
footer.page-footer nav.rg-pages .rglinks span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks span {
    margin: 0 0.375rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    grid-template-columns: 1fr 1fr;
  }
}
footer.page-footer nav.rg-pages .rglinks a,
footer.page-footer nav.rg-pages .rglinks span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks a,
  footer.page-footer nav.rg-pages .rglinks span {
    font-size: 0.75rem;
    line-height: 100%;
  }
}
footer.page-footer nav.rg-pages .rglinks a {
  cursor: pointer;
}
footer.page-footer nav.toc {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: #6A6E74;
}
@media (max-width: 768px) {
  footer.page-footer nav.toc {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer nav.toc span {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer nav.toc nav {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
}
@media (max-width: 576px) {
  footer.page-footer nav.toc nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer.page-footer .hidesm {
    display: none;
  }
}
footer.page-footer .legal {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .legal {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer .legal div {
  display: flex;
  align-items: center;
}
footer.page-footer .legal span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer .legal span {
    margin: 0 0.375rem;
  }
}
footer.page-footer .legal a {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer .social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .social {
    justify-content: center;
    gap: 1.5rem;
  }
}
footer.page-footer .social img {
  width: 1.125rem;
}
footer.page-footer .social a {
  background-color: #000;
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-wrap: wrap;
  }
  footer.page-footer nav.contents a.logo {
    flex: 1 0 100%;
    width: 100%;
  }
}

.footer-cta {
  z-index: 1000;
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-family: "sofia-pro", sans-serif;
  text-align: center;
  padding: 20px 2.5%;
  font-size: 1.5em;
  font-weight: 300;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.footer-cta strong {
  font-weight: 500;
}
.footer-cta .button {
  font-size: 16px;
  vertical-align: middle;
  font-weight: 500;
  line-height: 2.5em;
  margin: 10px 0;
}
@media only screen and (max-width: 576px) {
  .footer-cta {
    font-size: 1.2em;
    padding: 40px 2.5% 20px;
  }
}
.footer-cta.hidden {
  transform: translateY(105%);
}

.footer-cta.free {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.free h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.free div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free {
    grid-template-columns: auto;
  }
}
.footer-cta.free a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free a.button {
    grid-column: 1;
    grid-row: auto;
  }
}

.footer-cta.warn {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.warn h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  text-align: left;
}
.footer-cta.warn div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.warn a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn a.button {
    grid-column: 1;
    grid-row: auto;
  }
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn {
    grid-template-columns: auto;
  }
}
.footer-cta.warn button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 18px;
  position: absolute;
  top: 15%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn button.close {
    top: 10px;
    transform: none;
  }
}

.footer-cta.final {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 0 25px;
  padding: 80px 20px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.final:before {
  content: "";
  display: block;
  background-image: url("https://res.cloudinary.com/roundglass/image/upload/v1700632389/rg/collective/assets/logo986.png");
  background-position: 50% 50%;
  width: 80px;
  height: 80px;
  background-size: contain;
  grid-column: 1;
  grid-row: 1/span 2;
}
.footer-cta.final h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final a.button {
  grid-column: 3;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.footer-cta.final button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 24px;
  position: absolute;
  top: 10%;
  right: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.final button.close {
    top: 10px;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-cta.final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .footer-cta.final:before {
    margin: 0;
  }
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

@media screen and (min-width: 1680px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 1920px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 2560px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(18px + 0.2vw);
    line-height: calc(20px + 0.3vw);
  }
}
@media screen and (min-width: 3008px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(20px + 0.4vw);
    line-height: calc(22px + 0.4vw);
  }
}
@media screen and (min-width: 4096px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(22px + 0.5vw);
    line-height: calc(24px + 0.5vw);
  }
}
@media screen and (min-width: 5120px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(24px + 0.5vw);
    line-height: calc(26px + 0.5vw);
  }
}

.displayh1 {
  font-weight: 500;
  font-size: 5.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .displayh1 {
    font-size: 4.75rem;
  }
}
@media (max-width: 768px) {
  .displayh1 {
    font-size: 3.75rem;
    line-height: 100%;
  }
}

.displayh2 {
  font-weight: 500;
  font-size: 5rem;
  line-height: 110%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .displayh2 {
    font-size: 3.5rem;
    line-height: 100%;
    letter-spacing: -2%;
  }
}

.displayh3 {
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh3 {
    font-size: 3rem;
    line-height: 100%;
  }
}

.displayh4 {
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh4 {
    font-size: 2.625rem;
    line-height: 120%;
  }
}

.displayh5 {
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh5 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading1 {
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading1 {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.heading2 {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading2 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading3 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .heading3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .heading3 {
    font-size: 1.75rem;
    line-height: 120%;
  }
}

.heading4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading4 {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 400;
  }
}

.heading5 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading5 {
    font-size: 1.25rem;
    line-height: 120%;
  }
}

.heading6 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading6 {
    font-size: 1rem;
    line-height: 120%;
  }
}

.paragraph1, .faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul, .faq-section .faq_accordian .accordian_wrapper .accordians details li, .faq-section .faq_accordian .accordian_wrapper .accordians details p, .faq-section .faq_accordian .accordian_wrapper .accordians details > summary {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
.paragraph2 {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph3 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph4 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .paragraph4 {
    font-size: 0.875rem;
  }
}

.paragraph5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.paragraph6 {
  font-weight: 400;
  font-style: Regular;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 10%;
}

.navlink {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item-semibold {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.link-text {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0px;
  text-decoration: none;
}

.faq-section h2 {
  padding: 0 3.75rem;
  text-align: center;
}
.faq-section h2 br {
  display: none;
}
@media (max-width: 576px) {
  .faq-section h2 {
    padding: 0 2.875rem;
  }
  .faq-section h2 br {
    display: block;
  }
}
@media (max-width: 425px) {
  .faq-section h2 {
    padding: 0 1.25rem;
  }
}
.faq-section .faq-img {
  position: absolute;
  left: 0;
  top: 7.5rem;
  z-index: -1;
  width: 20rem;
}
@media (max-width: 768px) {
  .faq-section .faq-img {
    right: 0;
    top: 0;
    left: auto;
    transform: rotate(180deg);
  }
}
.faq-section .faq-img.right {
  right: 0 !important;
  left: auto;
  top: -1.25rem;
  transform: rotate(180deg);
}
.faq-section .faq-img.livonsmall {
  display: none;
}
@media (max-width: 768px) {
  .faq-section .faq-img.livonsmall {
    display: block;
  }
}
.faq-section .faq-img video {
  width: 100%;
}
@media (max-width: 1024px) {
  .faq-section .faq-img video {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-img video {
    width: 50%;
  }
}
.faq-section {
  /* background-color: rgba(223, 241, 243, 1); */
  padding: 6.25rem 0;
  position: relative;
}
@media screen and (max-width: 786px) {
  .faq-section {
    padding: 2.5rem 0;
  }
}
.faq-section h2 {
  margin-bottom: 4.5rem;
}
@media (max-width: 786px) {
  .faq-section h2 {
    margin-bottom: 2.25rem;
  }
}
.faq-section .faq_accordian {
  margin: 0 24%;
}
@media (max-width: 1680px) {
  .faq-section .faq_accordian {
    margin: 0 17%;
  }
}
@media screen and (max-width: 768px) {
  .faq-section .faq_accordian {
    padding-top: 2.0625rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 12%;
  }
}
@media screen and (max-width: 640px) {
  .faq-section .faq_accordian {
    margin: 0;
    padding-top: 0;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians .last {
  border-bottom: 0px;
}
.faq-section .faq_accordian .accordian_wrapper .accordians .extra {
  display: none;
}
.faq-section .faq_accordian .accordian_wrapper .accordians.show-more .extra {
  display: block;
}
.faq-section .faq_accordian .accordian_wrapper .accordians.show-more .last {
  border-bottom: 1px solid #000;
}
.faq-section .faq_accordian .accordian_wrapper .accordians details {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.9375rem;
}
.faq-section .faq_accordian .accordian_wrapper .accordians details:last-of-type {
  border-bottom: 0px;
}
@media screen and (max-width: 786px) {
  .faq-section .faq_accordian .accordian_wrapper .accordians details {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians details > summary::marker,
.faq-section .faq_accordian .accordian_wrapper .accordians details > summary::-webkit-details-marker {
  display: none;
}
.faq-section .faq_accordian .accordian_wrapper .accordians details > summary {
  list-style-type: none;
  cursor: pointer;
  position: relative;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .faq-section .faq_accordian .accordian_wrapper .accordians details > summary {
    font-size: 1.125rem !important;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians details > summary::before {
  top: -3px;
  left: -27px;
  position: absolute;
  transition: all 0.25s;
  display: inline-block;
  content: url("/images/living-new/faq.svg");
}
.faq-section .faq_accordian .accordian_wrapper .accordians details[open] summary:before {
  transform: rotate(-180deg);
  transition: 0.2s;
  top: 5px;
  left: -30px;
}
.faq-section .faq_accordian .accordian_wrapper .accordians details p {
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  .faq-section .faq_accordian .accordian_wrapper .accordians details p {
    font-size: 1.125rem !important;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians details p a {
  color: var(--Living-purple);
}
@media (max-width: 768px) {
  .faq-section .faq_accordian .accordian_wrapper .accordians details li {
    font-size: 1.125rem !important;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians details li b {
  font-weight: 400;
}
.faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul {
  margin-left: 2.1875rem;
}
@media (max-width: 768px) {
  .faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul {
    font-size: 1.125rem !important;
  }
}
.faq-section .faq_accordian .accordian_wrapper .accordians details:last-of-type {
  margin-bottom: 0;
}
.faq-section .viewall-container {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
  min-height: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .faq-section .viewall-container {
    margin-top: 2.25rem;
    min-height: 3.125rem;
  }
}
.faq-section .viewall-container button {
  background: transparent;
}
.faq-section .viewall-container button:hover {
  color: var(--Living-purple);
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

@media screen and (min-width: 1680px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 1920px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 2560px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(18px + 0.2vw);
    line-height: calc(20px + 0.3vw);
  }
}
@media screen and (min-width: 3008px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(20px + 0.4vw);
    line-height: calc(22px + 0.4vw);
  }
}
@media screen and (min-width: 4096px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(22px + 0.5vw);
    line-height: calc(24px + 0.5vw);
  }
}
@media screen and (min-width: 5120px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(24px + 0.5vw);
    line-height: calc(26px + 0.5vw);
  }
}

.displayh1 {
  font-weight: 500;
  font-size: 5.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .displayh1 {
    font-size: 4.75rem;
  }
}
@media (max-width: 768px) {
  .displayh1 {
    font-size: 3.75rem;
    line-height: 100%;
  }
}

.displayh2 {
  font-weight: 500;
  font-size: 5rem;
  line-height: 110%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .displayh2 {
    font-size: 3.5rem;
    line-height: 100%;
    letter-spacing: -2%;
  }
}

.displayh3 {
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh3 {
    font-size: 3rem;
    line-height: 100%;
  }
}

.displayh4 {
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh4 {
    font-size: 2.625rem;
    line-height: 120%;
  }
}

.displayh5 {
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh5 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading1 {
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading1 {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.heading2 {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading2 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading3 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .heading3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .heading3 {
    font-size: 1.75rem;
    line-height: 120%;
  }
}

.heading4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading4 {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 400;
  }
}

.heading5 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading5 {
    font-size: 1.25rem;
    line-height: 120%;
  }
}

.heading6 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading6 {
    font-size: 1rem;
    line-height: 120%;
  }
}

.paragraph1, .faq-section .faq_accordian .accordian_wrapper .accordians details > summary, .faq-section .faq_accordian .accordian_wrapper .accordians details p, .faq-section .faq_accordian .accordian_wrapper .accordians details li, .faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
.paragraph2 {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph3 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph4 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .paragraph4 {
    font-size: 0.875rem;
  }
}

.paragraph5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.paragraph6 {
  font-weight: 400;
  font-style: Regular;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 10%;
}

.navlink {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item-semibold {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.link-text {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0px;
  text-decoration: none;
}

.qrcode {
  position: fixed;
  bottom: 1.25rem;
  right: 2.5rem;
  z-index: 3;
  width: 20rem;
  color: var(--White);
  background: url(/images/living-new/qrcode-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0.625rem;
  display: block;
}
@media (max-width: 768px) {
  .qrcode {
    display: none;
  }
}
.qrcode .qr-info {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  gap: 0.875rem;
}
.qrcode .qr-info img {
  width: 100%;
  background: var(--White);
  border-radius: 0.375rem;
}
.qrcode .qr-info p {
  margin: 0;
}
.qrcode .qr-info .content, .qrcode .qr-info .download-app .content-sm, .download-app .qrcode .qr-info .content-sm {
  padding-left: 1.25rem;
  display: block;
}
.qrcode .qr-info .download {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-top: 0.5625rem;
}
.qrcode .qr-info .download img {
  width: 0.75rem;
  margin-top: 0.125rem;
  background: transparent;
}

.scrolled .qrcode {
  width: 5.625rem;
}
@media (max-width: 1680px) {
  .scrolled .qrcode {
    width: 7.5rem;
  }
}
.scrolled .qrcode .qr-info {
  grid-template-columns: 1fr;
}
.scrolled .qrcode .content, .scrolled .qrcode .download-app .content-sm, .download-app .scrolled .qrcode .content-sm {
  display: none;
}

.with-audio-player .qrcode {
  bottom: 6.875rem;
}
.with-audio-player .qrcode-sm {
  bottom: 4.1875rem;
}

.qrcode-sm {
  position: fixed;
  bottom: -1px;
  width: 101%;
  z-index: 1002;
  left: -3px;
  color: var(--White);
  background: url(/images/living-new/qrcode-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0rem;
  display: none;
}
@media (max-width: 768px) {
  .qrcode-sm {
    display: block;
  }
}
.qrcode-sm .content, .qrcode-sm .download-app .content-sm, .download-app .qrcode-sm .content-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qrcode-sm .content .teritary-btn, .qrcode-sm .download-app .content-sm .teritary-btn, .download-app .qrcode-sm .content-sm .teritary-btn, .qrcode-sm .content .transparent-btn, .qrcode-sm .download-app .content-sm .transparent-btn, .download-app .qrcode-sm .content-sm .transparent-btn {
  border: 2px solid var(--White);
}
.qrcode-sm .content .teritary-btn:hover, .qrcode-sm .download-app .content-sm .teritary-btn:hover, .download-app .qrcode-sm .content-sm .teritary-btn:hover, .qrcode-sm .content .transparent-btn:hover, .qrcode-sm .download-app .content-sm .transparent-btn:hover, .download-app .qrcode-sm .content-sm .transparent-btn:hover {
  border: 2px solid var(--Living-purple);
}
.qrcode-sm .qr-info {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  gap: 0.625rem;
}
@media (max-width: 425px) {
  .qrcode-sm .qr-info {
    padding: 0.375rem 0.625rem;
    gap: 0.375rem;
  }
}
.qrcode-sm .qr-info p {
  margin: 0;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

a {
  text-decoration: none;
}

.italic {
  font-style: italic;
}

.desktop {
  display: block;
}
@media (max-width: 992px) {
  .desktop {
    display: none;
  }
}

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

.hero-content-card {
  text-align: left;
  gap: 1rem;
  box-shadow: var(--primary-dropshadow);
  cursor: pointer;
}
.hero-content-card .card-image {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-content-card .card-image img {
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s;
}
.hero-content-card .card-image img:hover {
  transform: scale(1.05);
}
.hero-content-card .card-info {
  background: linear-gradient(169.66deg, rgba(255, 255, 255, 0.4) 7.72%, rgba(255, 255, 255, 0.2) 92.28%);
  backdrop-filter: blur(15px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  height: 4.375rem;
  gap: 1rem;
}
.hero-content-card .card-info .card-title {
  max-width: 60%;
}
.hero-content-card .card-info p {
  margin: 0;
}

.fullbleed-card {
  height: 100%;
  position: relative;
  width: 100%;
  aspect-ratio: 1512/680;
}
@media (max-width: 1300px) {
  .fullbleed-card {
    aspect-ratio: 11/6;
  }
}
@media (max-width: 1024px) {
  .fullbleed-card {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .fullbleed-card {
    aspect-ratio: 6/7;
  }
}
@media (max-width: 576px) {
  .fullbleed-card {
    aspect-ratio: 2/3;
  }
}
@media (max-width: 475px) {
  .fullbleed-card {
    aspect-ratio: 3/5;
  }
}
.fullbleed-card .card-image {
  height: inherit;
}
.fullbleed-card .card-image picture {
  height: inherit;
}
.fullbleed-card .card-image img {
  border: none;
  height: inherit;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 189/85;
}
@media (max-width: 768px) {
  .fullbleed-card .card-image img {
    object-position: center;
  }
}
@media (max-width: 768px) {
  .fullbleed-card .card-image .fix-pos {
    object-position: 84%;
  }
}
.fullbleed-card .card-info {
  position: absolute;
  bottom: 25%;
  width: 100%;
  margin: auto;
  text-align: left;
}
@media (max-width: 768px) {
  .fullbleed-card .card-info {
    bottom: 10%;
    padding: 0 1.5rem;
  }
}
@media (max-width: 375px) {
  .fullbleed-card .card-info {
    bottom: 10%;
    padding: 0 1rem;
  }
}
.fullbleed-card .card-info p {
  max-width: 26.5rem;
  margin: 0;
  margin-bottom: 0.875rem;
}
@media (max-width: 768px) {
  .fullbleed-card .card-info p {
    text-align: center;
    max-width: 100%;
  }
}

.square-card, .plan-card, .feature-detail-card, .spread-card, .spread2-card, .elevate-card {
  cursor: pointer;
}
.square-card .card-image, .plan-card .card-image, .feature-detail-card .card-image, .spread-card .card-image, .spread2-card .card-image, .elevate-card .card-image {
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.square-card .card-image img, .plan-card .card-image img, .feature-detail-card .card-image img, .spread-card .card-image img, .spread2-card .card-image img, .elevate-card .card-image img {
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s;
}
.square-card .card-image img:hover, .plan-card .card-image img:hover, .feature-detail-card .card-image img:hover, .spread-card .card-image img:hover, .spread2-card .card-image img:hover, .elevate-card .card-image img:hover {
  transform: scale(1.05);
}
.square-card .card-image .play-btn, .plan-card .card-image .play-btn, .feature-detail-card .card-image .play-btn, .spread-card .card-image .play-btn, .spread2-card .card-image .play-btn, .elevate-card .card-image .play-btn {
  position: absolute;
  background: transparent;
  bottom: 1.25rem;
  right: 1.125rem;
  padding: 0;
}
@media (max-width: 768px) {
  .square-card .card-image .play-btn, .plan-card .card-image .play-btn, .feature-detail-card .card-image .play-btn, .spread-card .card-image .play-btn, .spread2-card .card-image .play-btn, .elevate-card .card-image .play-btn {
    bottom: 0.625rem;
    right: 0.625rem;
  }
}
.square-card .card-info, .plan-card .card-info, .feature-detail-card .card-info, .spread-card .card-info, .spread2-card .card-info, .elevate-card .card-info {
  background: transparent;
}
.square-card .card-info p, .plan-card .card-info p, .feature-detail-card .card-info p, .spread-card .card-info p, .spread2-card .card-info p, .elevate-card .card-info p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.square-card .card-info .duration, .plan-card .card-info .duration, .feature-detail-card .card-info .duration, .spread-card .card-info .duration, .spread2-card .card-info .duration, .elevate-card .card-info .duration {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(139, 123, 255, 0.2705882353);
  padding: 0rem 0.375rem;
  border-radius: 6.25rem;
  max-width: max-content;
  margin-top: 0.5rem;
}

.elevate-card .card-image {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}
.elevate-card .card-image .play-btn {
  bottom: 1.25rem;
  right: 1.25rem;
}
@media (max-width: 768px) {
  .elevate-card .card-image .play-btn {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

.spread-card, .spread2-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 0.75fr 1fr;
  background: linear-gradient(169.66deg, rgba(255, 255, 255, 0.4) 7.72%, rgba(255, 255, 255, 0.05) 92.28%);
  padding: 0.625rem;
}
@media (max-width: 768px) {
  .spread-card, .spread2-card {
    gap: 0.5rem;
    padding: 0.375rem;
  }
}
.spread-card .card-image, .spread2-card .card-image {
  aspect-ratio: 1/1;
}
.spread-card .card-image .play-btn, .spread2-card .card-image .play-btn {
  bottom: 1rem;
  right: 1rem;
}
@media (max-width: 768px) {
  .spread-card .card-image .play-btn, .spread2-card .card-image .play-btn {
    display: none;
  }
}
.spread-card .card-info, .spread2-card .card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spread-card .card-info p, .spread2-card .card-info p {
  margin: 0;
}

.spread2-card {
  padding: 1rem 0;
  gap: 1.25rem;
  background: transparent;
}
@media (max-width: 1024px) {
  .spread2-card {
    gap: 0.5rem;
    height: 8.125rem;
    padding: 0.375rem 0;
  }
}
@media (max-width: 768px) {
  .spread2-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    height: auto;
    padding: 0 0 1.5rem 0;
  }
}
.spread2-card .card-info {
  max-width: 15rem;
}
.spread2-card .card-image {
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .spread2-card .card-image img {
    width: 100%;
  }
}

.feature-detail-card {
  position: relative;
  box-shadow: var(--primary-dropshadow);
}
.feature-detail-card .card-image {
  aspect-ratio: 312/468;
}
.feature-detail-card .card-image:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.feature-detail-card .card-info {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1.75rem;
  color: #f0eeeb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.feature-detail-card .card-info p {
  margin: 0;
}
.feature-detail-card .card-info .mb-2 {
  margin-bottom: 0.25rem;
}
.feature-detail-card .card-info .subtext {
  margin-top: 0.3125rem;
}
.feature-detail-card .card-info .play-container {
  display: flex;
  justify-content: flex-end;
}

.text-card {
  min-height: 29.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 1.75rem 1.75rem;
  box-shadow: none;
}
.text-card .report-btn {
  border: 2px solid var(--White);
  padding: 1rem 2rem;
  border-radius: 10px;
  background: transparent;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 120%;
  color: var(--White);
  width: max-content;
}
.text-card .card-info {
  position: relative;
  padding: 0;
  gap: 0.75rem;
  display: grid;
}
.text-card .card-info p {
  margin: 0;
  margin-bottom: 1rem;
}

.goal-card {
  position: relative;
}
.goal-card .card-image {
  position: relative;
  aspect-ratio: 9/16.2;
}
.goal-card .card-image img {
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.goal-card .card-info {
  color: var(--White);
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .goal-card .card-info {
    padding: 1.375rem;
  }
}
.goal-card .card-info p {
  margin: 0;
}
.goal-card .card-info .plus-icon {
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}
.goal-card .card-info .plus-icon img {
  width: 2.5rem;
  height: 2.5rem;
}

.preview-card {
  position: relative;
  box-shadow: var(--primary-dropshadow);
}
.preview-card .card-image {
  position: relative;
  aspect-ratio: 9/16;
}
.preview-card .card-image iframe {
  width: 100%;
  aspect-ratio: 9/16;
}
.preview-card .card-image:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
}
.preview-card .card-image img {
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.preview-card .card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
}
.preview-card .card-info {
  color: var(--White);
  position: absolute;
  bottom: 0;
  padding: 2rem 1.75rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  flex-direction: column;
}
.preview-card .card-info p {
  margin: 0;
  text-align: center;
}
.preview-card .card-info .subtitle {
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.preview-card .card-info.text-left {
  align-items: flex-start;
}
.preview-card .card-info.text-left p {
  text-align: left;
}
.preview-card .card-info .tag {
  background: rgba(39, 39, 39, 0.5019607843);
  border-radius: 100px;
  padding: 0.0625rem 0.5rem 0.1875rem;
  margin-bottom: 0.625rem;
  font-weight: 300;
  text-transform: uppercase;
}

.offer-card {
  background-color: var(--White);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 1.875rem;
  max-width: 33.5rem;
  box-shadow: -1px 3px 10px 0px rgba(0, 0, 0, 0.1);
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 1300px) {
  .offer-card {
    max-width: 27.25rem;
    padding: 2rem;
    gap: 1rem;
  }
}
@media (max-width: 992px) {
  .offer-card {
    padding: 1.25rem;
    gap: 0.625rem;
  }
}
@media (max-width: 768px) {
  .offer-card {
    padding: 1rem;
    gap: 0.625rem;
  }
}
@media (max-width: 675px) {
  .offer-card {
    padding: 0.625rem;
    gap: 0.25rem;
  }
}
@media (max-width: 576px) {
  .offer-card {
    padding: 2rem;
    gap: 2rem;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .offer-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 375px) {
  .offer-card {
    padding: 1rem;
    gap: 1rem;
  }
}
@media (max-width: 340px) {
  .offer-card {
    padding: 0.625rem;
    gap: 0.375rem;
  }
}
.offer-card h2 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 120%;
  margin: 0 !important;
}
@media (max-width: 992px) {
  .offer-card h2 {
    font-size: 1.5rem;
  }
}
.offer-card .type {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 3rem;
}
.offer-card .type img {
  width: 3.75rem;
}
@media (max-width: 992px) {
  .offer-card .type img {
    width: 2.5rem;
  }
}
.offer-card .type .type-value {
  color: #8b7bff;
  /* Living - H3 */
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 992px) {
  .offer-card .type .type-value {
    /* RGL - Mobile/H5 */
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .offer-card .type .type-value {
    font-size: 2rem;
  }
}
.offer-card .type .small-font {
  font-size: 1.875rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .offer-card .type .small-font {
    font-size: 1.25rem !important;
  }
}
.offer-card .features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-card .features li {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 1.875rem;
}
@media (max-width: 1024px) {
  .offer-card .features li {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 820px) {
  .offer-card .features li {
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 576px) {
  .offer-card .features li {
    margin-bottom: 1.375rem;
  }
}
@media (max-width: 400px) {
  .offer-card .features li {
    margin-bottom: 1rem;
  }
}
.offer-card .features li:last-child {
  margin-bottom: 0 !important;
}
.offer-card .features li span {
  color: var(--Black);
  /* RGL - Mobile/P2 */
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 140%;
}
@media (max-width: 992px) {
  .offer-card .features li span {
    font-size: 1rem;
  }
}
.offer-card .features li img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.9375rem;
  margin-top: 0.25rem;
}
@media (max-width: 992px) {
  .offer-card .features li img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.offer-card .btn-flex {
  display: flex;
  justify-content: center;
}
.offer-card .btn-flex a {
  width: 100%;
  text-align: center;
}
.offer-card .btn-flex.free-btn {
  margin-top: 0.625rem;
}

.testimonial-card {
  padding: 2.5rem;
  gap: 1.25rem;
  border: 2px solid var(--Living-Purple, #8b7bff);
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.75rem;
  }
}
@media (max-width: 375px) {
  .testimonial-card {
    padding: 1rem;
  }
}
.testimonial-card .top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card .stars {
  display: flex;
  gap: 4px;
}
.testimonial-card p {
  margin: 0;
}
@media (max-width: 768px) {
  .testimonial-card .title {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .testimonial-card .description {
    font-size: 1rem;
  }
}
.testimonial-card .author {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 1.8px;
  margin: 0;
  margin-top: 6.25rem;
}
@media (max-width: 1200px) {
  .testimonial-card .author {
    margin-top: 3.75rem;
  }
}
@media (max-width: 768px) {
  .testimonial-card .author {
    margin-top: 0;
  }
}

.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.teacher-card.content-center {
  justify-content: center;
}
.teacher-card.content-end {
  justify-content: end;
}
.teacher-card.content-start {
  justify-content: start;
}
.teacher-card.teacher-2 {
  margin-bottom: -2rem;
}
@media (max-width: 1130px) {
  .teacher-card.teacher-2 {
    margin: 0 !important;
  }
}
.teacher-card.teacher-3 {
  margin-bottom: 2rem;
}
@media (max-width: 1130px) {
  .teacher-card.teacher-3 {
    margin: 0 !important;
  }
}
.teacher-card.teacher-8 {
  margin-top: 1rem;
}
@media (max-width: 1130px) {
  .teacher-card.teacher-8 {
    margin: 0 !important;
  }
}
.teacher-card.teacher-12 {
  margin-top: -4rem;
}
@media (max-width: 1130px) {
  .teacher-card.teacher-12 {
    margin: 0 !important;
  }
}
.teacher-card.teacher-13 {
  margin-bottom: 3.5rem;
}
@media (max-width: 1130px) {
  .teacher-card.teacher-13 {
    margin: 0 !important;
  }
}
.teacher-card img {
  object-fit: contain;
  display: block;
  transition: transform 1.5s;
  border-radius: 50%;
  width: 100%;
}
.teacher-card.small .card-image {
  width: 7.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 1130px) {
  .teacher-card.small {
    display: none;
  }
}
.teacher-card.large {
  cursor: pointer;
}
.teacher-card.large .card-image {
  width: 12rem;
  border-radius: 50%;
  max-width: 100%;
}
.teacher-card p {
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
  line-height: 100%;
  letter-spacing: 10%;
  white-space: nowrap;
}
.teacher-card h2 {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0.625rem 0 0 !important;
  white-space: nowrap;
}

.metric-card {
  position: relative;
  aspect-ratio: 1/1;
}
.metric-card .metric-content {
  width: 100%;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--White);
}
.metric-card .metric-content.type_1 {
  background: url("/images/living-new/backgroundgradient-1.png");
  background-size: cover;
}
.metric-card .metric-content.type_2 {
  background: url("/images/living-new/backgroundgradient-2.png");
  background-size: cover;
}
.metric-card .metric-content.type_3 {
  background: url("/images/living-new/backgroundgradient-3.png");
  background-size: cover;
}
.metric-card .metric-content.type_4 {
  background: url("/images/living-new/backgroundgradient-4.png");
  background-size: cover;
}
.metric-card .metric-content p {
  margin: 0;
}
.metric-card .metric-content .metric {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.metric-card .org {
  color: var(--Dim-Grey, #6d6d6d);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 140%;
  text-align: right;
  margin-top: 0.375rem;
}
.metric-card .italic {
  font-style: italic;
}

.tools-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 54.5rem;
}
@media (max-width: 640px) {
  .tools-card {
    grid-template-columns: 1fr !important;
  }
}
.tools-card.flex-reverse {
  grid-template-columns: 1fr 1fr;
}
.tools-card.flex-reverse .card-image {
  order: 1;
}
.tools-card.flex-reverse .card-content {
  order: 0;
}
.tools-card .card-image img {
  width: 100%;
}
@media (max-width: 640px) {
  .tools-card .card-image {
    order: 0 !important;
  }
}
.tools-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .tools-card .card-content {
    order: 1 !important;
    justify-content: center;
    align-items: center;
  }
}
.tools-card .card-content p {
  margin: 0;
}
@media (max-width: 640px) {
  .tools-card .card-content p {
    text-align: center;
  }
}
.tools-card .card-content .title {
  margin-bottom: 1.25rem;
}
.tools-card .card-content a {
  margin-top: 1.5rem;
}

.solution-card {
  display: flex;
  height: 29.25rem;
  padding: 1.75rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--White);
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.12);
}
.solution-card p {
  margin: 0;
}
.solution-card .desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solution-card .desc-list li {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}
.solution-card .desc-list li img {
  width: 1.5rem;
}

.plan-card {
  position: relative;
  cursor: default;
}
.plan-card .card-image {
  aspect-ratio: 9/16;
}
.plan-card .card-image img {
  aspect-ratio: 9/16;
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .plan-card .card-image .oneratio {
    aspect-ratio: 1/1;
  }
}
.plan-card .card-info {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  z-index: 2;
  color: #272727;
}
@media (min-width: 1680px) {
  .plan-card .card-info {
    padding: 1rem 1.75rem;
  }
}
@media (max-width: 820px) {
  .plan-card .card-info {
    padding: 1.375rem;
  }
}
@media (max-width: 370px) {
  .plan-card .card-info {
    padding: 1rem;
  }
}
.plan-card .card-info p {
  margin: 0;
}
.plan-card .card-info .subtext {
  font-weight: 400;
  margin-top: 0.5rem;
  white-space: nowrap;
}
@media (min-width: 1680px) {
  .plan-card .card-info .subtext {
    margin-top: 0.25rem;
  }
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

button {
  cursor: pointer;
}

.primary-btn, .secondary-btn, .teritary-btn, .transparent-btn, .option-btn {
  border-radius: 0.625rem;
  padding: 0.8125rem 2rem 0.9375rem;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0;
  background: var(--Living-purple);
  color: var(--White);
  white-space: nowrap;
  text-decoration: none;
  height: 3.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .primary-btn, .secondary-btn, .teritary-btn, .transparent-btn, .option-btn {
    padding: 0.625rem 1.25rem 0.875rem;
    font-size: 1.25rem;
  }
}
.primary-btn:hover, .secondary-btn:hover, .teritary-btn:hover, .transparent-btn:hover, .option-btn:hover, .primary-btn:active, .secondary-btn:active, .teritary-btn:active, .transparent-btn:active, .option-btn:active {
  background: linear-gradient(0deg, var(--Living-purple), var(--Living-purple)), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}
.primary-btn:disabled, .secondary-btn:disabled, .teritary-btn:disabled, .transparent-btn:disabled, .option-btn:disabled {
  cursor: not-allowed;
}

.secondary-btn {
  background: transparent;
  color: var(--Living-purple);
}
.secondary-btn.bg-white {
  background: var(--White);
}
.secondary-btn:hover, .secondary-btn:active {
  border: 2px solid var(--Living-purple);
  background: var(--Living-purple);
  color: var(--White);
}

.teritary-btn, .transparent-btn {
  background: var(--White);
  color: var(--Living-purple);
  border: 2px solid var(--Living-purple);
}
.teritary-btn:hover, .transparent-btn:hover, .teritary-btn:active, .transparent-btn:active {
  border: 2px solid var(--Living-purple);
  background: var(--Living-purple);
  color: var(--White);
}

.transparent-btn {
  background: transparent;
}

.play-btn {
  background: transparent;
  width: 2rem;
  height: 2rem;
  display: grid;
  align-items: center;
  justify-content: center;
}
.play-btn:after {
  content: "";
  background: url("/images/living-new/play.svg");
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  background-repeat: no-repeat;
}

.option-btn {
  background: var(--White);
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.1215686275);
  color: var(--Black, #272727);
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}
.option-btn.selected, .option-btn:hover, .option-btn:active {
  background: transparent;
  color: var(--Black);
  border: 2px solid var(--Living-purple, #8b7bff);
}

.button-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

@media screen and (min-width: 1680px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 1920px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 2560px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(18px + 0.2vw);
    line-height: calc(20px + 0.3vw);
  }
}
@media screen and (min-width: 3008px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(20px + 0.4vw);
    line-height: calc(22px + 0.4vw);
  }
}
@media screen and (min-width: 4096px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(22px + 0.5vw);
    line-height: calc(24px + 0.5vw);
  }
}
@media screen and (min-width: 5120px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(24px + 0.5vw);
    line-height: calc(26px + 0.5vw);
  }
}

.displayh1 {
  font-weight: 500;
  font-size: 5.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .displayh1 {
    font-size: 4.75rem;
  }
}
@media (max-width: 768px) {
  .displayh1 {
    font-size: 3.75rem;
    line-height: 100%;
  }
}

.displayh2 {
  font-weight: 500;
  font-size: 5rem;
  line-height: 110%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .displayh2 {
    font-size: 3.5rem;
    line-height: 100%;
    letter-spacing: -2%;
  }
}

.displayh3 {
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh3 {
    font-size: 3rem;
    line-height: 100%;
  }
}

.displayh4 {
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh4 {
    font-size: 2.625rem;
    line-height: 120%;
  }
}

.displayh5 {
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh5 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading1 {
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading1 {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.heading2 {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading2 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading3 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .heading3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .heading3 {
    font-size: 1.75rem;
    line-height: 120%;
  }
}

.heading4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading4 {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 400;
  }
}

.heading5 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading5 {
    font-size: 1.25rem;
    line-height: 120%;
  }
}

.heading6 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading6 {
    font-size: 1rem;
    line-height: 120%;
  }
}

.paragraph1, .faq-section .faq_accordian .accordian_wrapper .accordians details > summary, .faq-section .faq_accordian .accordian_wrapper .accordians details p, .faq-section .faq_accordian .accordian_wrapper .accordians details li, .faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
.paragraph2 {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph3 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph4 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .paragraph4 {
    font-size: 0.875rem;
  }
}

.paragraph5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.paragraph6 {
  font-weight: 400;
  font-style: Regular;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 10%;
}

.navlink {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item-semibold {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.link-text {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0px;
  text-decoration: none;
}

.results-panel.carousel-strip .results {
  display: grid;
  gap: 1.5rem;
  grid-auto-columns: calc(25% - 1.125rem);
}
@media (max-width: 1320px) {
  .results-panel.carousel-strip .results {
    grid-auto-columns: 33.33%;
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1024px) {
  .results-panel.carousel-strip .results {
    grid-auto-columns: calc(33.33% - 1.125rem);
    padding: 0 1rem;
    scroll-padding: 1rem;
  }
}
@media (max-width: 992px) {
  .results-panel.carousel-strip .results {
    gap: 0.75rem;
    grid-auto-columns: 42%;
  }
}
@media (max-width: 768px) {
  .results-panel.carousel-strip .results {
    gap: 0.5rem;
    grid-auto-columns: 47%;
  }
}
@media (max-width: 640px) {
  .results-panel.carousel-strip .results {
    gap: 0.5rem;
    grid-auto-columns: 60%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip .results {
    grid-auto-columns: 80%;
  }
}
.results-panel.carousel-strip.col3 .results {
  grid-auto-columns: calc(33.33% - 1rem);
}
@media (max-width: 992px) {
  .results-panel.carousel-strip.col3 .results {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 768px) {
  .results-panel.carousel-strip.col3 .results {
    grid-auto-columns: 60%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip.col3 .results {
    grid-auto-columns: 85%;
  }
}
.results-panel.carousel-strip.col6 .results {
  grid-auto-columns: calc(16% - 0.75rem);
}
@media (max-width: 1320px) {
  .results-panel.carousel-strip.col6 .results {
    padding: 0;
    scroll-padding: 0;
  }
}
@media (max-width: 1200px) {
  .results-panel.carousel-strip.col6 .results {
    grid-auto-columns: 20%;
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1024px) {
  .results-panel.carousel-strip.col6 .results {
    grid-auto-columns: 28%;
  }
}
@media (max-width: 768px) {
  .results-panel.carousel-strip.col6 .results {
    grid-auto-columns: 33%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip.col6 .results {
    grid-auto-columns: 46.8%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip.col6.rm-carousel-sm .results {
    width: 100%;
    grid-auto-flow: unset;
    grid-template-columns: 1fr 1fr;
  }
  .results-panel.carousel-strip.col6.rm-carousel-sm .results .result {
    margin-bottom: 1rem;
  }
}
.results-panel.carousel-strip.col5 .results {
  grid-auto-columns: calc(20% - 1.5rem);
}
@media (max-width: 1200px) {
  .results-panel.carousel-strip.col5 .results {
    grid-auto-columns: 25%;
  }
}
@media (max-width: 768px) {
  .results-panel.carousel-strip.col5 .results {
    grid-auto-columns: 33%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip.col5 .results {
    grid-auto-columns: 80%;
  }
}
@media (max-width: 576px) {
  .results-panel.carousel-strip.col6.elevated .results {
    grid-auto-columns: calc(50% - 0.25rem);
  }
}
.results-panel.carousel-strip.fullbleed .results {
  grid-auto-columns: 100%;
  gap: 0;
  padding: 0;
}
.results-panel.carousel-strip.center-scroll .results > * {
  scroll-snap-align: center;
}
.results-panel .carousel button.swiper.next,
.results-panel .carousel button.swiper.prev {
  display: none;
}

.freeflow-right .carousel-strip.col3 .results {
  grid-auto-columns: 424px;
  padding: 0 calc(50% - 660px);
  scroll-padding: calc(50% - 660px);
}
@media (max-width: 1390px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: calc((95% - 1rem) / 3);
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1200px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 1024px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 45%;
    padding: 0 1rem;
    scroll-padding: 1rem;
  }
}
@media (max-width: 992px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 50%;
  }
}
@media (max-width: 820px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 55%;
  }
}
@media (max-width: 768px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 65%;
  }
}
@media (max-width: 640px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 75%;
  }
}
@media (max-width: 576px) {
  .freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 95%;
  }
}
@media (min-width: 1680px) {
  .freeflow-right .carousel-strip.col3 .results {
    padding: 0 2.5%;
    scroll-padding: 2.5%;
    grid-auto-columns: calc(33.33% - 1rem);
  }
}
.freeflow-right .carousel-strip.col3 .ssCards {
  grid-auto-columns: 26%;
  padding: 0 calc(50% - 660px);
  scroll-padding: calc(50% - 660px);
}
@media (max-width: 1390px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: calc((95% - 1rem) / 3);
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1200px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 1024px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 45%;
    padding: 0 1rem;
    scroll-padding: 1rem;
  }
}
@media (max-width: 992px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 50%;
  }
}
@media (max-width: 820px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 55%;
  }
}
@media (max-width: 768px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 65%;
  }
}
@media (max-width: 640px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 75%;
  }
}
@media (max-width: 576px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    grid-auto-columns: 95%;
  }
}
@media (min-width: 1680px) {
  .freeflow-right .carousel-strip.col3 .ssCards {
    padding: 0 2.5%;
    scroll-padding: 2.5%;
    grid-auto-columns: calc(33.33% - 1rem);
  }
}
.freeflow-right .carousel-strip.col5 .results {
  grid-auto-columns: calc(21.23% - 1.5rem);
  padding: 0 calc(50% - 660px);
  scroll-padding: calc(50% - 660px);
}
@media (max-width: 1390px) {
  .freeflow-right .carousel-strip.col5 .results {
    grid-auto-columns: calc(25% - 1.5rem);
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (min-width: 1680px) {
  .freeflow-right .carousel-strip.col5 .results {
    padding: 0 2.5%;
    scroll-padding: 2.5%;
    grid-auto-columns: 20%;
  }
}
@media (max-width: 1200px) {
  .freeflow-right .carousel-strip.col5 .results {
    grid-auto-columns: 25%;
  }
}
@media (max-width: 768px) {
  .freeflow-right .carousel-strip.col5 .results {
    grid-auto-columns: 33%;
  }
}
@media (max-width: 576px) {
  .freeflow-right .carousel-strip.col5 .results {
    grid-auto-columns: 80%;
  }
}

.freeflow .carousel-strip.col4 .results {
  grid-auto-columns: 20%;
}
@media (max-width: 1400px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 25%;
  }
}
@media (max-width: 1200px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 28%;
  }
}
@media (max-width: 1024px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 33%;
  }
}
@media (max-width: 820px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 768px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 48%;
  }
}
@media (max-width: 640px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 60%;
  }
}
@media (max-width: 576px) {
  .freeflow .carousel-strip.col4 .results {
    grid-auto-columns: 80%;
  }
}

@media (min-width: 1680px) {
  .testimonial-section .carousel-strip.col3 .results {
    grid-auto-columns: 30%;
  }
}
@media (max-width: 576px) {
  .testimonial-section .carousel-strip.col3 .results {
    grid-auto-columns: 100%;
    gap: 1rem;
  }
}

@media (min-width: 2560px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 24%;
  }
}
@media (min-width: 1680px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    padding: 0 5%;
    scroll-padding: 5%;
    grid-auto-columns: 20%;
  }
}
@media (max-width: 1390px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 27%;
  }
}
@media (max-width: 1200px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 33%;
  }
}
@media (max-width: 992px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 37%;
  }
}
@media (max-width: 820px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 44%;
  }
}
@media (max-width: 768px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 49%;
  }
}
@media (max-width: 640px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 55%;
  }
}
@media (max-width: 575px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 70%;
  }
}
@media (max-width: 500px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 80%;
  }
}
@media (max-width: 450px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 90%;
  }
}
@media (max-width: 320px) {
  .largecard-section.freeflow-right .carousel-strip.col3 .results {
    grid-auto-columns: 95%;
  }
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

img {
  display: block;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
  background: transparent;
}

.section-padding {
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 2.5rem 0;
  }
}

.button-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.flex-1 {
  flex: 1;
}

.carousel-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 7.5rem 6rem;
}
.carousel-section .carousel-wrapper {
  display: flex;
  gap: 0.625rem;
}

.lg-hidden {
  display: none;
}

.d-flex {
  display: flex;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.rel {
  position: relative;
}

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

.w-100 {
  width: 100%;
}

@media (max-width: 768px) {
  .xs-hidden {
    display: none !important;
  }
  .lg-hidden {
    display: block !important;
  }
}
.img-lg {
  display: block;
}
@media (max-width: 576px) {
  .img-lg {
    display: none;
  }
}

.img-sm {
  display: none;
}
@media (max-width: 576px) {
  .img-sm {
    display: block;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.ml-32 {
  margin-left: 32px;
}
@media (max-width: 768px) {
  .ml-32 {
    margin-left: 16px;
  }
}

.container-width {
  max-width: 1320px !important;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container-width {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1680px) {
  .container-width {
    max-width: calc(95.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 1920px) {
  .container-width {
    max-width: calc(110.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 2561px) {
  .container-width {
    max-width: calc(102.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 3840px) {
  .container-width {
    max-width: calc(120.5rem + 0.2vw) !important;
  }
}
@media screen and (min-width: 4096px) {
  .container-width {
    max-width: calc(125.5rem + 0.2vw) !important;
  }
}

.signoff-section {
  position: relative;
  margin-top: 3.75rem;
}
@media (max-width: 1024px) {
  .signoff-section {
    margin-top: 0rem;
  }
}
.signoff-section .signoff-bg {
  width: 100%;
  height: inherit;
}
.signoff-section .signoff-bg img {
  width: 100%;
  height: inherit;
}
.signoff-section .signoff-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: inherit;
  display: flex;
  padding-top: 3.125rem;
}
@media (max-width: 576px) {
  .signoff-section .signoff-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    padding-top: 0rem;
  }
}
@media (max-width: 425px) {
  .signoff-section .signoff-content {
    gap: 0rem;
  }
}
.signoff-section .signoff-content .left {
  width: 54%;
  display: flex;
  gap: 3.125rem;
  justify-content: center;
  align-items: center;
  padding-left: 12%;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .signoff-section .signoff-content .left {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .signoff-section .signoff-content .left {
    width: 60%;
  }
}
@media (max-width: 576px) {
  .signoff-section .signoff-content .left {
    gap: 1.5rem;
    padding-left: 0;
  }
}
.signoff-section .signoff-content .left .beeup {
  width: 8.75rem;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .signoff-section .signoff-content .left .beeup {
    width: 7.5rem;
  }
}
@media (max-width: 768px) {
  .signoff-section .signoff-content .left .beeup {
    width: 5rem;
  }
}
@media (max-width: 576px) {
  .signoff-section .signoff-content .left .beeup {
    width: 8.75rem;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .signoff-section .signoff-content .left .beeup {
    width: 7.5rem;
  }
}
.signoff-section .signoff-content .left .tagline {
  width: 19.5rem;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .signoff-section .signoff-content .left .tagline {
    width: 17.5rem;
  }
}
@media (max-width: 1024px) {
  .signoff-section .signoff-content .left .tagline {
    width: 12.5rem;
  }
}
@media (max-width: 768px) {
  .signoff-section .signoff-content .left .tagline {
    width: 10rem;
  }
}
@media (max-width: 576px) {
  .signoff-section .signoff-content .left .tagline {
    width: 17.5rem;
  }
}
.signoff-section .signoff-content .left .download-btns {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .signoff-section .signoff-content .left .download-btns {
    gap: 0.625rem;
  }
}
.signoff-section .signoff-content .left .download-btns img {
  width: 7.8125rem;
}
@media (max-width: 1024px) {
  .signoff-section .signoff-content .left .download-btns img {
    width: 7.5rem;
  }
}
@media (max-width: 768px) {
  .signoff-section .signoff-content .left .download-btns img {
    width: 7.0625rem;
  }
}
@media (max-width: 576px) {
  .signoff-section .signoff-content .left .download-btns img {
    width: 7.0625rem;
  }
}
.signoff-section .signoff-content .right {
  width: 46%;
}
@media (max-width: 768px) {
  .signoff-section .signoff-content .right {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .signoff-section .signoff-content .right {
    width: 90%;
    margin-left: 10%;
  }
}
@media (max-width: 360px) {
  .signoff-section .signoff-content .right {
    width: 80%;
    margin-left: 20%;
  }
}
.signoff-section .signoff-content .right img {
  width: 100%;
}

/*** 2nd section ***/
.signoff-with-offers {
  background: var(--Wild-Sand);
  position: relative;
  margin-top: 0;
  padding-top: 3.75rem;
}
.signoff-with-offers .signoff-flex-item {
  flex: 1 1 auto;
}
.signoff-with-offers .signoff-content {
  flex-direction: column;
  gap: 4.25rem;
}
@media (max-width: 1400px) {
  .signoff-with-offers .signoff-content {
    padding-top: 12.5rem;
  }
}
@media (max-width: 1300px) {
  .signoff-with-offers .signoff-content {
    gap: 1.25rem;
    padding-top: 12.5rem;
  }
}
@media (max-width: 820px) {
  .signoff-with-offers .signoff-content {
    gap: 0;
  }
}
@media (max-width: 576px) {
  .signoff-with-offers .signoff-content {
    gap: 6.25rem;
  }
}
@media (max-width: 500px) {
  .signoff-with-offers .signoff-content {
    gap: 2.5rem;
  }
}
@media (max-width: 460px) {
  .signoff-with-offers .signoff-content {
    gap: 1.25rem;
  }
}
@media (max-width: 390px) {
  .signoff-with-offers .signoff-content {
    gap: 0.625rem;
  }
}
@media (max-width: 360px) {
  .signoff-with-offers .signoff-content {
    gap: 0rem;
  }
}
.signoff-with-offers .signoff-content .content, .signoff-with-offers .signoff-content .download-app .content-sm, .download-app .signoff-with-offers .signoff-content .content-sm {
  display: flex;
}
@media (max-width: 576px) {
  .signoff-with-offers .signoff-content .content, .signoff-with-offers .signoff-content .download-app .content-sm, .download-app .signoff-with-offers .signoff-content .content-sm {
    flex-direction: column;
  }
}
.signoff-with-offers .signoff-content .offers {
  display: flex;
  z-index: 1;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .signoff-with-offers .signoff-content .offers {
    gap: 0.75rem;
  }
}
@media (max-width: 576px) {
  .signoff-with-offers .signoff-content .offers {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 425px) {
  .signoff-with-offers .signoff-content .offers {
    gap: 0.75rem;
  }
}
.signoff-with-offers .signoff-content .left {
  width: 50%;
}
@media (max-width: 1024px) {
  .signoff-with-offers .signoff-content .left {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .signoff-with-offers .signoff-content .left {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .signoff-with-offers .signoff-content .left {
    gap: 2rem;
    padding-left: 0;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .signoff-with-offers .signoff-content .left {
    gap: 1.5rem;
  }
}
@media (max-width: 460px) {
  .signoff-with-offers .signoff-content .left .tagline {
    width: 12.5rem;
  }
}
@media (max-width: 460px) {
  .signoff-with-offers .signoff-content .left .beeup {
    width: 6.25rem;
  }
}
.signoff-with-offers .signoff-content .right {
  width: 50%;
}
@media (min-width: 1960px) {
  .signoff-with-offers .signoff-content .right {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .signoff-with-offers .signoff-content .right {
    width: 45%;
  }
}
@media (max-width: 675px) {
  .signoff-with-offers .signoff-content .right {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .signoff-with-offers .signoff-content .right {
    width: 90%;
    margin-left: 10%;
  }
}
@media (max-width: 360px) {
  .signoff-with-offers .signoff-content .right {
    width: 80%;
    margin-left: 20%;
  }
}

.left-sm {
  display: none !important;
}
@media (max-width: 576px) {
  .left-sm {
    display: flex !important;
  }
}

.left-lg {
  display: flex !important;
}
@media (max-width: 576px) {
  .left-lg {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .signoff-with-one-offers {
    padding-top: 3.75rem;
  }
}
@media (max-width: 576px) {
  .signoff-with-one-offers .signoff-bg {
    height: 106.25rem;
  }
}
@media (max-width: 428px) {
  .signoff-with-one-offers .signoff-bg {
    height: 96.5rem;
  }
}
@media (max-width: 375px) {
  .signoff-with-one-offers .signoff-bg {
    height: 90.25rem;
  }
}
@media (max-width: 330px) {
  .signoff-with-one-offers .signoff-bg {
    height: 84rem;
  }
}
.signoff-with-one-offers .signoff-content {
  width: 100%;
  flex-direction: column;
}
@media (max-width: 576px) {
  .signoff-with-one-offers .signoff-content {
    gap: 3.75rem;
  }
}
.signoff-with-one-offers .signoff-content .left {
  width: 100%;
  padding-left: 0;
}
@media (max-width: 1200px) {
  .signoff-with-one-offers .signoff-content .left {
    gap: 1.875rem;
  }
}
@media (max-width: 992px) {
  .signoff-with-one-offers .signoff-content .left {
    gap: 1.25rem;
  }
}
.signoff-with-one-offers .signoff-content .content, .signoff-with-one-offers .signoff-content .download-app .content-sm, .download-app .signoff-with-one-offers .signoff-content .content-sm {
  display: flex;
}
@media (max-width: 576px) {
  .signoff-with-one-offers .signoff-content .content, .signoff-with-one-offers .signoff-content .download-app .content-sm, .download-app .signoff-with-one-offers .signoff-content .content-sm {
    flex-direction: column;
    gap: 3.75rem;
  }
}
.signoff-with-one-offers .signoff-content .offers {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3.125rem;
}
@media (max-width: 992px) {
  .signoff-with-one-offers .signoff-content .offers {
    padding-bottom: 1.25rem;
  }
}
@media (max-width: 820px) {
  .signoff-with-one-offers .signoff-content .offers {
    width: 65%;
    padding-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .signoff-with-one-offers .signoff-content .offers {
    width: 100%;
  }
}
.signoff-with-one-offers .signoff-content .offers .offer-card {
  width: 80%;
  max-width: 40.5rem;
}
@media (max-width: 768px) {
  .signoff-with-one-offers .signoff-content .offers .offer-card {
    width: 95%;
  }
}
.signoff-with-one-offers .signoff-content .right {
  width: 40%;
}
@media (max-width: 820px) {
  .signoff-with-one-offers .signoff-content .right {
    width: 35%;
  }
}
@media (max-width: 576px) {
  .signoff-with-one-offers .signoff-content .right {
    width: calc(100% - 1rem);
    margin-left: 1rem;
  }
}

.play-icon-modal {
  cursor: pointer;
}

.modal {
  top: 0;
  left: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal .close {
  top: 5%;
  right: 1%;
  opacity: 1;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  cursor: pointer;
  font-size: 0.8125rem;
  max-width: 2rem;
  overflow: hidden;
  transition: 0.3s;
  user-select: none;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  white-space: nowrap;
  align-items: center;
  -o-transition: 0.3s;
  text-overflow: ellipsis;
  justify-content: center;
  -webkit-transition: 0.3s;
  transform: translateX(-50%);
  background: rgb(249, 244, 242);
  border: 0.125rem solid transparent;
  padding: calc((2.75rem - 1em) / 2);
}
.modal .close:hover {
  color: white;
  background-color: #8B7BFF;
}
.modal .modal-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modal .modal-centered .modal-content {
  width: 80%;
  padding: 0;
  overflow: visible;
  position: relative;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .modal .modal-centered .modal-content {
    width: 95%;
  }
}
.modal .modal-centered iframe {
  width: 100%;
  height: 60vh;
  aspect-ratio: 16/9;
}

.phonebg {
  background: url(/images/iphonebg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 640px;
  width: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media (max-width: 768px) {
  .phonebg {
    display: none;
  }
}

.video-backdrop {
  background: black;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.7;
  display: none;
}

.show-dialog {
  display: block;
  z-index: 9999;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

.download-app {
  z-index: 11;
  top: 0;
  left: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
}
.download-app .close-btn {
  position: absolute;
  right: 20px;
  top: 1.25rem;
  cursor: pointer;
}
.download-app .content, .download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753433140/rg/collective/media/living-new/Pop%20up%20-%20Background%20-%20Desktop.jpg);
  background-size: cover;
  background-position: center;
  color: var(--White);
  width: 100%;
  max-width: 68.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12.5rem;
  position: relative;
  aspect-ratio: 1096/470;
}
@media (max-width: 1024px) {
  .download-app .content, .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 992px) {
  .download-app .content, .download-app .content-sm {
    display: none;
  }
}
.download-app .content .qrcode-wrapper, .download-app .content-sm .qrcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download-app .content .title, .download-app .content-sm .title {
  text-align: center;
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media (max-width: 992px) {
  .download-app .content .title, .download-app .content-sm .title {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .title, .download-app .content-sm .title {
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
  }
}
.download-app .content .desc, .download-app .content-sm .desc {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.875rem;
}
@media (max-width: 992px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    margin-bottom: 0.625rem;
  }
}
.download-app .content .qr-code, .download-app .content-sm .qr-code {
  background: var(--White);
  width: 7.0625rem;
  height: 7.0625rem;
  border-radius: 12px;
  margin: 0;
  margin-bottom: 0rem;
}
.download-app .content .liv, .download-app .content-sm .liv {
  position: absolute;
  width: 95%;
  bottom: 0rem;
  right: 0%;
}
.download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753436486/rg/collective/media/living-new/Background.jpg);
  background-size: cover;
  background-position: center;
  aspect-ratio: 396/704;
  display: none;
  max-width: 24.75rem;
}
@media (max-width: 992px) {
  .download-app .content-sm {
    display: flex;
    margin-top: 3.75rem;
  }
}
@media (max-width: 576px) {
  .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm {
    margin-top: 1rem;
    max-height: 95vh;
  }
}
.download-app .content-sm .download-btns {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.download-app .content-sm .download-btns img {
  height: auto;
}
@media (max-width: 475px) {
  .download-app .content-sm .download-btns img {
    max-width: 7.5rem;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm .download-btns img {
    max-width: 6.25rem;
  }
}

.show-dialog {
  display: block !important;
  z-index: 9999 !important;
}

.backdrop {
  background: black;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  display: none;
}

img {
  display: block;
}

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

h2 {
  margin: 0 0 1.75rem;
}
@media (max-width: 768px) {
  h2 {
    margin: 0 1rem 1rem;
  }
}

@media (max-width: 1200px) {
  .card6 h3 {
    padding-left: 2.5% !important;
  }
}
@media (max-width: 1024px) {
  .card6 h3 {
    padding-left: 1rem !important;
  }
}
@media (max-width: 1200px) {
  .card6.container-width {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .card6.container-width {
    padding-right: 0;
    padding-left: 0rem;
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .card6 .results-panel.carousel-strip.col6 .results {
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1024px) {
  .card6 .results-panel.carousel-strip.col6 .results {
    padding: 0 1rem;
    scroll-padding: 1rem;
  }
}
.card6 .elevate-card .play-btn {
  right: 0.875rem !important;
  bottom: 0.75rem !important;
}
@media (max-width: 768px) {
  .card6 .elevate-card .play-btn {
    bottom: 0.6875rem !important;
    right: 0.6875rem !important;
  }
}

.main-banner {
  background: url("/images/living-new/herobannerbg.png");
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: cover;
  color: var(--White);
  text-align: center;
  padding: 13.75rem 0 6.25rem;
  margin-top: -7.5rem;
  position: relative;
}
@media (max-width: 992px) {
  .main-banner {
    margin-top: 0;
    padding: 5.3125rem 0;
    background-position: bottom;
  }
}
@media (max-width: 576px) {
  .main-banner {
    padding: 6.25rem 0 6.25rem;
  }
}
.main-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 30% at center, rgba(0, 0, 0, 0.65), rgba(255, 255, 255, 0));
}
.main-banner h1 {
  margin: 0;
  font-weight: 600;
}
.main-banner p {
  margin: 0;
}
.main-banner .mt20 {
  margin-top: 1.25rem;
}
.main-banner .viewall-container {
  margin-top: 2.25rem;
}
.main-banner .teritary-btn, .main-banner .transparent-btn {
  border: 2px solid var(--White);
}
.main-banner .teritary-btn:hover, .main-banner .transparent-btn:hover {
  border: 2px solid var(--Living-purple);
}
.main-banner .subtitle {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .main-banner .subtitle {
    padding: 0 1rem;
  }
}
.main-banner .content, .main-banner .download-app .content-sm, .download-app .main-banner .content-sm {
  margin-top: 3.5rem;
}
.main-banner .subtext {
  margin-bottom: 0rem;
}
@media (max-width: 768px) {
  .main-banner .subtext {
    padding: 0 1rem;
    margin-bottom: 0rem;
  }
}
.main-banner .results-panel {
  margin: 0 11%;
}
@media (max-width: 1400px) {
  .main-banner .results-panel {
    margin: 0 7%;
  }
}
@media (max-width: 1200px) {
  .main-banner .results-panel {
    margin: 0 auto;
  }
}
.main-banner .results-panel.carousel-strip .results {
  padding: 1.25rem;
}
.main-banner .results-panel.carousel-strip .results > * {
  scroll-snap-align: center;
}
.main-banner .container-width {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .main-banner .container-width {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}

.music.main-banner {
  background: url("https://res.cloudinary.com/roundglass/image/upload/f_auto,q_auto/v1757398386/rg/collective/media/living-new/musicbg.jpg");
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: cover;
}

.meditation.main-banner {
  background: url("https://res.cloudinary.com/roundglass/image/upload/f_auto,q_auto/v1757326421/rg/collective/media/living-new/meditationbg.jpg");
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: cover;
}

.healthy-eating.main-banner {
  background: url("https://res.cloudinary.com/roundglass/image/upload/f_auto,q_auto/v1757395102/rg/collective/media/living-new/healthyeatingbg.jpg");
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: cover;
}

.research .main-banner {
  width: 100%;
  aspect-ratio: 1512/809;
}
.research .mascot-liv {
  width: 25rem !important;
  height: 25rem !important;
  top: -10.625rem !important;
  right: 8% !important;
}
@media (max-width: 1200px) {
  .research .mascot-liv {
    right: 4% !important;
  }
}
@media (max-width: 1024px) {
  .research .mascot-liv {
    width: 15.625rem !important;
    height: 15.625rem !important;
    top: -5.625rem !important;
  }
}

.benefits {
  color: var(--White);
  text-align: center;
  position: relative;
}
.benefits .title {
  position: absolute;
  top: 0;
  z-index: 1;
  padding-top: 5.125rem;
  width: 100%;
}
@media (max-width: 768px) {
  .benefits .title {
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
  }
}
.benefits .carousel .dots {
  visibility: visible;
  bottom: 5.125rem;
  left: calc(50% - 660px + 3rem);
}
@media (max-width: 1390px) {
  .benefits .carousel .dots {
    left: calc(5% + 1rem);
  }
}
@media (max-width: 1200px) {
  .benefits .carousel .dots {
    left: 7%;
  }
}
@media (max-width: 1024px) {
  .benefits .carousel .dots {
    left: 8%;
  }
}
@media (max-width: 992px) {
  .benefits .carousel .dots {
    left: 9%;
  }
}
@media (max-width: 768px) {
  .benefits .carousel .dots {
    left: 50%;
    bottom: 2rem;
  }
}
@media screen and (min-width: 1680px) {
  .benefits .carousel .dots {
    left: calc(5% + 1rem) !important;
  }
}
.benefits .carousel .dots > span {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.3019607843);
}
.benefits .carousel .dots > span.selected {
  background: var(--White) !important;
}
.benefits .card4 .carousel .dots {
  left: calc(50% - 660px + 1.875rem);
}
@media (max-width: 1390px) {
  .benefits .card4 .carousel .dots {
    left: calc(5% + 0rem);
  }
}
@media (max-width: 1200px) {
  .benefits .card4 .carousel .dots {
    left: 5%;
  }
}
@media (max-width: 1024px) {
  .benefits .card4 .carousel .dots {
    left: 6%;
  }
}
@media (max-width: 992px) {
  .benefits .card4 .carousel .dots {
    left: 6.5%;
  }
}
@media (max-width: 768px) {
  .benefits .card4 .carousel .dots {
    left: 50%;
  }
}
@media screen and (min-width: 1680px) {
  .benefits .card4 .carousel .dots {
    left: calc(5% + 0rem) !important;
  }
}

.cards-section {
  background: #40327d;
  color: var(--White);
  padding: 7.5rem 0;
}
@media (max-width: 1024px) {
  .cards-section {
    padding: 5rem 0;
  }
}
@media (max-width: 1024px) {
  .cards-section {
    padding: 2.5rem 0;
  }
}
.cards-section .heading1 {
  position: relative;
}
.cards-section .heading1 video {
  width: 11.25rem;
  height: 11.4375rem;
  object-fit: contain;
  position: absolute;
  top: -3.4375rem;
  right: 15%;
}
@media (max-width: 1400px) {
  .cards-section .heading1 video {
    right: 9%;
  }
}
@media (max-width: 1200px) {
  .cards-section .heading1 video {
    right: 5%;
  }
}
@media (max-width: 1024px) {
  .cards-section .heading1 video {
    right: 5%;
    top: -1.875rem;
    width: 7.5rem;
  }
}
@media (max-width: 768px) {
  .cards-section .heading1 video {
    display: none;
  }
}
.cards-section h3 {
  text-align: left;
  margin-bottom: 1.25rem;
  margin-top: 4.25rem;
}
@media (max-width: 1024px) {
  .cards-section h3 {
    margin-top: 2.25rem;
    padding-left: 0rem;
    font-size: 1.75rem;
  }
}
.cards-section .freeflow-right h3 {
  padding-left: 0;
  margin-left: calc(50% - 660px);
}
@media (max-width: 1390px) {
  .cards-section .freeflow-right h3 {
    margin-left: 2.5%;
  }
}
@media (max-width: 1024px) {
  .cards-section .freeflow-right h3 {
    padding-left: 0;
    margin-left: 1rem;
  }
}
@media (min-width: 1680px) {
  .cards-section .freeflow-right h3 {
    margin-left: 2.5%;
  }
}

.spread-card-section {
  position: relative;
}
.spread-card-section video {
  position: absolute;
  top: -9%;
  left: 55%;
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}
@media (min-width: 1680px) {
  .spread-card-section video {
    top: -2.25rem;
  }
}
@media (max-width: 1200px) {
  .spread-card-section video {
    width: 7.5rem;
    height: 7.5rem;
    top: -0.625rem;
    left: 80%;
  }
}
@media (max-width: 768px) {
  .spread-card-section video {
    display: none;
  }
}
.spread-card-section .results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .spread-card-section .results {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .spread-card-section .results {
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .spread-card-section .results {
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
  }
}

.spread2-section {
  background: #f1f3ff;
  color: var(--Black);
  padding: 7.5rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .spread2-section {
    padding: 2.5rem 0;
  }
}
.spread2-section h2 {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .spread2-section h2 {
    margin-bottom: 2.25rem;
  }
}
.spread2-section video {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  object-fit: contain;
}
@media (min-width: 1680px) {
  .spread2-section video {
    top: -2.25rem;
  }
}
@media (max-width: 1200px) {
  .spread2-section video {
    width: 12.5rem;
    height: 12.5rem;
  }
}
@media (max-width: 768px) {
  .spread2-section video {
    display: none;
  }
}
.spread2-section .results {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .spread2-section .results {
    padding: 0;
  }
}
.spread2-section .results .result {
  border-bottom: 0.0625rem solid;
}
@media (max-width: 768px) {
  .spread2-section .results .result {
    border: none !important;
  }
}
.spread2-section .results .result:first-child, .spread2-section .results .result:nth-child(2) {
  border-top: 0.0625rem solid;
}
.spread2-section .results .result:nth-child(odd) {
  margin-right: 0.625rem;
}
@media (max-width: 768px) {
  .spread2-section .results .result:nth-child(odd) {
    margin-right: 0.25rem;
  }
}
.spread2-section .results .result:nth-child(even) {
  margin-left: 0.625rem;
}
@media (max-width: 768px) {
  .spread2-section .results .result:nth-child(even) {
    margin-left: 0.25rem;
  }
}

.featured-section {
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  .featured-section {
    padding: 2.5rem 0;
  }
}
@media (max-width: 1320px) {
  .featured-section h2 {
    padding: 0 1rem 1.25rem;
  }
}
@media (max-width: 1320px) {
  .featured-section .container-width {
    padding-right: 0;
    padding-left: 0rem;
    margin-left: 0;
    width: 100%;
  }
}
.featured-section .results {
  padding: 1.25rem;
}

.viewall-container {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
  min-height: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .viewall-container {
    margin-top: 2.25rem;
    min-height: 3.125rem;
  }
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

@media screen and (min-width: 1680px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 1920px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(16px + 0.2vw);
    line-height: calc(18px + 0.2vw);
  }
}
@media screen and (min-width: 2560px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(18px + 0.2vw);
    line-height: calc(20px + 0.3vw);
  }
}
@media screen and (min-width: 3008px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(20px + 0.4vw);
    line-height: calc(22px + 0.4vw);
  }
}
@media screen and (min-width: 4096px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(22px + 0.5vw);
    line-height: calc(24px + 0.5vw);
  }
}
@media screen and (min-width: 5120px) {
  html,
  body {
    font-family: "sofia-pro", Helvetica, Arial, serif;
    font-size: calc(24px + 0.5vw);
    line-height: calc(26px + 0.5vw);
  }
}

.displayh1 {
  font-weight: 500;
  font-size: 5.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .displayh1 {
    font-size: 4.75rem;
  }
}
@media (max-width: 768px) {
  .displayh1 {
    font-size: 3.75rem;
    line-height: 100%;
  }
}

.displayh2 {
  font-weight: 500;
  font-size: 5rem;
  line-height: 110%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .displayh2 {
    font-size: 3.5rem;
    line-height: 100%;
    letter-spacing: -2%;
  }
}

.displayh3 {
  font-weight: 500;
  font-size: 4.375rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh3 {
    font-size: 3rem;
    line-height: 100%;
  }
}

.displayh4 {
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh4 {
    font-size: 2.625rem;
    line-height: 120%;
  }
}

.displayh5 {
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .displayh5 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading1 {
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading1 {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.heading2 {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading2 {
    font-size: 2rem;
    line-height: 120%;
  }
}

.heading3 {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .heading3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .heading3 {
    font-size: 1.75rem;
    line-height: 120%;
  }
}

.heading4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading4 {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 400;
  }
}

.heading5 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading5 {
    font-size: 1.25rem;
    line-height: 120%;
  }
}

.heading6 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .heading6 {
    font-size: 1rem;
    line-height: 120%;
  }
}

.paragraph1, .faq-section .faq_accordian .accordian_wrapper .accordians details > summary, .faq-section .faq_accordian .accordian_wrapper .accordians details p, .faq-section .faq_accordian .accordian_wrapper .accordians details li, .faq-section .faq_accordian .accordian_wrapper .accordians details ol, .faq-section .faq_accordian .accordian_wrapper .accordians details ul {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
.paragraph2 {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph3 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0;
}

.paragraph4 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .paragraph4 {
    font-size: 0.875rem;
  }
}

.paragraph5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.paragraph6 {
  font-weight: 400;
  font-style: Regular;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 10%;
}

.navlink {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.nav-line-item-semibold {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 0;
}
.link-text {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: 0px;
  text-decoration: none;
}

.qrcode {
  position: fixed;
  bottom: 1.25rem;
  right: 2.5rem;
  z-index: 3;
  width: 20rem;
  color: var(--White);
  background: url(/images/living-new/qrcode-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0.625rem;
  display: block;
}
@media (max-width: 768px) {
  .qrcode {
    display: none;
  }
}
.qrcode .qr-info {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  gap: 0.875rem;
}
.qrcode .qr-info img {
  width: 100%;
  background: var(--White);
  border-radius: 0.375rem;
}
.qrcode .qr-info p {
  margin: 0;
}
.qrcode .qr-info .content, .qrcode .qr-info .download-app .content-sm, .download-app .qrcode .qr-info .content-sm {
  padding-left: 1.25rem;
  display: block;
}
.qrcode .qr-info .download {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-top: 0.5625rem;
}
.qrcode .qr-info .download img {
  width: 0.75rem;
  margin-top: 0.125rem;
  background: transparent;
}

.scrolled .qrcode {
  width: 5.625rem;
}
@media (max-width: 1680px) {
  .scrolled .qrcode {
    width: 7.5rem;
  }
}
.scrolled .qrcode .qr-info {
  grid-template-columns: 1fr;
}
.scrolled .qrcode .content, .scrolled .qrcode .download-app .content-sm, .download-app .scrolled .qrcode .content-sm {
  display: none;
}

.with-audio-player .qrcode {
  bottom: 6.875rem;
}
.with-audio-player .qrcode-sm {
  bottom: 4.1875rem;
}

.qrcode-sm {
  position: fixed;
  bottom: -1px;
  width: 101%;
  z-index: 1002;
  left: -3px;
  color: var(--White);
  background: url(/images/living-new/qrcode-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 0rem;
  display: none;
}
@media (max-width: 768px) {
  .qrcode-sm {
    display: block;
  }
}
.qrcode-sm .content, .qrcode-sm .download-app .content-sm, .download-app .qrcode-sm .content-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qrcode-sm .content .teritary-btn, .qrcode-sm .download-app .content-sm .teritary-btn, .download-app .qrcode-sm .content-sm .teritary-btn, .qrcode-sm .content .transparent-btn, .qrcode-sm .download-app .content-sm .transparent-btn, .download-app .qrcode-sm .content-sm .transparent-btn {
  border: 2px solid var(--White);
}
.qrcode-sm .content .teritary-btn:hover, .qrcode-sm .download-app .content-sm .teritary-btn:hover, .download-app .qrcode-sm .content-sm .teritary-btn:hover, .qrcode-sm .content .transparent-btn:hover, .qrcode-sm .download-app .content-sm .transparent-btn:hover, .download-app .qrcode-sm .content-sm .transparent-btn:hover {
  border: 2px solid var(--Living-purple);
}
.qrcode-sm .qr-info {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  gap: 0.625rem;
}
@media (max-width: 425px) {
  .qrcode-sm .qr-info {
    padding: 0.375rem 0.625rem;
    gap: 0.375rem;
  }
}
.qrcode-sm .qr-info p {
  margin: 0;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

.download-app {
  z-index: 11;
  top: 0;
  left: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
}
.download-app .close-btn {
  position: absolute;
  right: 20px;
  top: 1.25rem;
  cursor: pointer;
}
.download-app .content, .download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753433140/rg/collective/media/living-new/Pop%20up%20-%20Background%20-%20Desktop.jpg);
  background-size: cover;
  background-position: center;
  color: var(--White);
  width: 100%;
  max-width: 68.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12.5rem;
  position: relative;
  aspect-ratio: 1096/470;
}
@media (max-width: 1024px) {
  .download-app .content, .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 992px) {
  .download-app .content, .download-app .content-sm {
    display: none;
  }
}
.download-app .content .qrcode-wrapper, .download-app .content-sm .qrcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download-app .content .title, .download-app .content-sm .title {
  text-align: center;
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media (max-width: 992px) {
  .download-app .content .title, .download-app .content-sm .title {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .title, .download-app .content-sm .title {
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
  }
}
.download-app .content .desc, .download-app .content-sm .desc {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.875rem;
}
@media (max-width: 992px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    font-size: 1.25rem;
  }
}
@media (max-width: 375px) {
  .download-app .content .desc, .download-app .content-sm .desc {
    margin-bottom: 0.625rem;
  }
}
.download-app .content .qr-code, .download-app .content-sm .qr-code {
  background: var(--White);
  width: 7.0625rem;
  height: 7.0625rem;
  border-radius: 12px;
  margin: 0;
  margin-bottom: 0rem;
}
.download-app .content .liv, .download-app .content-sm .liv {
  position: absolute;
  width: 95%;
  bottom: 0rem;
  right: 0%;
}
.download-app .content-sm {
  background: url(https://res.cloudinary.com/roundglass/image/upload/v1753436486/rg/collective/media/living-new/Background.jpg);
  background-size: cover;
  background-position: center;
  aspect-ratio: 396/704;
  display: none;
  max-width: 24.75rem;
}
@media (max-width: 992px) {
  .download-app .content-sm {
    display: flex;
    margin-top: 3.75rem;
  }
}
@media (max-width: 576px) {
  .download-app .content-sm {
    max-width: 95%;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm {
    margin-top: 1rem;
    max-height: 95vh;
  }
}
.download-app .content-sm .download-btns {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.download-app .content-sm .download-btns img {
  height: auto;
}
@media (max-width: 475px) {
  .download-app .content-sm .download-btns img {
    max-width: 7.5rem;
  }
}
@media (max-width: 375px) {
  .download-app .content-sm .download-btns img {
    max-width: 6.25rem;
  }
}

.show-dialog {
  display: block !important;
  z-index: 9999 !important;
}

.backdrop {
  background: black;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  display: none;
}

.main-banner {
  background-image: url("https://res.cloudinary.com/roundglass/image/upload/f_auto,q_auto/v1757400758/rg/collective/media/living-new/resources-banner.jpg");
  min-height: 43.25rem;
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11.75rem 0 6.25rem;
}
.main-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at center, rgba(0, 0, 0, 0.65), rgba(255, 255, 255, 0));
}

.featured-section .result {
  color: var(--White);
}
.featured-section .result:first-child {
  background: #849B7D;
}
.featured-section .result:nth-child(2) {
  background: #BC6BE8;
}
.featured-section .result:nth-child(3) {
  background: var(--Living-purple);
}
.featured-section .result:nth-child(4) {
  background: #4B7D94;
}

.cards-section {
  background: #F0EEEB;
  color: var(--Black);
}
@media (max-width: 1024px) {
  .cards-section h3 {
    margin-bottom: 1.25rem;
  }
}
.cards-section .freeflow-right .carousel-strip.col4 .results {
  grid-auto-columns: calc((1320px - 4.5rem) / 4);
  padding: 0 calc(50% - 660px);
  scroll-padding: calc(50% - 660px);
}
@media (min-width: 1680px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    grid-auto-columns: calc(25% - 1.125rem);
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1390px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    padding: 0 2.5%;
    scroll-padding: 2.5%;
  }
}
@media (max-width: 1200px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    grid-auto-columns: calc((95% - 2.5rem) / 3);
  }
}
@media (max-width: 1024px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    padding: 0 1rem;
    scroll-padding: 1rem;
  }
}
@media (max-width: 768px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 576px) {
  .cards-section .freeflow-right .carousel-strip.col4 .results {
    grid-auto-columns: 45%;
  }
}

.signoff-section {
  background: #F0EEEB;
  margin-top: 0;
  padding-top: 3.125rem;
}

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