/* guides */

/*
colors:
black: #252525
yellow: #f2e718
white: #ffffff
grey: #888888
orange: #ffc72c
orange (darker): #f69e02

fonts:
Montserrat

-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
*/

/* general */

* {
  box-sizing: border-box;
}

:root {
  color-scheme: only light;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ffc72c;
  border-radius: 10px;
}

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

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

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

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

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  color: #252525;
  font-family: "Montserrat", sans-serif;
}

body {
  background-size: cover;
  background-position: 40% center;
  background-repeat: no-repeat;
}

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

/* footer */

footer {
  position: fixed;
  bottom: 0;
  left: 1.5rem;
  display: flex;
  align-items: center;
  width: calc(100% - 3rem);
  height: 90px;
  padding: 0 .5rem;
  text-align: center;
  background-color: #ffc72c;
  border-radius: 40px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

footer.show {
  opacity: 1;
  pointer-events: auto;
}

footer > div {
  flex: 1 1 20%;
  width: 20%;
  min-width: 20%;
  max-width: 20%;
}

footer h5 {
  margin-top: .25rem;
  color: #fff;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1rem;
}

footer img {
  width: auto;
  height: 36px;
  opacity: 1;
}

/* intro */

section.intro {
  display: none;
  position: relative;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 0 1.5rem;
}

section.intro.active {
  display: flex;
}

section.intro > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

section.intro > div > div {
  flex: 1 1 50%;
}

section.intro .emblem {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  width: 200px;
  height: 200px;
}

section.intro .os-logo {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 65px);
  width: 130px;
  height: auto;
}

section.intro .logo {
  margin-top: 120px;
  height: 50px;
  width: auto;
}

section.intro .loading {
  width: 100%;
  margin: 30px auto 0;
  background-color: #fff;
  border-radius: 10px;
}

section.intro .loading > div {
  width: 0%;
  height: 10px;
  background-color: #f2e718;
  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;
}

/* welcome */

section.welcome {
  display: none;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 0 1.5rem;
}

section.welcome.active {
  display: flex !important;
}

section.welcome > div {
  width: 100%;
  padding: 2rem;
  background-color: #ffc72c;
  border-radius: 25px;
}

section.welcome .dots {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

section.welcome .dots span {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section.welcome .dots span.current {
  background-color: #fff;
}

section.welcome p {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.9rem;
  font-weight: 600;
}

section.welcome .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 2.5rem;
}

section.welcome a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

section.welcome a.hidden {
  display: none;
}

section.welcome button {
  width: 80%;
  margin: auto;
  padding: 1.25rem;
  color: #f69e02;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25rem;
  background-color: #fff;
  border: 0;
  border-radius: 50px;
  outline: 0;
  cursor: pointer;
}

section.welcome button.arrow {
  width: 60px;
  margin-right: 0;
}

/* category */

section.category {
  display: none;
  position: relative;
  height: 100vh;
  padding: 90px 1.5rem 120px;
  background-size: cover;
}

section.category.active {
  display: block;
}

section.category > img {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  height: 40px;
  width: auto;
}

section.category > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
}

section.category .header {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 1.5rem;
  background-color: #ffc72c;
  border-radius: 25px;
}

section.category .header p {
  color: #fff;
  font-size: .9rem;
  line-height: 1.35rem;
}

section.category .header p span {
  font-weight: 700;
}

section.category .header img {
  width: 75px;
  height: auto;
}

section.category .title {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin-top: 1rem;
}

section.category .title h2 {
  color: #252525;
  font-size: 1.1rem;
  line-height: 1.65rem;
  font-weight: 400;
}

section.category .title img {
  height: 20px;
}

section.category .body {
  width: 100%;
  height: 100%;
  padding-right: .75rem;
  border-radius: 0;
  overflow-y: scroll;
}

section.category.two-columns .body {
  width: calc(100% + 16px);
  margin-right: -1rem;
  padding-right: .5rem;
}

section.category .body .title {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

section.category .body .title h2 {
  color: #252525;
  font-size: 1.1rem;
  line-height: 1.65rem;
  font-weight: 400;
}

section.category .body .title img {
  height: 20px;
}

section.category .body .content {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

section.category .body .content .individual-audio-item {
  position: relative;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
}

section.category.two-columns .body .content .individual-audio-item {
  flex: 1 1 calc(50% - .375rem);
  width: calc(50% - .375rem);
  max-width: calc(50% - .375rem);
  min-width: calc(50% - .375rem);
}

section.category .body .content .individual-audio-item img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

section.category.two-columns .body .content .individual-audio-item img {
  border-radius: 12px;
}

section.category .body .content .individual-audio-item > div {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 2rem);
}

section.category.two-columns .body .content .individual-audio-item > div {
  bottom: .75rem;
  left: .75rem;
  gap: .75rem;
  width: calc(100% - 1.5rem);
}

section.category .body .content .individual-audio-item > div h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}

