:root {
  --dark: #00130b;
  --white: white;
  --primary: #80b192;
  --grey: #949494;
  --secondary: #ffecd7;
  --secondary-dark: #cea578;
  --dark-grade-1: #000704;
  --grade-1: #4cc9f0;
  --grade-2: #4895ef;
  --error: #ff244c;
  --dark-grade-2: #303030;
  --cover-edge: rgba(255, 255, 255, .16);
  --rounded-corner: 12px;
  --light-grey: #aaa;
  --spark-library-foreground-secondary: rgba(0, 0, 0, .76);
  --spark-library-foreground-interactive: #5532fa;
  --spark-library-background--interactive: #f0ecfd;
  --spark-library-light-steel-purple: #a695fb;
  --spark-library-black: black;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h3 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 40px;
}

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

blockquote {
  border-left: 2px solid var(--primary);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 28px;
}

figure {
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

figcaption {
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
}

.hover-line {
  width: 50%;
  height: 1px;
  background-image: linear-gradient(to right, var(--secondary), var(--secondary-dark));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-link {
  color: var(--primary);
  margin-left: 12px;
  margin-right: 12px;
  padding: 3px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--secondary);
}

.nav-link.w--current:hover {
  color: var(--primary);
}

.nav-link.dropdown {
  padding-top: 4px;
  padding-bottom: 0;
  padding-right: 18px;
  display: block;
}

.navbar {
  z-index: 100;
  width: 100%;
  height: 128px;
  background-color: rgba(0, 19, 11, .9);
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: fixed;
}

.menu-icon-line-top, .menu-icon-line-bottom {
  height: 2px;
  background-color: var(--white);
}

.nav-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand {
  height: 100%;
  color: var(--white);
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
  display: flex;
}

.button {
  height: 64px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 8px solid rgba(0, 0, 0, 0);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  margin: -8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.nav-button {
  display: none;
}

.button.large {
  height: 76px;
  border-radius: 38px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 18px;
  line-height: 24px;
}

.button.small {
  width: 25%;
  height: 56px;
  margin: 40px auto 80px;
  padding: 25px 20px;
  font-size: 13px;
}

.button.small.w--current {
  width: 27%;
  margin: 120px auto 0;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 18px;
  line-height: 24px;
}

.button.full-width {
  width: 100%;
}

.menu-icon-line-middle {
  height: 2px;
  background-color: var(--white);
  margin-top: 4px;
  margin-bottom: 4px;
}

.navigation {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  display: grid;
}

.menu-icon {
  width: 20px;
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo {
  height: 65px;
  transition: all .6s;
  display: inline-block;
  position: absolute;
}

.logo:hover {
  opacity: 0;
}

.logo.logo-hover {
  display: inline-block;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.logo.logo-hover:hover {
  opacity: 1;
}

.logo-text {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.top-button {
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  transition: color 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
}

.top-button:hover {
  background-color: var(--secondary);
}

.sg-typography {
  max-width: 770px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 33.33% auto;
  grid-auto-columns: 1fr;
  padding-top: 32px;
}

.sg-colors {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.top-button-icon {
  color: var(--primary);
  margin: 0 auto 1px;
  font-size: 20px;
  position: relative;
  transform: rotate(180deg);
}

.top-button-icon:hover {
  color: var(--dark-grade-1);
  font-size: 24px;
  font-weight: 700;
}

.top {
  height: 0;
}

.wrapper {
  z-index: 2;
  width: 100%;
  max-width: 1234px;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  margin: 5vh auto 0;
  padding-top: 0;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.wrapper.booking-wrapper {
  display: flex;
}

.page-wrapper {
  width: 100%;
  position: relative;
}

.back-to-top {
  height: 0;
}

.sg-color-card {
  background-color: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 12px;
}

.section-intro {
  z-index: 1;
  max-width: 770px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-intro.margin-bottom {
  margin-bottom: 80px;
}

.section-intro.wide {
  max-width: 770px;
}

.sg-color {
  height: 160px;
  max-height: 13vw;
  background-color: var(--dark);
}

.sg-color.grade-1 {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.sg-color.error-color {
  background-color: var(--error);
}

.sg-color.dark-grade {
  background-image: linear-gradient(to right, var(--dark-grade-1), var(--dark-grade-2));
}

.sg-color.grey-color {
  background-color: var(--grey);
}

.sg-color.primary-color {
  background-color: var(--primary);
}

.sg-color.secondary-color {
  background-color: var(--secondary);
}

.breadcrumbs-link {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 10px;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-link:hover {
  background-color: rgba(21, 21, 21, .12);
}

.breadcrumbs-link.current-page {
  color: var(--grey);
}

.breadcrumbs-link.current-page:hover {
  background-color: rgba(0, 0, 0, 0);
}

.breadcrumbs {
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 28px;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.text-label {
  background-image: linear-gradient(to right, var(--secondary), var(--secondary-dark));
  color: var(--grade-2);
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.breadcrumb-divider {
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  margin-bottom: 1px;
  margin-left: 8px;
  margin-right: 8px;
}

.sg-color-name {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.section {
  z-index: 3;
  background-color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
  display: block;
  position: relative;
}

.section.border-top {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.section.no-padding, .section.no-padding-top {
  padding-top: 0;
  padding-bottom: 0;
}

.section.no-padding {
  padding-top: 20px;
  padding-bottom: 0;
}

.hero-intro {
  z-index: 1;
  max-width: 970px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 5vh auto;
  display: flex;
  position: relative;
}

.hero-heading {
  color: var(--secondary-dark);
  margin-top: 8px;
  margin-bottom: 32px;
}

.hero-image {
  width: 90vh;
  max-width: 80%;
  min-width: 600px;
  border: 1px solid var(--cover-edge);
  border-radius: var(--rounded-corner);
  margin: 5vh auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.hero-image.booking-hero-image {
  border-radius: 0;
  margin-right: 50px;
}

.hero-section {
  z-index: 1;
  min-height: 26vw;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
}

.hero-section.hero-artists {
  min-height: 17vw;
  padding-top: 40px;
}

.hero-preview-wrapper {
  width: 100%;
  perspective: 2000px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.intro-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.intro-left.margin-bottom {
  margin-bottom: 72px;
}

.main-grid {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.features-wrapper {
  width: 970px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.features {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
}

.feature {
  align-items: flex-start;
  display: flex;
}

.feature-info {
  flex: 1;
  margin-left: 24px;
}

.text-grey {
  color: var(--grey);
}

.icon-box {
  width: 80px;
  height: 80px;
  background-image: linear-gradient(to bottom, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.icon-box.margin-bottom {
  margin-bottom: 20px;
}

.icon {
  z-index: 2;
  height: 40px;
  position: relative;
}

.feature-card {
  width: 100%;
  height: 450px;
  background-image: linear-gradient(155deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.feature-card-image {
  width: 60%;
  max-width: none;
  object-fit: cover;
  flex: 0 auto;
}

.featre-card-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 2%;
  margin-right: 7%;
  display: flex;
}

.video {
  width: 100%;
  height: 520px;
  max-width: 940px;
  background-image: linear-gradient(to bottom, rgba(21, 21, 21, .4) 41%, var(--dark) 96%), url('../images/macbook.png');
  opacity: 1;
  perspective: 2000px;
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 72px;
  display: flex;
  position: relative;
}

.play-button {
  z-index: 3;
  width: 100px;
  height: 100px;
  border: 2px solid var(--white);
  background-color: rgba(0, 0, 0, .6);
  background-image: url('../images/play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 50%;
  margin-top: 11%;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1), border-color 1s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
}

.play-button:hover {
  border-color: var(--primary);
  transform: scale(1.06);
}

.footer-section {
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  display: flex;
}

.footer-bottom {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 52px;
  padding: 23px 72px 23px 32px;
  font-size: 11px;
  line-height: 16px;
  display: grid;
}

.footer-bottom-link {
  color: #fff;
  margin-left: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: flex;
}

.footer-nav-link {
  color: var(--white);
  margin: 8px 16px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-left {
  color: var(--grey);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-bottom-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-social {
  border-radius: var(--rounded-corner);
  background-color: rgba(0, 7, 4, .6);
  border: 1px solid rgba(0, 7, 4, .6);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 16px;
  padding: 5px 8px;
  display: flex;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 3px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.footer-social-link:hover {
  transform: scale(1.16);
}

.footer-social-link.twitter-link:hover {
  background-color: #2aa3f0;
}

.footer-social-link.facebook-link {
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0);
  margin: 0 5px;
  transition: all .6s, transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
}

.footer-social-link.facebook-link:hover {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
  transform: scale(1);
}

.footer-social-link.instagram-link {
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0);
  margin: 0 5px;
  transition: all .6s, transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
}

.footer-social-link.instagram-link:hover {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
  transform: scale(1);
}

.footer-social-link.youtube-link {
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0);
  margin: 0 5px;
  transition: all .6s, transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
}

.footer-social-link.youtube-link:hover {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
  transform: scale(1);
}

.footer-social-icon {
  width: 14px;
}

.subscribe-form-block {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 32px;
}

.subscribe-input-wrapper {
  width: 100%;
  background-color: rgba(242, 243, 245, .06);
  border-radius: 40px;
  align-items: center;
  padding: 8px;
  display: flex;
  overflow: hidden;
}

.subscribe-input {
  height: 48px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-radius: 30px;
  flex: 1;
  margin: 0;
  padding-left: 27px;
  padding-right: 27px;
}

.subscribe-input:focus {
  color: #fff;
}

.subscribe-input::-ms-input-placeholder {
  color: var(--grey);
}

.subscribe-input::placeholder {
  color: var(--grey);
}

.form-text-bottom {
  color: rgba(255, 255, 255, .26);
  margin-top: 16px;
  font-size: 11px;
  line-height: 16px;
}

.form-success {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(63, 190, 78, .04);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.error {
  border: 1px solid var(--error);
  color: var(--error);
  background-color: rgba(255, 36, 76, .08);
  border-radius: 6px;
  margin-top: 16px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.product-hunt {
  width: 770px;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ph-info {
  flex: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.ph-badge {
  min-width: 200px;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 16px;
  flex: none;
}

.leave-review {
  width: 100%;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.leave-review-line {
  height: 1px;
  background-color: rgba(255, 255, 255, .1);
  flex: 1;
}

.leave-review-link {
  color: var(--white);
  flex: none;
  align-items: center;
  padding-right: 24px;
  transition: color .2s cubic-bezier(.165, .84, .44, 1), letter-spacing 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.leave-review-link:hover {
  color: var(--grade-2);
  letter-spacing: 1px;
}

.leave-review-icon {
  width: 40px;
  height: 40px;
  background-image: url('../images/pencil.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  margin-right: 12px;
}

.ph-info-text {
  color: var(--grey);
}

.ph-bage-text {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 24px;
  font-size: 13px;
}

.ph-badge-info {
  justify-content: space-between;
  align-items: center;
  margin: 16px 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.ph-badge-stars {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ph-badge-star {
  width: 20px;
  margin-left: 1px;
  margin-right: 1px;
}

.ph-badge-rating {
  background-color: var(--dark);
  color: #ff8f23;
  text-align: center;
  letter-spacing: -.5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  flex: none;
  margin-left: 20px;
  padding: 3px 11px;
  font-size: 17px;
  font-weight: 600;
}

.testimonials {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.review {
  background-image: linear-gradient(138deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.review-author {
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.review-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  margin-right: 20px;
}

.review-info {
  flex: 1;
}

.review-name {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.review-text {
  color: var(--grey);
  margin-top: 4px;
}

.review-author-link {
  opacity: .4;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  padding: 8px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.review-author-link:hover {
  opacity: 1;
  transform: scale(1.16);
}

.review-link-icon {
  width: 16px;
}

.features-v3 {
  grid-column-gap: 32px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-v3-image {
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.feature-v3-info {
  padding-left: 12px;
  padding-right: 12px;
}

.logotypes-wrapper {
  width: 1000px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logotypes-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.logotype {
  height: 32px;
  opacity: .4;
  margin: 3%;
}

.faq {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.accordion-info {
  padding-right: 72px;
}

.accordion-item {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-left: 24px;
  padding-right: 24px;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: block;
  overflow: hidden;
}

.accordion-item:hover {
  background-color: rgba(255, 255, 255, .03);
}

.accordion-plus {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, .06);
  border: 13px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: absolute;
  right: 0;
}

.accordion-text {
  color: var(--grey);
  padding-bottom: 32px;
}

.plus-line-v {
  width: 2px;
  height: 100%;
  background-color: var(--white);
  border-radius: 1px;
  position: absolute;
}

.accordion-heading {
  flex: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 16px;
}

.accordion-header {
  min-height: 72px;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.plus-line-h {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 1px;
  position: absolute;
}

.text-link {
  color: var(--primary);
}

.text-link:hover {
  text-decoration: underline;
}

.pricing-list {
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding-left: 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -2px;
  margin-right: 12px;
}

.pricing-3-cols {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.price-tag {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.plan-info {
  color: var(--grey);
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 20px;
}

.plan-name {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, .2);
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.pricing-list-item {
  color: var(--grey);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 20px;
  display: flex;
}

.pricing-table {
  text-align: center;
  background-image: linear-gradient(#303030, #1a1a1a);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-plan-line {
  z-index: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0%;
  right: 0%;
}

.pricing-plan-line.highlighted {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.faq-wrapper {
  max-width: 1000px;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.faq-category {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 20px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 32px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
}

.faq-category.first-category {
  margin-top: 40px;
}

.page-top-section {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
}

.page-intro {
  z-index: 1;
  max-width: 970px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 5vh auto;
  display: flex;
  position: relative;
}

.page-intro.post-intro {
  max-width: 770px;
}

.page-heading {
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-category-dot {
  width: 6px;
  height: 6px;
  background-color: var(--grade-2);
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
  border-radius: 50%;
  margin-right: 12px;
}

.link-grey {
  color: var(--grey);
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.licenses {
  width: 100%;
  max-width: 670px;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  display: grid;
}

.licence-link-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  margin-bottom: 11px;
  margin-left: 12px;
  margin-right: 12px;
  display: inline-block;
}

.licence-icon {
  width: 28px;
}

.licence-info {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 12px;
  padding-left: 40px;
}

.licence-photo {
  width: 192px;
  height: 144px;
  object-fit: cover;
  border-radius: 8px;
  flex: none;
}

.licence-icons {
  width: 192px;
  height: 144px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(255, 255, 255, .04);
  border-radius: 8px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 24px;
  display: grid;
}

.licence {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  margin-bottom: -1px;
  padding: 32px 0;
  display: flex;
}

.bottom-info-text {
  max-width: 570px;
  color: var(--grey);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 20px;
}

.timeline {
  width: 2px;
  background-color: rgba(255, 255, 255, .2);
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.changelog-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Date Timeline Info"
  / minmax(128px, auto) minmax(32px, auto) 1fr;
  grid-auto-columns: 1fr;
  padding-right: 40px;
  display: grid;
}

.timeline-date {
  color: gray;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  line-height: 20px;
}

.version-heading {
  margin-bottom: 16px;
}

.timeline-info {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
}

.changelog-badge {
  color: var(--primary);
  text-transform: uppercase;
  border: 1px solid rgba(63, 190, 78, .5);
  border-radius: 32px;
  flex: none;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.changelog-badge.fix-badge {
  color: var(--error);
  border-color: rgba(255, 36, 76, .5);
}

.changelog-badge.enhance-badge {
  color: var(--secondary);
  border-color: rgba(255, 143, 35, .5);
}

.timeline-dot {
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: var(--white);
  box-shadow: 0 0 0 12px var(--dark);
  border-radius: 50%;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.change-text {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 24px;
}

.changelog {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.change {
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 10px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
}

.posts {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-card {
  height: 368px;
  max-height: 32vw;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.post-card-thumb {
  width: 100%;
  height: 100%;
  opacity: .5;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.post-card-content {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.post-card-heading {
  max-width: 440px;
  margin-bottom: 24px;
}

.post-card-info {
  border-top: 1px solid rgba(255, 255, 255, .25);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.blog-category {
  background-color: var(--grade-1);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.blog-category.post-category {
  margin-bottom: 8px;
}

.post-card-date {
  font-size: 13px;
  line-height: 18px;
}

.change-heading {
  margin-bottom: 10px;
}

.pagination {
  margin-top: 48px;
}

.pagination-arrow {
  width: 20px;
  height: 20px;
  margin-top: -1px;
}

.post-heading {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.post-image {
  width: 100%;
  height: 680px;
  max-height: 64vw;
  object-fit: cover;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.post p {
  color: var(--light-grey);
  font-size: 17px;
  line-height: 28px;
}

.post a:hover {
  text-decoration: underline;
}

.post li {
  color: #aaa;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 17px;
}

.post-bottom-info {
  color: var(--grey);
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 20px;
  display: flex;
}

.post-content {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 88px;
  padding-left: 15px;
  padding-right: 15px;
}

.post-content.sg-post-content {
  padding-top: 0;
  padding-bottom: 0;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 370px;
  max-width: 100%;
  text-align: center;
  flex-direction: column;
  padding: 40px;
  display: flex;
}

.utility-page-content._404-content {
  width: 570px;
  align-items: center;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.input {
  height: 48px;
  background-color: rgba(255, 255, 255, .06);
  border: 1px #000;
  border-radius: 24px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 24px 9px;
}

.input::-ms-input-placeholder {
  color: var(--grey);
}

.input::placeholder {
  color: var(--grey);
}

.input.password-input {
  text-align: center;
  margin-bottom: 16px;
}

.password-heading {
  margin-top: 16px;
  margin-bottom: 20px;
}

.side-blocks {
  max-width: 1600px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin: 0 auto 80px;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
}

.side-info {
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.side-image {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.hero-subscribe {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 16px;
}

.features-v2 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.feature-v2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-v2-info {
  padding-top: 24px;
}

.text-grey-big {
  color: var(--grey);
  font-size: 20px;
  line-height: 28px;
}

.feature-list {
  width: 100%;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 0;
}

.feature-list.feature-card-list {
  margin-bottom: 0;
}

.feature-list-item {
  color: var(--white);
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 17px;
  line-height: 24px;
  display: flex;
}

.check-circle-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, .06);
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  margin-right: 12px;
}

.text-white {
  color: var(--white);
}

.cta-card {
  width: 970px;
  max-width: 100%;
  background-image: linear-gradient(170deg, var(--dark-grade-2), var(--dark-grade-1));
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 10%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.cta-app-icon {
  width: 92px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.button-bg {
  width: 100%;
  background-image: linear-gradient(125deg, var(--dark-grade-2), var(--dark-grade-1) 50%, var(--dark-grade-2));
  color: var(--primary);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-text {
  z-index: 1;
  color: var(--primary);
  font-size: 18px;
  line-height: 24px;
  position: relative;
}

.form-action-link {
  z-index: 1;
  height: 48px;
  background-color: rgba(0, 0, 0, 0);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.licence-app {
  width: 192px;
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
}

.licence-mockup {
  width: 192px;
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
}

.nav-dropdown {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.nav-link-content {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 18px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list.w--open {
  background-color: var(--dark-grade-1);
  background-image: linear-gradient(140deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: -4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.nav-dropdown-link {
  color: rgba(255, 255, 255, .5);
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px 12px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: padding .5s cubic-bezier(.165, .84, .44, 1), color .5s cubic-bezier(.165, .84, .44, 1), background-color .5s cubic-bezier(.165, .84, .44, 1);
}

.nav-dropdown-link:hover {
  color: var(--primary);
  background-color: rgba(0, 0, 0, .25);
  padding-left: 24px;
  padding-right: 20px;
}

.nav-dropdown-link.w--current {
  color: #fff;
}

.dropdown-arrow {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0;
  font-size: 13px;
  line-height: 16px;
}

.sg-buttons {
  grid-column-gap: 72px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.terms {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.terms p {
  color: var(--light-grey);
}

.terms a:hover {
  text-decoration: underline;
}

.terms ol {
  color: var(--light-grey);
  margin-bottom: 20px;
}

.text-block {
  font-family: "Fa Brands 400", sans-serif;
  font-size: 20px;
}

.link {
  margin-top: 20px;
  display: block;
}

.navlink-tekst {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  transition: color .6s;
}

.text-block-3 {
  font-size: 20px;
  line-height: 24px;
}

.text-block-4 {
  font-size: 20px;
}

.text-block-5, .text-block-6, .text-block-7 {
  font-size: 18px;
  line-height: 24px;
}

.image {
  max-width: 50%;
}

.image.booking-side-image {
  margin-right: 40px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, .2);
}

.booking-hero-image {
  width: 50%;
  max-width: 50%;
  object-fit: contain;
  border-radius: 6px;
  margin-right: 60px;
  position: static;
  overflow: visible;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.nav-divider {
  width: 1px;
  height: 22px;
  color: var(--secondary-dark);
  background-color: #cea578;
  margin-left: 19px;
  margin-right: 15px;
}

.hero-wrapper-two {
  height: auto;
  max-width: 30%;
  min-width: 30%;
  border-radius: var(--rounded-corner);
  text-align: left;
  flex-flow: column wrap;
  justify-content: space-between;
  align-self: center;
  align-items: flex-start;
  margin: 5vh auto;
  padding: 40px 20px;
  display: flex;
  position: static;
}

.hero-image-2 {
  width: 100%;
  margin-top: 50px;
}

.hero-image-2.shadow-two {
  width: auto;
  height: 55vh;
  max-width: none;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, .2);
}

.heading {
  color: var(--secondary-dark);
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 3.6rem;
}

.hero-album-description {
  color: var(--light-grey);
  align-self: auto;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.4rem;
}

.button-primary-2 {
  border: 1px solid var(--primary);
  border-radius: var(--rounded-corner);
  color: var(--primary);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  align-self: stretch;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 18px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  transition: all .6s;
}

.button-primary-2:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.button-primary-2:active {
  background-color: #43464d;
}

.hero-album-name {
  color: var(--secondary);
  align-self: flex-start;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 2.1rem;
}

.text-span {
  font-family: "Fa Solid 900", sans-serif;
  font-weight: 400;
}

.streaming-logos {
  border-radius: var(--rounded-corner);
  background-color: rgba(0, 7, 4, .6);
  border: 1px solid rgba(0, 7, 4, .6);
  justify-content: space-between;
  align-self: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  display: flex;
}

.streaming-logo {
  border: 0px solid var(--primary);
  border-radius: 50%;
  justify-content: space-around;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.streaming-logo-image {
  max-width: 35px;
  transition: opacity .6s;
  display: inline-block;
  position: absolute;
}

.streaming-logo-image:hover {
  opacity: 0;
  display: inline-block;
}

.streaming-logo-image.bandcamp-logo {
  max-width: 45px;
  align-self: center;
  display: inline-block;
}

.streaming-logo-image.streaming-logo-image-hover {
  display: inline-block;
  position: static;
}

.streaming-logo-image.streaming-logo-image-hover:hover {
  display: block;
}

.streaming-logos-header {
  opacity: .5;
  color: var(--light-grey);
  align-self: center;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  display: none;
}

.flex-block {
  align-self: stretch;
  align-items: stretch;
}

.div-block {
  align-self: flex-start;
}

.logo-2 {
  height: 65px;
  display: block;
}

.spark-small-sub-paragraph {
  color: var(--spark-library-foreground-secondary);
  margin-bottom: 0;
  font-size: .8rem;
  line-height: 1.3;
}

.spark-bold-heading {
  margin-bottom: .5rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.spark-bold-heading.spark-card-title {
  color: var(--secondary-dark);
  font-size: 1.2rem;
}

.spark-card-details {
  max-width: 590px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 32px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.spark-square-image-card {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.spark-wrapped-card {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.spark-wrapped-card.spark-stacked {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  transition: border-color .15s;
}

.spark-three-column-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.spark-tabs-content {
  width: 100%;
}

.spark-flat-tab {
  box-shadow: 0 3px 0 0 var(--primary);
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
  padding: 24px 80px;
  transition: box-shadow .3s, color .15s;
}

.spark-flat-tab:hover {
  box-shadow: 0 3px 0 0 var(--secondary);
  opacity: 1;
  color: var(--secondary);
}

.spark-flat-tab.w--current {
  border-bottom-color: var(--spark-library-foreground-interactive);
  box-shadow: 0 3px 0 0 var(--secondary-dark);
  color: var(--secondary-dark);
  background-color: rgba(0, 0, 0, 0);
}

.spark-flat-tabs-menu {
  grid-column-gap: 0px;
  justify-content: center;
  margin-bottom: 100px;
  font-family: Montserrat, sans-serif;
  font-size: 1.8em;
  line-height: 1em;
  display: flex;
}

.spark-tabs-parent {
  width: 100%;
}

.spark-secondary-paragraph {
  color: var(--light-grey);
  font-family: Montserrat, sans-serif;
}

.spark-centered-900 {
  width: 900px;
  max-width: 100%;
  text-align: center;
  align-self: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.spark-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spark-section {
  width: 100%;
  padding: 0 64px 176px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  position: relative;
}

.spark-section h5 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section h2 {
  color: var(--secondary-dark);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.spark-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h6 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section p {
  color: var(--light-grey);
}

.spark-section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section li {
  margin-bottom: .5rem;
}

.text-block-8 {
  color: var(--secondary);
}

.heading-2 {
  color: var(--secondary-dark);
  font-family: Montserrat, sans-serif;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  h5 {
    font-size: 17px;
    line-height: 24px;
  }

  h6 {
    font-size: 15px;
    line-height: 20px;
  }

  .hover-line {
    display: none;
  }

  .nav-link {
    text-transform: none;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 36px;
    font-size: 20px;
    line-height: 28px;
    display: block;
  }

  .nav-link.dropdown {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 32px;
    display: flex;
  }

  .menu-button {
    z-index: 150;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar {
    height: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-icon-line-top, .menu-icon-line-bottom {
    border-radius: 1px;
  }

  .brand {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-right {
    padding-right: 0;
  }

  .button.nav-button {
    height: 56px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
  }

  .button.small, .button.small.w--current {
    width: 75%;
  }

  .menu-icon-line-middle {
    border-radius: 1px;
  }

  .navigation {
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
  }

  .nav-menu {
    z-index: 10;
    width: 280px;
    height: auto;
    max-height: 100vh;
    background-color: var(--dark);
    text-align: left;
    background-image: linear-gradient(to right, #303030, #1a1a1a);
    padding-top: 88px;
    overflow: scroll;
  }

  .logo {
    height: 32px;
  }

  .logo-text {
    margin-left: 16px;
    font-size: 32px;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .sg-typography {
    padding-top: 0;
  }

  .sg-colors {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wrapper {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper.booking-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .section-intro.margin-bottom {
    margin-bottom: 64px;
  }

  .sg-color {
    height: 18vw;
    max-height: none;
  }

  .breadcrumbs {
    margin-top: 24px;
  }

  .text-label {
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-intro {
    margin-top: 20px;
    margin-bottom: 80px;
  }

  .hero-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .hero-section {
    padding-top: 120px;
    position: static;
  }

  .intro-left.margin-bottom {
    margin-bottom: 60px;
  }

  .main-grid {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .features {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-info {
    margin-left: 20px;
  }

  .icon-box {
    width: 72px;
    height: 72px;
    background-image: linear-gradient(#303030, #1a1a1a);
    border-radius: 16px;
  }

  .icon {
    height: 36px;
  }

  .feature-card {
    width: 83.33%;
    border-radius: 16px;
    flex-direction: column;
    margin-bottom: 80px;
    padding-bottom: 8px;
  }

  .feature-card-image {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .featre-card-info {
    margin-left: 8%;
    margin-right: 8%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .video {
    height: 50vw;
  }

  .play-button {
    width: 88px;
    height: 88px;
    background-size: 36px;
  }

  .footer-section {
    padding-top: 40px;
  }

  .footer-bottom {
    margin-top: 44px;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
  }

  .footer-social-link.facebook-link {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .footer-social-link.instagram-link {
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .footer-social-link.youtube-link {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .product-hunt {
    width: 100%;
  }

  .testimonials {
    grid-template-columns: 1fr;
    padding-left: 16%;
    padding-right: 16%;
  }

  .review {
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .features-v3 {
    grid-column-gap: 24px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr 1fr;
  }

  .feature-v3-image {
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .logotype {
    height: 28px;
    margin: 16px 20px;
  }

  .pricing-3-cols {
    max-width: 60vw;
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-wrapper {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-category.first-category {
    margin-top: 20px;
  }

  .page-top-section {
    padding-top: 56px;
    position: static;
  }

  .page-intro {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .page-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .changelog-block {
    grid-template-columns: minmax(88px, auto) minmax(32px, auto) 1fr;
  }

  .posts {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
  }

  .post-card {
    height: 44vw;
    max-height: none;
    border-radius: 16px;
  }

  .post-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .post-image {
    height: 64vw;
    max-height: none;
    border-radius: 16px;
  }

  .post-content {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .side-blocks {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
    overflow: hidden;
  }

  .side-info {
    padding-left: 0%;
    padding-right: 12%;
  }

  .side-image {
    border-radius: 16px;
  }

  .features-v2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 16%;
    padding-right: 16%;
  }

  .feature-v2 {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-v2-info {
    padding-top: 0;
    padding-left: 20px;
  }

  .text-grey-big {
    font-size: 17px;
    line-height: 24px;
  }

  .cta-card, .cta-app-icon {
    border-radius: 16px;
  }

  .button-bg {
    background-image: linear-gradient(125deg, var(--dark-grade-2), var(--dark-grade-1));
  }

  .nav-link-content {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 23px;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-radius: 0;
    flex-wrap: wrap;
    margin-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    position: relative;
  }

  .nav-dropdown-link {
    color: #fff;
    padding-left: 52px;
    padding-right: 52px;
  }

  .nav-dropdown-link:hover, .nav-dropdown-link:visited {
    color: #fff;
  }

  .nav-dropdown-link.w--current {
    color: #e8985c;
  }

  .dropdown-arrow {
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 15px;
  }

  .sg-buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .booking-hero-image {
    width: 90%;
    max-width: 90%;
    margin-right: 0;
  }

  .logo-2 {
    height: 32px;
  }

  .spark-wrapped-card {
    width: 45%;
  }

  .spark-three-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    justify-content: space-between;
    display: flex;
  }

  .spark-flat-tabs-menu {
    margin-bottom: 64px;
  }

  .spark-section {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    padding: 10px 32px;
    font-size: 17px;
    line-height: 24px;
  }

  .nav-link.dropdown {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar {
    height: 64px;
  }

  .button.large {
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 15px;
  }

  .button.small, .button.small.w--current {
    width: 80%;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .nav-menu {
    width: 220px;
    padding-top: 64px;
  }

  .top-button {
    display: none;
  }

  .sg-colors {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .sg-color-card {
    padding: 8px;
  }

  .section-intro.margin-bottom {
    margin-bottom: 48px;
  }

  .sg-color-name {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-intro {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .hero-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .hero-image {
    min-width: 0;
  }

  .hero-section {
    padding-top: 96px;
  }

  .intro-left.margin-bottom {
    margin-bottom: 48px;
  }

  .main-grid {
    grid-row-gap: 48px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-radius: 12px;
    margin-bottom: 60px;
  }

  .featre-card-info {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .play-button {
    width: 64px;
    height: 64px;
    background-size: 24px;
  }

  .footer-section {
    padding-top: 24px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding: 16px;
  }

  .footer-nav-link {
    margin: 4px 12px;
  }

  .footer-social {
    margin-top: 0;
  }

  .subscribe-input-wrapper {
    padding: 6px;
  }

  .ph-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .testimonials {
    padding-left: 11%;
    padding-right: 11%;
  }

  .review {
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .review-author {
    flex-wrap: wrap;
  }

  .features-v3 {
    grid-row-gap: 48px;
  }

  .feature-v3-image {
    border-radius: 12px;
  }

  .feature-v3-info {
    padding-left: 8px;
    padding-right: 8px;
  }

  .accordion-info {
    padding-right: 56px;
  }

  .accordion-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-plus {
    width: 36px;
    height: 36px;
    border-width: 11px;
  }

  .accordion-text {
    padding-bottom: 16px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .accordion-header {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pricing-3-cols {
    max-width: 66vw;
  }

  .faq-category {
    margin-top: 48px;
    margin-bottom: 20px;
  }

  .faq-category.first-category {
    margin-top: 0;
  }

  .page-intro {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .page-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .timeline-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 10px var(--dark);
    margin-top: 10px;
  }

  .change-text {
    font-size: 15px;
  }

  .posts {
    grid-row-gap: 24px;
  }

  .post-card-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .post-card-heading {
    margin-bottom: 16px;
  }

  .post-card-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .post-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .post-image {
    border-radius: 12px;
  }

  .post-content {
    padding-top: 48px;
  }

  .side-blocks {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .side-info {
    padding-right: 0%;
  }

  .side-image {
    border-radius: 12px;
  }

  .features-v2 {
    grid-template-columns: 1fr;
    padding-left: 10%;
    padding-right: 10%;
  }

  .cta-card {
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-app-icon {
    width: 72px;
    margin-bottom: 16px;
  }

  .button-bg {
    width: 100%;
  }

  .nav-dropdown-link {
    padding-left: 48px;
    padding-right: 48px;
  }

  .dropdown-arrow {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .sg-buttons {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-items: center;
  }

  .nav-divider {
    width: 200px;
    height: 1px;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .spark-small-sub-paragraph {
    line-height: 1.3;
  }

  .spark-wrapped-card {
    width: 100%;
  }

  .spark-wrapped-card.spark-stacked {
    width: 100%;
    grid-row-gap: 16px;
  }

  .spark-three-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .spark-flat-tab {
    padding-left: 32px;
    padding-right: 32px;
  }

  .spark-secondary-paragraph {
    margin-bottom: 32px;
  }

  .spark-container {
    width: 100%;
  }

  .spark-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    z-index: 100;
  }

  .button.small, .button.small.w--current {
    width: 95%;
  }

  .nav-menu {
    width: 100%;
  }

  .logo-text {
    display: block;
  }

  .sg-colors {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper.booking-wrapper {
    flex-direction: column-reverse;
  }

  .sg-color {
    height: 24vw;
  }

  .hero-intro {
    margin-top: 20px;
  }

  .hero-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .intro-left {
    text-align: center;
    align-items: center;
  }

  .main-grid {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .features {
    grid-row-gap: 48px;
  }

  .feature {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-info {
    margin-top: 20px;
    margin-left: 0;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 40px;
  }

  .featre-card-info {
    margin-left: 24px;
    margin-right: 24px;
  }

  .play-button {
    margin-top: 7%;
  }

  .footer-bottom {
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }

  .subscribe-input {
    padding-left: 25px;
  }

  .product-hunt {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .ph-info {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .leave-review {
    justify-content: center;
  }

  .leave-review-line {
    display: none;
  }

  .leave-review-link {
    padding-right: 0;
  }

  .testimonials {
    padding-left: 0%;
    padding-right: 0%;
  }

  .review {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .review-author {
    justify-content: center;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .review-author-link {
    margin-top: 10px;
    margin-right: 10px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .features-v3 {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .logotype {
    height: 26px;
    margin: 12px;
  }

  .accordion-info {
    padding-right: 0;
  }

  .accordion-item {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-heading {
    font-size: 15px;
    line-height: 20px;
  }

  .pricing-list {
    margin-top: 32px;
    padding-top: 24px;
  }

  .pricing-3-cols {
    max-width: none;
    grid-row-gap: 40px;
  }

  .pricing-table {
    padding: 40px 24px;
  }

  .page-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .licence-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .licence {
    flex-direction: column;
    padding-top: 48px;
  }

  .changelog-block {
    grid-column-gap: 24px;
    grid-row-gap: 8px;
    grid-template: "Timeline-Mobile Date-Mobile Date-Mobile"
                   "Timeline-Mobile Info-Mobile Info-Mobile"
                   / auto minmax(32px, auto) 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-date {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .posts {
    padding-left: 0%;
    padding-right: 0%;
  }

  .post-card {
    height: 72vw;
  }

  .post-card-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .side-blocks {
    grid-row-gap: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .side-info {
    padding-left: 0%;
    padding-right: 0%;
  }

  .features-v2 {
    grid-row-gap: 48px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .feature-v2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-v2-info {
    padding-top: 20px;
    padding-left: 0;
  }

  .cta-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sg-buttons {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .booking-hero-image {
    width: 90%;
    margin-right: 0;
  }

  .hero-image-2.shadow-two {
    height: auto;
    max-width: 90%;
  }

  .spark-bold-heading {
    line-height: 1.3;
  }

  .spark-wrapped-card.spark-stacked {
    width: 100%;
  }

  .spark-flat-tab {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .spark-flat-tabs-menu {
    flex-flow: column wrap;
    justify-content: flex-start;
  }

  .spark-centered-900 {
    margin-bottom: 64px;
  }

  .spark-section {
    padding: 64px 20px;
  }

  .spark-section h1 {
    font-size: 3rem;
  }

  .spark-section h2 {
    font-size: 2.5rem;
  }
}

#w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-a4499b84, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-a4499b84 {
  justify-self: center;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645124-a4499b89 {
  align-self: start;
  justify-self: end;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645126-a4499b89 {
  align-self: stretch;
  justify-self: center;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645154-a4499b89 {
  align-self: start;
  justify-self: stretch;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645156-a4499b89 {
  align-self: start;
  justify-self: center;
}

#w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bc-a4499b8e, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bd-a4499b8e, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51be-a4499b8e, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bf-a4499b8e, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51c0-a4499b8e, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51c1-a4499b8e {
  align-self: center;
  justify-self: center;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875ca-a4499b8f {
  align-self: start;
  justify-self: end;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875cc-a4499b8f {
  align-self: stretch;
  justify-self: center;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875d6-a4499b8f {
  align-self: start;
  justify-self: stretch;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875d8-a4499b8f {
  align-self: stretch;
  justify-self: center;
}

#w-node-b146e646-2c39-7850-d251-0be064a92c92-a4499b8f {
  align-self: start;
  justify-self: stretch;
}

#w-node-b146e646-2c39-7850-d251-0be064a92c94-a4499b8f {
  align-self: start;
  justify-self: center;
}

#w-node-_1be4fd12-f00e-db54-a80a-37846b682717-0c64d43d, #w-node-_217c8907-61e3-83c2-04ad-9634c883edab-0c64d43d, #w-node-_1be4fd12-f00e-db54-a80a-37846b68271f-0c64d43d, #w-node-_1be4fd12-f00e-db54-a80a-37846b682727-0c64d43d, #w-node-b894bf32-2dd2-40f0-40a2-34f8e2f2c9b9-0c64d43d, #w-node-b894bf32-2dd2-40f0-40a2-34f8e2f2c9c1-0c64d43d, #w-node-b894bf32-2dd2-40f0-40a2-34f8e2f2c9c9-0c64d43d, #w-node-b894bf32-2dd2-40f0-40a2-34f8e2f2c9d1-0c64d43d, #w-node-_1be4fd12-f00e-db54-a80a-37846b682731-0c64d43d, #w-node-_1be4fd12-f00e-db54-a80a-37846b682739-0c64d43d, #w-node-_1be4fd12-f00e-db54-a80a-37846b682741-0c64d43d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-a4499b84, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-a4499b84, #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-a4499b88 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645124-a4499b89 {
    grid-area: Date-Mobile;
    justify-self: start;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645126-a4499b89 {
    grid-area: Timeline-Mobile;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645128-a4499b89 {
    grid-area: Info-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645154-a4499b89 {
    grid-area: Date-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645156-a4499b89 {
    grid-area: Timeline-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645158-a4499b89 {
    grid-area: Info-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875ca-a4499b8f {
    grid-area: Date-Mobile;
    justify-self: start;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875cc-a4499b8f {
    grid-area: Timeline-Mobile;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875ce-a4499b8f {
    grid-area: Info-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875d6-a4499b8f {
    grid-area: Date-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875d8-a4499b8f {
    grid-area: Timeline-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875da-a4499b8f {
    grid-area: Info-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c92-a4499b8f {
    grid-area: Date-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c94-a4499b8f {
    grid-area: Timeline-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c96-a4499b8f {
    grid-area: Info-Mobile;
  }
}


@font-face {
  font-family: 'Fa V 4 Compatibility';
  src: url('../fonts/fa-v4compatibility.woff2') format('woff2'), url('../fonts/fa-v4compatibility.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.woff2') format('woff2'), url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.woff2') format('woff2'), url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Duotone 900';
  src: url('../fonts/fa-duotone-900.woff2') format('woff2'), url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}