/* guides */

/*
colors:
red: #d74e41;
black: #1e1d1d;
blue: #33367a;
white: #fff;

fonts:
Helvetica Now Text; 700;
Brittany Signature; 400;
Panforte; 700 / 400 / 300;
*/

/* general */

* {
  box-sizing: border-box;
}

:root {
  color-scheme: only light;
}

::-webkit-input-placeholder {
  color: #d74e41;
}

::-moz-placeholder {
  color: #d74e41;
}

:-ms-input-placeholder {
  color: #d74e41;
}

:-moz-placeholder {
  color: #d74e41;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Helvetica Now Text", sans-serif;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

section {
  -webkit-transition: background-image 0.2s ease-in-out;
  -moz-transition: background-image 0.2s ease-in-out;
  -o-transition: background-image 0.2s ease-in-out;
  transition: background-image 0.2s ease-in-out;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
}

/* navigation */

nav {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

nav .home {
  flex: 1 1 50%;
  margin: 1.5rem 0 0;
  padding: 0 1.5rem;
  text-align: left;
}

nav img {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 9999;
}

nav .home {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

nav .home.active {
  opacity: 1;
  pointer-events: auto;
}

nav .user {
  opacity: 0;
  pointer-events: none;
  flex: 1 1 50%;
  margin: 1.5rem 0 0;
  padding: 0 1.5rem;
  text-align: right;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

nav .user.active {
  opacity: 1;
  pointer-events: auto;
}

/* intro */

.intro {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
}

.intro.active {
  display: flex;
}

.intro > div {
  flex: 1;
}

.intro h1 {
  color: #d74e41;
  text-transform: uppercase;
}

.intro h2 {
  color: #f4f2e8;
  font-family: "Brittany Signature", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.intro img {
  width: 60%;
}

.intro .intro-loading {
  width: 100%;
  margin-top: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}

.intro .intro-loading > div {
  width: 0%;
  height: 10px;
  background-color: #6C91BC;
  border-radius: 10px;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}

/* subscription */

.subscription {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.subscription.active {
  display: flex !important;
}

.subscription > div {
  flex: 1;
}

.subscription h1 {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-weight: 300;
}

.subscription h1 span {
  font-weight: 400;
}

.subscription h3 {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: .25rem .5rem;
  color: #000;
  font-family: "Panforte", sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .25px;
  text-transform: uppercase;
  background-color: #ced80d;
  border-radius: 25px;
}

.subscription-plans {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}

.subscription-plans > div {
  position: relative;
  background-color: #f4f2e8;
  border-radius: 10px;
}

.subscription-plans > div:nth-child(2) {
  background-color: #fff;
  box-shadow: 0 -14px 18px rgba(255, 255, 255, 0.5), 0 14px 18px rgba(255, 255, 255, 0.5);
}

.subscription-plans > div p {
  position: relative;
  padding: .5rem;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}

.subscription-plans > div p span {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.subscription-plans > div:nth-child(2) p span,
.subscription-plans > div:nth-child(3) p span {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-top: 5px;
}

.subscription .footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.subscription .footer img {
  width: 65px;
}

/* choice */

.choice {
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}

.choice.active {
  display: flex;
}

.choice .continue-journeys {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
  overflow: hidden;
}

.choice .continue-journeys .individual-journey {
  padding: 1rem;
  background-color: #f4f2e8;
  border-radius: 20px;
}

.choice .continue-journeys .individual-journey h3 {
  margin-bottom: .5rem;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: .95rem;
  font-weight: 400;
}

.choice .continue-journeys .individual-journey h2 {
  margin-bottom: 1rem;
  color: #1e1d1d;
  font-family: "Brittany Signature", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.choice .continue-journeys .individual-journey img {
  width: 100%;
}

.choice .choose-journey {
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.choice .choose-journey h2 {
  margin-bottom: 2rem;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
}

.choice .choose-journey h2 span {
  color: #f4f2e8;
  font-family: "Brittany Signature", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: none;
}

.choice .choose-journey > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.choice .choose-journey .individual-journey {
  flex: 1 1 calc(50% - .5rem);
  max-width: calc(50% - .5rem);
  min-width: calc(50% - .5rem);
}

.choice .choose-journey .individual-journey img {
  width: 100%;
  border-radius: 10px;
}

/* deck */

.deck {
  display: none;
  width: 100%;
  margin-top: 4rem;
  padding: 1.25rem 1.5rem 3rem;
  text-align: center;
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
}

.deck.active {
  display: block;
}

.deck h3 {
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.deck h2 {
  position: relative;
  margin-bottom: 2.5rem;
  color: #fff;
  font-family: "Brittany Signature", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.deck h2 > img {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 70px;
  z-index: -1;
}

.deck > div {
  position: relative;
}

.deck > div > span {
  position: absolute;
}

.deck > div.progress-5 > span:nth-child(1) {
  top: 0%;
  left: 12%;
  width: 20%;
  height: 15%;
}

.deck > div.progress-5 > span:nth-child(2) {
  top: 19.5%;
  left: 62%;
  width: 22.5%;
  height: 17%;
}

.deck > div.progress-5 > span:nth-child(3) {
  top: 75.5%;
  left: 11%;
  width: 22.5%;
  height: 17%;
}

.deck > div.progress-5 > span:nth-child(4) {
  top: 39.5%;
  left: 15%;
  width: 22.5%;
  height: 17%;
}

.deck > div.progress-5 > span:nth-child(5) {
  top: 74.5%;
  left: 68%;
  width: 32%;
  height: 24%;
}

.deck > div.progress-10 > span:nth-child(1) {
  top: 0%;
  left: 12%;
  width: 20%;
  height: 6%;
}

.deck > div.progress-10 > span:nth-child(2) {
  top: 7.7%;
  left: 64%;
  width: 22.5%;
  height: 7%;
}

.deck > div.progress-10 > span:nth-child(3) {
  top: 30%;
  left: 11%;
  width: 23%;
  height: 7%;
}

.deck > div.progress-10 > span:nth-child(4) {
  top: 15.5%;
  left: 15%;
  width: 23%;
  height: 7%;
}

.deck > div.progress-10 > span:nth-child(5) {
  top: 29.5%;
  left: 68%;
  width: 33%;
  height: 9.7%;
}

.deck > div.progress-10 > span:nth-child(6) {
  top: 48%;
  left: 21%;
  width: 20%;
  height: 6%;
}

.deck > div.progress-10 > span:nth-child(7) {
  top: 55.5%;
  left: 55%;
  width: 20%;
  height: 5.5%;
}

.deck > div.progress-10 > span:nth-child(8) {
  top: 67.3%;
  left: 29%;
  width: 25.5%;
  height: 7.5%;
}

.deck > div.progress-10 > span:nth-child(9) {
  top: 74%;
  left: 65%;
  width: 33%;
  height: 10%;
}

.deck > div.progress-10 > span:nth-child(10) {
  top: 86.5%;
  left: 20%;
  width: 44%;
  height: 13.3%;
}

.deck > div > img {
  width: 100%;
}

/* individual deck */

.individualdeck {
  display: none;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  padding: 3rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.individualdeck.active {
  display: block;
}

.individualdeck .content {
  position: absolute;
  top: 6.5rem;
  height: 100vh;
  max-height: 100vh;
  width: calc(100% - 6rem);
}

.individualdeck .content .individual-slide {
  display: flex;
  align-items: center;
  width: 100%;
  height: 67vh;
  background-size: 100%;
  background-repeat: no-repeat;
}

.individualdeck .swiper-slide {
  -webkit-transition: transform .5s linear;
  -moz-transition: transform .5s linear;
  -o-transition: transform .5s linear;
  transition: transform .5s linear;
}

.individualdeck .content .individual-slide > div {
  flex: 1;
  display: flex;
  height: 66.6%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /**/
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.individualdeck .content .individual-slide > img {
  width: 100% !important;
  height: auto;
  display: block;
}

.individualdeck .content .individual-slide h2 {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Brittany Signature", sans-serif;
  font-size: 1.9rem;
  line-height: 2rem;
  font-weight: 400;
  transform: rotate(-5deg);
}

.individualdeck .content .individual-slide h2.white-text {
  color: #fff;
}

.individualdeck .content .individual-slide h2.black-text {
  color: #000;
}

.individualdeck .content .individual-slide > div > div {
  flex: 0 0 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.individualdeck .content .individual-slide h4 {
  margin-top: 1rem;
  font-family: "Panforte", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.individualdeck .content .individual-slide h4.black-text {
  color: #000;
}

.individualdeck .content .individual-slide h4.blue-text {
  color: #33367a;
}

.individualdeck .content .individual-slide h4.red-text {
  color: #c13b34;
}

.individualdeck .content .individual-slide h4.white-text {
  color: #fff;
}

.individualdeck .content .individual-slide p {
  flex: 0 0 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  font-family: "Panforte", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.individualdeck .content .individual-slide p.black-text {
  color: #000;
}

.individualdeck .content .individual-slide p.blue-text {
  color: #33367a;
}

.individualdeck .content .individual-slide p.red-text {
  color: #c13b34;
}

.individualdeck .content .individual-slide p.white-text {
  color: #fff;
}

.individualdeck .content .individual-slide img {
  width: 60px;
}

.individualdeck .footer {
  position: absolute;
  bottom: .5rem;
  left: 0;
  width: 100%;
}

.individualdeck .footer img {
  width: 65px;
}

/* profile */

.profile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.profile.active {
  display: flex !important;
}

.profile > div {
  flex: 1;
}

.profile h1 {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-weight: 300;
}

.profile h1 span {
  font-weight: 400;
}

.profile h3 {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: .25rem .5rem;
  color: #000;
  font-family: "Panforte", sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .25px;
  text-transform: uppercase;
  background-color: #ced80d;
  border-radius: 25px;
}

.profile-plans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

.profile-plans > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1rem;
  background-color: #f4f2e8;
  border-radius: 10px;
}

.profile-plans > div i {
  width: 30px;
  color: #d74e41;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.profile-plans > div i:last-child {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .9rem;
}

.profile-plans > div p {
  position: relative;
  padding: 1rem 0;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.profile .footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.profile .footer img {
  width: 65px;
}

/* login */

.login {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.login.active {
  display: flex !important;
}

.login > div {
  flex: 1;
}

.login h1 {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-weight: 300;
}

.login h1 span {
  font-weight: 400;
}

.login p {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.login p a {
  border-bottom: 2px solid #d74e41;
}

.login-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem;
  background-color: #f4f2e8;
  border-radius: 10px;
}

.login-div > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
}

.login-div > div input {
  width: 100%;
  padding: 1rem;
  color: #1e1d1d;
  font-family: "Panforte", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .5px;
  background: transparent;
  border: 2px solid #d74e41;
  border-radius: 10px;
  outline: 0;
}

.login-div > div input:hover,
.login-div > div input:focus {
  border: 2px solid #d74e41;
  outline: 0;
}

.login-div > div button {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #d74e41;
  border: 0;
  border-radius: 10px;
}

.login .login-note {
  padding-top: 2rem;
  padding-bottom: 0;
}

.login .footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.login .footer img {
  width: 65px;
}

/* registration */

.registration {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.registration.active {
  display: flex !important;
}

.registration > div {
  flex: 1;
}

.registration h1 {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-weight: 300;
}

.registration h1 span {
  font-weight: 400;
}

.registration p {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.registration p a {
  border-bottom: 2px solid #d74e41;
}

.registration-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem;
  background-color: #f4f2e8;
  border-radius: 10px;
}

.registration-div > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
}

.registration-div > div input {
  width: 100%;
  padding: 1rem;
  color: #1e1d1d;
  font-family: "Panforte", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .5px;
  background: transparent;
  border: 2px solid #d74e41;
  border-radius: 10px;
  outline: 0;
}

.registration-div > div input:hover,
.registration-div > div input:focus {
  border: 2px solid #d74e41;
  outline: 0;
}

.registration-div > div button {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #d74e41;
  border: 0;
  border-radius: 10px;
}

.registration .registration-note {
  padding-top: 2rem;
  padding-bottom: 0;
}

.registration .footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.registration .footer img {
  width: 65px;
}

/* forgot password */

.forgot-password {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 2.5rem;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.forgot-password.active {
  display: flex !important;
}

.forgot-password > div {
  flex: 1;
}

.forgot-password h1 {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-weight: 300;
}

.forgot-password h1 span {
  font-weight: 400;
}

.forgot-password p {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  color: #d74e41;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.forgot-password p a {
  border-bottom: 2px solid #d74e41;
}

.forgot-password-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem;
  background-color: #f4f2e8;
  border-radius: 10px;
}

.forgot-password-div > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
}

.forgot-password-div > div input {
  width: 100%;
  padding: 1rem;
  color: #1e1d1d;
  font-family: "Panforte", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .5px;
  background: transparent;
  border: 2px solid #d74e41;
  border-radius: 10px;
  outline: 0;
}

.forgot-password-div > div input:hover,
.forgot-password-div > div input:focus {
  border: 2px solid #d74e41;
  outline: 0;
}

.forgot-password-div > div button {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-family: "Panforte", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #d74e41;
  border: 0;
  border-radius: 10px;
}

.forgot-password .forgot-password-note {
  padding-top: 2rem;
  padding-bottom: 0;
}

.forgot-password .footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.forgot-password .footer img {
  width: 65px;
}




















/* */