section.category.two-columns .body .content .individual-audio-item > div h3 {
  font-size: .9rem;
  line-height: 1.125rem;
}

section.category .body .content .individual-audio-item > div i {
  padding: 16px 18px 16px 20px;
  color: #fff;
  font-size: 1.5rem;
  background-color: #ffc72c;
  border-radius: 50%;
}

section.category.two-columns .body .content .individual-audio-item > div i {
  padding: 8px 9px 8px 12px;
  font-size: 1.25rem;
}

section.category .body .content .individual-audio-item > div i.fa-lock-keyhole {
  padding: 16px 17.5px 16px 17.5px;
}

section.category.two-columns .body .content .individual-audio-item > div i.fa-lock-keyhole {
  padding: 8px 9.25px 8px 9.25px;
}

/* individual audio length */

section.individual-audio-length {
  display: none;
  position: relative;
  height: 100vh;
  padding: 90px 1.5rem 120px;
  background-size: cover;
}

section.individual-audio-length.active {
  display: block;
}

section.individual-audio-length > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.individual-audio-length > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
}

section.individual-audio-length .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background-color: #ffc72c;
  border-radius: 35px;
}

section.individual-audio-length .content .title {
  margin-bottom: 109px;
}

section.individual-audio-length .content .title h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}

section.individual-audio-length .content .title p {
  margin-bottom: 0;
  color: #fff;
  font-size: .925rem;
  font-weight: 500;
  line-height: 1.25rem;
}

section.individual-audio-length .content .clock {
  position: relative;
}

section.individual-audio-length .content .clock > div {
  position: absolute;
  border-radius: 50%;
}

section.individual-audio-length .content .clock > div:nth-child(1) {
  top: -109px;
  left: -109px;
  width: 218px;
  height: 218px;
  background-color: rgba(255, 255, 255, .25);
}

section.individual-audio-length .content .clock > div:nth-child(2) {
  top: -90px;
  left: -90px;
  width: 180px;
  height: 180px;
  background-color: rgba(255, 255, 255, .5);
}

section.individual-audio-length .content .clock > div:nth-child(3) {
  top: -73px;
  left: -73px;
  width: 146px;
  height: 146px;
  background-color: rgba(255, 255, 255, .75);
}

section.individual-audio-length .content .clock > div:nth-child(4) {
  top: -65px;
  left: -65px;
  width: 130px;
  height: 130px;
  background-color: #fff;
  background-size: 130px;
  background-repeat: no-repeat;
  background-position: center center;
}

section.individual-audio-length .content .choose {
  width: 100%;
  margin: 109px auto 0;
}

section.individual-audio-length .content .choose button {
  width: 80%;
  margin: auto;
  padding: 1.25rem;
  color: #f69e02;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25rem;
  background-color: #fff;
  border: 0;
  border-radius: 50px;
  outline: 0;
  cursor: pointer;
}

section.individual-audio-length .content .choose button.arrow {
  width: 60px;
  margin-right: 0;
}

section.individual-audio-length .content .dots {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
}

section.individual-audio-length .content .dots span {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

section.individual-audio-length .content .dots span.current {
  background-color: #fff;
}

/* individual audio */

section.individual-audio {
  display: none;
  position: relative;
  height: 100vh;
  padding: 90px 1.5rem 120px;
  background-size: cover;
}

section.individual-audio.active {
  display: block;
}

section.individual-audio > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.individual-audio > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
}

section.individual-audio .player {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background-color: #ffc72c;
  border-radius: 35px;
}

section.individual-audio .player .audio-title {
  margin-bottom: 82px;
}

section.individual-audio .player .audio-title h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}

section.individual-audio .player .audio-cover {
  position: relative;
}

section.individual-audio .player .audio-cover > div {
  position: absolute;
  border-radius: 50%;
}

section.individual-audio .player .audio-cover > div:nth-child(1) {
  top: -82px;
  left: -82px;
  width: 164px;
  height: 164px;
  background-color: rgba(255, 255, 255, .25);
}

section.individual-audio .player .audio-cover > div:nth-child(2) {
  top: -70px;
  left: -70px;
  width: 140px;
  height: 140px;
  background-color: rgba(255, 255, 255, .5);
}

