html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

* {
  --darkColor: #23292E;
  --primaryColor: #8883F0;
  --grayColor: #95989D;
  --bgHealth: #EF8481;
  --bgEvents: #262B37;
  --bgTickets: #111111;
  --bgContact: #F7FAFE;
  --whiteColor: #FFFFFF;
  --social: #111111;
}

.container-l {
  max-width: 1400px;
  margin: 0 auto;
}

@media only screen and (max-width: 1700px) {
  .container-l {
    max-width: 1180px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .container-l {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 425px) {
  .container-l {
    max-width: 311px;
    margin: 0 auto;
  }
}

.wave-container-top {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: 10em;
}

.wave-container-top img {
  position: relative;
  left: 3px;
  bottom: 1px;
  width: 100vw;
}

@media only screen and (max-width: 768px) {
  .wave-container-top {
    display: none;
  }
}

.cta-primary {
  font-size: 15px;
  padding: 1em 2.5em;
  background-color: white;
  color: #23292E;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  border-radius: 188px;
  cursor: pointer;
  border: none;
}

.cta-primary:hover {
  background-color: #23292E;
  color: white;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}

.cta-secondary,
.cta-secondary-nav {
  background-color: #8883F0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  border-radius: 188px;
  cursor: pointer;
}

.cta-secondary:hover,
.cta-secondary-nav:hover {
  background-color: #fff;
  color: var(--primaryColor);
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

.cta-secondary-nav {
  font-size: 14px;
  padding: 0.75em 2em;
}

.cta-secondary {
  font-size: 15px;
  border: 2px solid white;
  padding: 1em 2.5em;
}

@media only screen and (max-width: 768px) {
  .cta-primary {
    font-size: 12.91px;
    padding: 1.33em 3.958em;
    background-color: white;
    color: #23292E;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    border-radius: 188px;
    cursor: pointer;
    border: none;
  }
  .cta-primary:hover {
    background-color: #23292E;
    color: white;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  .cta-secondary {
    font-size: 12.91px;
    padding: 1.33em 3.958em;
  }
}

header {
  background-color: var(--darkColor);
  color: var(--whiteColor);
  font-weight: 700;
  position: fixed;
  width: 100%;
  z-index: 30;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.3125em;
  padding-bottom: 1em;
}

header nav a {
  color: white;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 12;
}

header nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .logo span {
  font-size: 1rem;
}

header nav .hamburguer {
  width: 28px;
  height: 16px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}

header nav .hamburguer__menu {
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  z-index: 11;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header nav .hamburguer__menu::before, header nav .hamburguer__menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header nav .hamburguer__menu::before {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

header nav .hamburguer__menu::after {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

header nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

header nav .nav-links a {
  text-decoration: none;
  color: white;
  margin-left: 3.3125em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header nav .nav-links li {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header nav .nav-links li:hover {
  color: var(--primaryColor);
  cursor: pointer;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

.active {
  color: var(--primaryColor);
}

@media only screen and (max-width: 768px) {
  header {
    background-color: var(--darkColor);
    color: var(--whiteColor);
    font-weight: 700;
    position: fixed;
    width: 100vw;
    z-index: 30;
    overflow-x: hidden;
    /*animation*/
  }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.3125em;
    padding-bottom: 1em;
  }
  header nav a {
    color: white;
    text-decoration: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  header nav .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .logo span {
    font-size: 1rem;
  }
  header nav .hamburguer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
  }
  header nav .nav-links {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #23292E;
    -webkit-transition: top 1s ease;
    transition: top 1s ease;
    display: none;
  }
  header nav .nav-links a {
    text-decoration: none;
    color: white;
    margin-right: auto;
    margin-top: 35px;
    margin-left: 40px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  header nav .nav-links li {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    font-size: 42px;
  }
  header nav .nav-links li:hover {
    color: var(--primaryColor);
    cursor: pointer;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  header nav .nav-links .btn-nav {
    width: 80%;
    text-align: center;
    font-size: 19px;
  }
  header .active {
    color: var(--primaryColor);
  }
  header .active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primaryColor);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .hamburguer.open .hamburguer__menu {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .hamburguer.open .hamburguer__menu::before {
    -webkit-transform: rotate(45deg) translate(35px, -35px);
            transform: rotate(45deg) translate(35px, -35px);
  }
  header .hamburguer.open .hamburguer__menu::after {
    -webkit-transform: rotate(-45deg) translate(35px, 35px);
            transform: rotate(-45deg) translate(35px, 35px);
  }
}

.homepage {
  background-color: var(--primaryColor);
  min-height: 100vh;
  color: var(--whiteColor);
}

.homepage__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.homepage__row .homepage__col {
  width: 50%;
}

.homepage__row .homepage__col-img {
  display: none;
}

.homepage__row .homepage__col-intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.homepage__row .homepage__col-intro p {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 3.5em;
  margin-top: 2.2em;
  width: 60%;
}

.homepage__row .homepage__col-cta a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.homepage__row .homepage__col-cta .cta-secondary {
  margin-left: 1.5em;
}

.homepage__row .homepage__col-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.homepage__row .homepage__col-info-screen h2 {
  font-size: 2.5rem;
}

.homepage__row .homepage__col-info-screen span {
  font-size: 1.5rem;
}

.homepage__row .homepage__col-info-components {
  margin-left: 2.625em;
}

.homepage__row .homepage__col-info-components h2 {
  font-size: 2.5rem;
}

.homepage__row .homepage__col-info-components span {
  font-size: 1.5rem;
}

.homepage__row .homepage__col-figma p {
  margin-bottom: 1em;
}

.homepage__row .homepage__col-figma img {
  margin: -8px 0 0 -17px;
}

.homepage__row .homepage__col .health-components {
  overflow: hidden;
}

[class^="homepage__col-"] {
  margin-bottom: 2.1875em;
}

@media only screen and (max-width: 768px) {
  .faixa {
    display: none;
  }
  .homepage {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    padding-top: 8em;
  }
  .homepage__row {
    display: block;
  }
  .homepage__row .homepage__col {
    min-width: 100%;
  }
  .homepage__row .homepage__col-img {
    display: block;
  }
  .homepage__row .homepage__col-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  .homepage__row .homepage__col-intro p {
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 0.4375em;
    padding-top: 0.5625em;
    width: 100%;
  }
  .homepage__row .homepage__col-cta {
    white-space: nowrap;
    padding-bottom: 67px;
  }
  .homepage__row .homepage__col-cta a {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .homepage__row .homepage__col-cta .cta-secondary {
    margin-left: 0.7em;
  }
  .homepage__row .homepage__col-info {
    display: none;
  }
  .homepage__row .homepage__col-figma p {
    display: none;
    margin-bottom: 1em;
  }
  .homepage__row .homepage__col-figma img {
    display: none;
    margin: -8px 0 0 -17px;
  }
  .homepage__row .homepage__col-two {
    display: none;
    width: 0;
  }
}

.highlights {
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-content: center;
  overflow-x: hidden;
}

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

.highlights__container-content-center h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlights__container-content-center p {
  color: var(--grayColor);
  font-weight: 500;
  margin-bottom: 4.125em;
}

.highlights__container-content-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5.63em;
}

.highlights__container-content-details-col1 .li, .highlights__container-content-details-col2 .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.highlights__container-content-details-col1 .li p, .highlights__container-content-details-col2 .li p {
  margin-left: 0.75em;
}

.highlights__container-img-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .highlights {
    min-height: 100vh;
    display: -ms-grid;
    display: grid;
    place-content: center;
    overflow-x: hidden;
  }
  .highlights__container {
    margin-top: 84px;
  }
  .highlights__container-img {
    display: none;
  }
  .highlights__container-content-center {
    text-align: center;
  }
  .highlights__container-content-center h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  .highlights__container-content-center p {
    color: var(--grayColor);
    font-weight: 500;
    margin-bottom: 4.125em;
  }
  .highlights__container-content-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 60px auto;
    width: 80%;
  }
  .highlights__container-content-details-col1 p, .highlights__container-content-details-col2 p {
    margin-left: 0.75em;
  }
  .highlights__container-img-mobile {
    display: block;
    width: 155%;
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
    margin-bottom: 100px;
  }
}

.wave-container-top {
  position: relative;
}

.wave-container-top img {
  position: relative;
  left: 0;
}

.onboard {
  min-height: 100vh;
  position: relative;
}

.onboard__center {
  background-color: var(--primaryColor);
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.onboard__center-center {
  text-align: center;
  color: var(--whiteColor);
  margin: 0 6.8em;
}

.onboard__center-center h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
}

.onboard__center-center p {
  line-height: 28px;
  margin-bottom: 3.6em;
}

.onboard__center-bottom {
  display: none;
}

.onboard__bottom {
  text-align: center;
  position: relative;
}

.onboard__bottom-mockup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  position: absolute;
  top: -170px;
  left: 30%;
}

@media only screen and (max-width: 1685px) {
  .onboard__bottom-mockup {
    left: 25%;
  }
}

.onboard__bottom-mockup .mockup-bottom-right {
  position: absolute;
  top: 60px;
  right: 0;
}

@media only screen and (max-width: 1685px) {
  .onboard__bottom-mockup .mockup-bottom-right {
    right: -120px;
  }
}

@media only screen and (max-width: 768px) {
  .onboard {
    position: relative;
    min-height: 100vh;
  }
  .onboard__center {
    background-color: var(--primaryColor);
    display: block;
  }
  .onboard__center-center {
    text-align: center;
    color: var(--whiteColor);
    width: 100%;
    padding: 100px 0 0 0;
    margin: 0 auto;
  }
  .onboard__center-center h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
  }
  .onboard__center-center p {
    line-height: 28px;
    margin-bottom: 3.6em;
  }
  .onboard__center-left, .onboard__center-right {
    display: none;
  }
  .onboard__center-bottom {
    display: block;
    width: 100%;
    margin: 0;
    padding: 100px 0 0 0;
  }
}

@media only screen and (max-width: 768px) and (min-width: 520px) {
  .onboard__center-bottom {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .onboard__bottom {
    display: none;
  }
  .onboard__bottom .wave-container {
    display: none;
  }
}

.health {
  min-height: 100vh;
  position: relative;
  margin-top: 25em;
}

.health__center {
  background-color: var(--bgHealth);
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.health__center-center {
  text-align: center;
  color: var(--whiteColor);
  margin: 0 6.8em;
}

.health__center-center h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
}

.health__center-center p {
  line-height: 28px;
  margin-bottom: 3.6em;
}

.health__center-center a {
  white-space: nowrap;
}

.health__bottom {
  text-align: center;
  position: relative;
  top: -18em;
  margin: 0 auto;
}

.health__bottom-top-mobile, .health__bottom-bottom-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .health {
    min-height: 100vh;
    margin-top: 0;
  }
  .health__center {
    background-color: var(--bgHealth);
    min-height: 100vh;
    display: -ms-grid;
    display: grid;
    place-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .health__center-center {
    text-align: center;
    color: var(--whiteColor);
    width: 100%;
    margin: -250px 0 0 0;
    margin: 0 auto;
  }
  .health__center-center h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
  }
  .health__center-center p {
    line-height: 28px;
    margin-bottom: 3.6em;
  }
  .health__center-left, .health__center-right {
    display: none;
  }
  .health__bottom {
    text-align: center;
    position: static;
    top: 0;
    background-color: var(--bgHealth);
  }
  .health__bottom-top-mobile, .health__bottom-bottom-mobile {
    display: block;
    position: relative;
    top: -150px;
  }
  .health__bottom .mockup-desktop {
    display: none;
  }
  .health .wave-container {
    display: none;
  }
}

.workouts {
  min-height: 100vh;
  position: relative;
}

.workouts .wave-container-top {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.workouts__center {
  background-color: var(--primaryColor);
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.workouts__center-center {
  text-align: center;
  color: var(--whiteColor);
  margin: 0 6.8em;
}

.workouts__center-center h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
}

.workouts__center-center p {
  line-height: 28px;
  margin-bottom: 3.6em;
}

.workouts__bottom {
  text-align: center;
  position: relative;
}

.workouts__bottom-mockup {
  width: 40%;
  position: relative;
  top: -160px;
  left: 30%;
}

.workouts__bottom-mockup img + img {
  margin-top: 7.6em;
}

.workouts__bottom .dark {
  margin-top: 7.4em;
  position: relative;
  top: 150px;
}

.workouts__bottom .dark h1 {
  font-size: 3.5rem;
}

.workouts__bottom .dark img {
  margin-top: 2.1em;
}

.workouts__bottom .wave-container {
  position: absolute;
  top: 0;
  z-index: -20;
}

.workouts__bottom-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .workouts {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
  }
  .workouts .wave-container-top {
    display: none;
  }
  .workouts__center {
    background-color: var(--primaryColor);
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .workouts__center-center {
    text-align: center;
    color: var(--whiteColor);
    margin: -200px 0 0 0;
  }
  .workouts__center-center h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
  }
  .workouts__center-center p {
    line-height: 28px;
    margin-bottom: 3.6em;
  }
  .workouts__center-left, .workouts__center-right {
    display: none;
  }
  .workouts__bottom {
    text-align: center;
    position: relative;
  }
  .workouts__bottom-mobile {
    display: block;
    background-color: var(--primaryColor);
  }
  .workouts__bottom-mobile-top, .workouts__bottom-mobile-bottom {
    position: relative;
    top: -250px;
  }
  .workouts__bottom-mobile-bottom {
    width: 130%;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .workouts__bottom-mockup {
    display: none;
  }
  .workouts__bottom-mockup img + img {
    margin-top: 0;
  }
  .workouts__bottom .dark {
    display: block;
    margin-top: 93px;
    position: static;
  }
  .workouts__bottom .dark h1 {
    font-size: 1.875rem;
  }
  .workouts__bottom .dark img {
    margin-top: 1.1em;
    z-index: 10;
    position: relative;
  }
  .workouts__bottom .wave-container {
    display: none;
  }
}

.dark__mode {
  position: relative;
}

.dark__mode-wave-container-top {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dark__mode-components {
  background-color: #111;
}

.dark__mode-wave-container {
  position: relative;
}

.dark__mode-wave-container img {
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .dark__mode {
    position: relative;
  }
  .dark__mode-wave-container-top {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    display: none;
  }
  .dark__mode-components {
    background-color: #111;
    width: 180%;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .dark__mode-components img {
    padding: 20px 0;
    max-height: 450px;
    overflow: hidden;
  }
  .dark__mode-wave-container {
    display: none;
  }
}

.events {
  min-height: 100vh;
  background-color: #262B37;
  overflow-x: hidden;
}

.events__center {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  min-height: 100vh;
  place-content: center;
}

.events__center-center {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.events__center-center h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
  color: white;
}

.events__center-center p {
  line-height: 28px;
  margin-bottom: 3.6em;
  color: white;
}

.events__center-left {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.events__center-right {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/ 4;
}

.events__wave-container {
  background-color: #111;
}

.events__wave-container img {
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 768px) {
  .events {
    min-height: 100vh;
    background-color: #262B37;
  }
  .events__center {
    -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: 1fr 10px 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    min-height: 100vh;
  }
  .events__center-center {
    text-align: center;
    color: white;
    width: 100%;
    margin: 30px 0;
    grid-column: 1/ -1;
  }
  .events__center-center h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
  }
  .events__center-center p {
    line-height: 28px;
    margin-bottom: 3.6em;
  }
  .events__center-center a {
    white-space: nowrap;
  }
  .events__center-left {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-bottom: 80px;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .events__center-right {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/ 4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    margin-bottom: 40px;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .events__wave-container {
    display: none;
  }
}

.tickets {
  min-height: 100vh;
  background-color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  overflow-x: hidden;
}

@media only screen and (max-width: 1416px) {
  .tickets {
    display: -ms-grid;
    display: grid;
    place-content: center;
  }
}

.tickets__wave-container {
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .tickets img {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
  .tickets__wave-container {
    display: none;
  }
}

.charts {
  min-height: 100vh;
  background-color: #262B37;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.charts__wave-container-top {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.charts__container {
  text-align: center;
  color: #fff;
  margin: 15em 0;
}

.charts__container-content {
  margin-bottom: 7em;
}

.charts__container-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.charts__container-content p {
  line-height: 28px;
}

.charts__container-mockup .mockup-mobile {
  display: none;
}

.charts__wave-container {
  position: relative;
}

.charts__wave-container img {
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .charts__container {
    margin: 8rem 0;
  }
  .charts__container-mockup .mockup-desktop {
    display: none;
  }
  .charts__container-mockup .mockup-mobile {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .charts__wave-container {
    display: none;
  }
}

.features {
  background-color: #111111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
}

.features__sleep {
  background: url(/images/Features-sleep-track.png);
  background-size: cover;
  margin-top: 70px;
  margin-bottom: 70px;
  margin-right: 60px;
  border-radius: 8px;
}

.features__sleep h1 {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.95em 4em 9em 0.75em;
}

.features__workout {
  background: url(/images/Features-workout-summary.png);
  background-size: cover;
  background-position: 50% 50%;
  margin-top: 70px;
  margin-bottom: 70px;
  border-radius: 8px;
}

.features__workout h1 {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.95em 2em 9em 0.75em;
}

.features__wave-container {
  position: relative;
}

.features__wave-container img + img {
  position: absolute;
  top: 85px;
  left: 50%;
}

@media only screen and (max-width: 768px) {
  .features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 90px 0;
  }
  .features__sleep {
    width: 80%;
    margin: 25px auto;
  }
  .features__workout {
    width: 80%;
    margin: 25px auto;
  }
  .features__wave-container {
    display: none;
  }
}

.product__buy {
  display: -ms-grid;
  display: grid;
  place-content: center;
  min-height: 100vh;
}

.product__buy-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -300px;
}

.product__buy-logo h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-top: -0.74em;
}

.wave-container-product {
  position: relative;
}

.wave-container-product img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.product {
  min-height: 20vh;
  background-color: #F7FAFE;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  padding-bottom: 5em;
}

.product__buy-mockup {
  position: relative;
  margin-top: -550px;
}

@media only screen and (max-width: 1400px) {
  .product__buy-mockup {
    margin-top: -250px;
  }
}

.product-content a {
  color: #8883f0;
  font-size: 4.5rem;
  margin-bottom: 0.6em;
  font-weight: 700;
  position: relative;
}

.product-content a:hover::after {
  -webkit-animation: underline 0.35s ease;
          animation: underline 0.35s ease;
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  background-color: var(--primaryColor);
  width: 100%;
  height: 2px;
  border-radius: 8px;
}

.product-content p {
  color: #8883F0;
  font-size: 1.4rem;
  margin: 70px 0;
}

.product .message-footer {
  color: #95989D;
  font-size: 1.25rem;
}

.product .message-footer a {
  color: #95989D;
}

@-webkit-keyframes underline {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 0%;
    opacity: 1;
  }
}

@keyframes underline {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 0%;
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  .product__buy-logo h1 {
    font-size: 2.375rem;
    margin-top: -60px;
  }
  .product__buy-mockup img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .product-content a {
    font-size: 61px;
  }
  .product-content p {
    margin: 70px 0;
  }
}

footer {
  text-align: center;
  background-color: #F2F2F2;
  padding: 3em 0;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

footer .social ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1em;
}

footer .social ul li a i {
  color: var(--social);
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .social ul li a:hover i {
  color: var(--primaryColor);
}

footer span {
  color: var(--social);
  padding: 2em 0 3em;
  display: inline-block;
  font-size: 14px;
}

footer p {
  color: #a2a8b0;
  font-size: 14px;
}
/*# sourceMappingURL=main.min.css.map */