section.individual-audio .player .audio-cover > div:nth-child(3) {
  top: -58px;
  left: -58px;
  width: 116px;
  height: 116px;
  background-color: rgba(255, 255, 255, .75);
}

section.individual-audio .player .audio-cover > div:nth-child(4) {
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center center;
}

section.individual-audio .player .audio-player {
  width: 100%;
  margin: 82px auto 0;
}

section.individual-audio .player .audio-player > div:nth-child(1) {
  position: relative;
  margin-bottom: 2rem;
  height: 5px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
}

section.individual-audio .player .audio-player > div:nth-child(1) > span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  background-color: #f69e02;
  border-radius: 5px;
}

section.individual-audio .player .audio-player > div:nth-child(1) > span:nth-child(2),
section.individual-audio .player .audio-player > div:nth-child(1) > span:nth-child(3) {
  position: absolute;
  top: 10px;
  color: #000;
  font-size: .8rem;
  font-weight: 500;
}

section.individual-audio .player .audio-player > div:nth-child(1) > span:nth-child(2) {
  left: 2px;
}

section.individual-audio .player .audio-player > div:nth-child(1) > span:nth-child(3) {
  right: 2px;
}

section.individual-audio .player .audio-player > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
  width: 100%;
  margin: 0 auto;
}

section.individual-audio .player .audio-player > div:nth-child(2) i {
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

section.individual-audio .player .audio-player > div:nth-child(2) i.enabled {
  color: #f69e02;
}

section.individual-audio .player .audio-player > div:nth-child(2) i.play {
  font-size: 3.5rem;
}

section.individual-audio .description {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

section.individual-audio .description p {
  color: #252525;
  font-size: .9rem;
  line-height: 1.35rem;
}

/* profile */

section.profile {
  display: none;
  position: relative;
  height: 100vh;
  padding: 75px 1.5rem 120px;
  background-size: cover;
}

section.profile.active {
  display: block;
}

section.profile .logo {
  height: 40px;
  width: auto;
}

section.profile .os-logo {
  width: 130px;
  height: auto;
}

section.profile > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.profile > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
}

section.profile > div > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 90%;
}

section.profile .profile-login-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #ffc72c;
  border-radius: 15px;
  cursor: pointer;
}

section.profile .profile-login-div i {
  color: #fff;
  font-size: 1.25rem;
  line-height: 40px;
}

section.profile .profile-login-div > div:nth-child(1) > div i {
  color: #f69e02;
}

section.profile .profile-login-div h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

section.profile .profile-login-div > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

section.profile .profile-login-div > div:nth-child(1) > div {
  width: 40px;
  height: 40px;
  color: #7d7d7d;
  background-color: #fff;
  border-radius: 50%;
}

section.profile .profile-login-div > div:nth-child(2) {
  color: #fff;
  font-size: 1rem;
}

section.profile .profile-information-div {
  width: 100%;
  background-color: #ffc72c;
  border-radius: 15px;
}

section.profile .profile-information-div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem 0;
  cursor: pointer;
}

section.profile .profile-information-div > div h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

section.profile .profile-information-div > div:last-child {
  padding-bottom: 1rem;
}

section.profile .profile-information-div > div > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

section.profile .profile-information-div > div > div:nth-child(1) > div {
  width: 40px;
  height: 40px;
  color: #7d7d7d;
  background-color: #fff;
  border-radius: 50%;
}

section.profile .profile-information-div > div > div:nth-child(1) > div i {
  color: #f69e02;
  font-size: 1.25rem;
  line-height: 40px;
}

section.profile .profile-information-div > div > div:nth-child(2) {
  color: #fff;
  font-size: 1rem;
}

/* login, registration */

section.login-registration {
  display: none;
  position: relative;
  height: 100vh;
  padding: 75px 1.5rem 120px;
  background-size: cover;
}

section.login-registration.active {
  display: block;
}

section.login-registration .logo {
  height: 40px;
  width: auto;
}

section.login-registration > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.login-registration h2 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
}

section.login-registration p {
  color: #252525;
  font-size: .925rem;
  font-weight: 500;
}

section.login-registration p span {
  font-weight: 600;
}

section.login-registration > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
}

section.login-registration .form-div {
  width: 90%;
  padding: 1.5rem;
  border-radius: 25px;
  background-color: #ffc72c;
}

section.login-registration .form-div p {
  color: #fff;
  font-weight: 500;
}

section.login-registration .form-div input {
  width: 100%;
  padding: .75rem 1.25rem;
  color: #3b3b3b;
  font-family: "Montserrat";
  font-size: .9rem;
  font-weight: 500;
  background-color: #fff;
  border: 0;
  border-radius: 25px;
  outline: 0;
}

section.login-registration .form-div button {
  width: 100%;
  padding: .75rem 1.25rem;
  color: #fff;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #f69e02;
  border: 0;
  border-radius: 25px;
  outline: 0;
  cursor: pointer;
}

section.login-registration .form-div > div {
  width: 100%;
  margin-bottom: 1rem;
}

section.login-registration .form-div > div:last-child {
  margin-bottom: 0;
}

/* subscription */

section.subscription {
  display: none;
  position: relative;
  height: 100vh;
  padding: 75px 1.5rem 0;
  background-size: cover;
}

section.subscription.active {
  display: block;
}

section.subscription .logo {
  height: 40px;
  width: auto;
}

section.subscription h2 {
  color: #f69e02;
  font-size: 1.35rem;
  line-height: 1.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

section.subscription > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.subscription > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
}

section.subscription > div > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

section.subscription .subscription-plans {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

section.subscription .subscription-content h3 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.9rem;
  font-weight: 600;
}

section.subscription .subscription-content h4 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}

section.subscription .subscription-content p {
  margin-top: 1rem;
  color: #fff;
  font-weight: 400;
  font-size: .85rem;
}

section.subscription .subscription-content > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 1.5rem;
  background-color: #ffc72c;
  border-radius: 25px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

section.subscription .subscription-content .offer {
  text-align: left;
}

section.subscription .subscription-content .offer .badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .5rem .75rem;
  color: #f69e02;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 10px;
}

section.subscription .subscription-content .offer > h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

section.subscription .subscription-content .offer > p {
  line-height: 1.25rem;
}

section.subscription .subscription-content .offer .plans {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  margin: 2.5rem 0 3rem;
}

section.subscription .subscription-content .offer .plans .mini-badge {
  position: absolute;
  top: -1rem;
  right: 0;
  padding: .5rem 1.5rem;
  color: #252525;
  font-size: .7rem;
  line-height: 1rem;
  background-color: #eee642;
  border-radius: 15px;
}

section.subscription .subscription-content .offer .plans > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background-color: #f69e02;
  border-radius: 15px;
}

section.subscription .subscription-content .offer .plans > div h3 {
  margin-bottom: 0;
}

section.subscription .subscription-content .offer .plans > div > div:nth-child(1) {
  flex: 3;
}

section.subscription .subscription-content .offer .plans > div > div:nth-child(1) p {
  margin-top: .5rem;
  font-size: .9rem;
}

section.subscription .subscription-content .offer .plans > div > div:nth-child(1) p span {
  margin-right: .5rem;
  text-decoration: line-through;
}

section.subscription .subscription-content .offer .plans > div > div:nth-child(2) {
  flex: 2;
}

section.subscription .subscription-content .offer .plans > div > div:nth-child(2) p {
  margin-top: 0;
  font-size: .9rem;
  font-weight: 500;
}

section.subscription .subscription-content .activation button {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  color: #f69e02;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
}

section.subscription .subscription-content .activation p {
  margin-top: 0;
  font-size: .75rem;
  line-height: 1rem;
}

/* subscription (old) */

section.subscription-old {
  display: none;
  position: relative;
  height: 100vh;
  padding: 90px 1.5rem 120px;
  background-size: cover;
}

section.subscription-old.active {
  display: block;
}

section.subscription-old .logo {
  height: 40px;
  width: auto;
}

section.subscription-old .os-logo {
  width: 130px;
  height: auto;
}

section.subscription-old h2 {
  color: #f69e02;
  font-size: 1.35rem;
  line-height: 1.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

section.subscription-old > i {
  position: absolute;
  top: 25px;
  left: 1.5rem;
  color: #f69e02;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

section.subscription-old > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
}

section.subscription-old > div > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

section.subscription-old .subscription-plans {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

section.subscription-old .subscription-plans h3 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.9rem;
  font-weight: 600;
}

section.subscription-old .subscription-plans h4 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}

section.subscription-old .subscription-plans p {
  margin-top: 1rem;
  color: #fff;
  font-weight: 400;
  font-size: .85rem;
}

section.subscription-old .subscription-plans > div {
  flex: 1 1 calc(50% - .75rem);
  width: calc(50% - .75rem);
  max-width: calc(50% - .75rem);
  min-width: calc(50% - .75rem);
  padding: 1.5rem 1rem;
  background-color: #ffc72c;
  border-radius: 25px;
}

section.subscription-old .subscription-plans > div.full {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 2.25rem 1rem;
}










/* */
