@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  color: white;
}

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

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

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

/* ========= NAVIGATION ========= */
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 3vh 6vw 2vh 6vw;
  border-bottom: 3px solid #cca361;
}

nav .logo {
  width: 11vw;
  height: auto;
}

nav .country-icons {
  width: 15vw;
  height: auto;
}

.nav-align-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
}

.styled-button {
  font-size: 14px;
  font-weight: 800;
  color: black;
  width: 7vw;
  padding: 1vh 0;
  border-radius: 20px;
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  cursor: pointer;
  border:none
}

.nav-language-dropdown {
  position: relative;
}

.nav-language-select {
  font-size: 14px;
  font-weight: 800;
  color: black;
  width: 7vw;
  padding: 1vh 0;
  border-radius: 20px;
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  cursor: pointer;
  position: relative;
}

.nav-active-language-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 18%;
  color: black;
}

.nav-active-language-placeholder::after {
  content: "▾";
  position: absolute;
  color: black;
  right: 12%;
}

.nav-language-options {
  position: absolute;
  text-align: center;
  top: 120%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  z-index: 99;
}

.nav-language-options div {
  padding: 2vh 0;
  cursor: pointer;
}

.nav-language-options div:hover {
  background-color: #cca361;
  color: #000;
}

@media (max-width: 767px) {
  nav {
    padding: 1.5vh 6vw;
  }

  nav .logo {
    width: 20vw;
  }

  nav .country-icons {
    display: none;
  }

  .styled-button,
  .nav-language-select {
    font-size: 13px;
    width: 22vw;
    padding: 0.5vh 0;
  }
}

/* ========= ECP HERO SECTION ========= */
.ecp-hero {
  height: 100vh;
  padding: 12vh 6vw 0 6vw;
}

.ecp-hero .logo {
  width: 11vw;
  height: auto;
  padding-bottom: 2vh;
}

.ecp-hero .crown-image {
  position: absolute;
  right: 4vw;
  top: -10vh;
  width: 50vw;
  z-index: -1;
}

.ecp-hero h1 {
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecp-hero .ecp-hero_title {
  font-size: 58px;
}

.ecp-hero .ecp-hero_subtitle {
  font-size: 44px;
}

.ecp-hero .ecp-hero_plans-header {
  font-size: 26px;
}

.ecp-hero .ecp-hero_italics-text {
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}

.ecp-hero .ecp-hero_plain-text {
  font-size: 22px;
  padding: 2vh 0;
}

.ecp-hero_weekly-income-plan {
  border-right: 2px solid white;
  padding-right: 2vw;
  margin-right: 2vw;
}

.ecp-hero_info-box {
  margin-top: 2vh;
  width: fit-content;
  padding: 1vw;
  border: 3px solid #cca361;
  border-radius: 15px;
  background: radial-gradient(
    circle at center,
    rgba(232, 171, 77, 0.3) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.ecp-hero_info-header {
  font-size: 20px;
  font-weight: 1000;
  padding-bottom: 1vh;
}

.ecp-hero_info-text {
  font-size: 16px;
  padding-left: 0.5vw;
}

.ecp-hero_info-step-text {
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecp-hero_info-italic-text {
  font-style: italic;
}

@media (max-width: 767px) {
  .ecp-hero {
    height: auto;
    padding: 6vh 6vw 4vh 6vw;
  }

  .ecp-hero .logo {
    width: 20vw;
  }

  .ecp-hero .crown-image {
    display: none;
  }

  .ecp-hero .ecp-hero_title {
    font-size: 42px;
  }

  .ecp-hero .ecp-hero_subtitle {
    font-size: 30px;
  }

  .ecp-hero_weekly-income-plan {
    height: 9vh;
    width: 50%;
    padding-right: 0;
    margin-right: 0;
  }

  .ecp-hero_monthly-income-plan {
    height: 9vh;
    width: 50%;
    padding-left: 2vw;
  }

  .ecp-hero .ecp-hero_plans-header {
    font-size: 20px;
  }

  .ecp-hero .ecp-hero_italics-text {
    font-size: 12px;
  }

  .ecp-hero .ecp-hero_plain-text {
    font-size: 20px;
    margin-top: 2vh;
  }

  .ecp-hero_info-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 2vh 4vw;
    gap: 1vh;
  }

  .ecp-hero_info-header {
    font-size: 18px;
    padding: 0;
  }

  .ecp-hero_info-text {
    font-size: 16px;
    padding-left: 2vw;
  }
}

/* ========= PLANS SECTION ========= */
.plans-section {
  padding: 0 6vw;
  height: auto;
}

.plans-section .plans-section_content {
  display: none;
}

.plans-section .plans-section_content.active {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.plans-section .toggle-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10vw;
  padding-bottom: 5vh;
}

.plans-section .toggle-buttons button {
  position: relative;
  overflow: hidden;
  width: 35vw;
  font-size: 24px;
  background: none;
  border: none;
  color: #808080;
  font-weight: 1000;
  padding: 2vh 0;
  border-radius: 20px;
  cursor: pointer;
}

.plans-section .toggle-buttons button.active {
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 3px solid #cca361;
}

.plans-section_info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-section_info-content {
  display: flex;
  flex-direction: column;
  padding: 7vh 0 3vh 0;
}

.plans-section_info-header {
  font-size: 22px;
  font-weight: 600;
}

.plans-section_bullet-points {
  font-size: 20px;
  font-weight: 400;
  padding: 2vh 0 2vh 2vw;
}

.plans-section_bold-points {
  font-weight: 600;
}

.plans-section_italics-text {
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
}

.plans-section_downline-commission-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-section_tier-header {
  font-size: 18px;
}

.plans-section_downline-commission-formula {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 2vh 0 3vh 0;
}

.plans-section_downline-commission-formula th {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  padding: 1vh 1vw;
  border-bottom: 1px solid white;
}

.plans-section_downline-commission-formula td {
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}

.plans-section_downline-tier-td {
  border-top: 1px solid white;
  padding: 0 1vw;
}

.plans-section_downline-downline-td {
  border: 1px solid white;
  border-bottom: none;
  padding: 1vh 0;
}

.plans-section_downline-commission-formula tbody tr:nth-child(1) td,
.plans-section_downline-commission-formula tbody tr:nth-child(3) td,
.plans-section_downline-commission-formula tbody tr:nth-child(5) td,
.plans-section_downline-commission-formula tbody tr:nth-child(7) td {
  background: linear-gradient(to right, #ffd586 40%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_downline-commission-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #997439ff 40%, #ffe6bd00 100%);
}

.plans-section_calculation-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vh 2vw;
  background: linear-gradient(
    to top right,
    rgba(232, 171, 77, 0.4) 0%,
    black 30%
  );
  border: 3px solid #cca361;
  border-radius: 15px;
  height: auto;
  width: 40vw;
  position: relative;
}

.plans-section_calculation-box-logged-out {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vh;
  width: 100%;
  height: 80vh;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: absolute;
  bottom: 0;
  z-index: 999;
}

.plans-section_calculation-header {
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 1000;
  padding-bottom: 4vh;
}

.plans-section_align-calculation-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.plans-section_turnover-calculation {
  width: 55%;
}

.plans-section_calculation-description {
  height: 18vh;
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
}

.plans-section_calculation-first-tier-wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.plans-section_calculation-tier-title {
  font-size: 21px;
  font-weight: 600;
  width: auto;
  background: black;
  position: absolute;
  transform: translatey(-55%);
  padding: 0 0.5vh;
}

.plans-section_weekly-commission-tiers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid white;
  gap: 1vh;
  width: 100%;
  height: 18vh;
}

.plans-section_align-tier-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.plans-section_calculation-tier-header {
  background: linear-gradient(to right, #ffd586 40%, #e7a13f 100%);
  color: black;
  padding: 0.5vh 0.5vw;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
}

.plans-section_tier-arrow-icon {
  width: auto;
  height: 1.5vh;
  margin: 0 1vh 0 0.5vh;
}

.plans-section_calculation-tier-amount {
  color: #ffd586;
  font-size: 21px;
  font-weight: 600;
}

.plans-section_calculation-turnover-rate {
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
}

.plans-section_dropdown-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.plans-section_dropdown-row {
  display: flex;
  align-items: center;
  gap: 0.3vw;
}

.plans-section_dropdown-label {
  font-size: 16px;
  font-weight: 400;
}

.plans-section_custom-dropdown {
  position: relative;
}

.plans-section_headcount-select {
  width: 2vw;
  height: 3.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5vw;
  font-size: 14px;
  background-color: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.plans-section_total-to-select {
  width: 5vw;
  height: 3.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5vw;
  font-size: 14px;
  background-color: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.plans-section_custom-select-placeholder::after {
  content: "▾";
  position: absolute;
  color: #cca361;
}

.plans-section_custom-headcount-options {
  position: absolute;
  text-align: center;
  top: 120%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  z-index: 99;
}

.plans-section_custom-total-to-options {
  position: absolute;
  text-align: left;
  text-indent: 0.5vw;
  top: 120%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  z-index: 99;
}

.plans-section_custom-headcount-options div {
  padding: 0.2vw 0;
  cursor: pointer;
}

.plans-section_custom-total-to-options div {
  padding: 0.2vw 0;
  cursor: pointer;
}

.plans-section_custom-headcount-options div:hover {
  background-color: #cca361;
  color: #000;
}

.plans-section_custom-total-to-options div:hover {
  background-color: #cca361;
  color: #000;
}

.hidden {
  display: none;
}

.plans-section_downline-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  position: relative;
}

.plans-section_downline-profile-wrap {
  height: 18vh;
  position: relative;
}

.plans-section_downline-profile-logo {
  width: 7vw;
  height: auto;
  position: relative;
  z-index: 2;
  background-color: black;
  border-radius: 50%;
  padding: 5px;
}

.plans-section_downline-profile-wrap::before,
.plans-section_downline-profile-wrap::after {
  content: "";
  position: absolute;
  top: 60%;
  width: 2px;
  height: 20vh;
  background-color: #cca361;
  z-index: 0;
  transform-origin: top;
}

.plans-section_downline-profile-wrap::before {
  left: 50%;
  transform: rotate(-37deg);
}

.plans-section_downline-profile-wrap::after {
  left: 50%;
  transform: rotate(37deg);
}

.plans-section_downline-profile-wrap .vertical-line {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 2px;
  height: 65vh;
  background-color: #cca361;
  z-index: 0;
}

.plans-section_downline-tiers {
  height: 18vh;
  padding: 0 1vw;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.plans-section_downline-tiers-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.plans-section_downline-tiers-logo-wrap:not(:nth-child(2))::after {
  display: none;
}

.plans-section_downline-tiers:not(:last-child)
  .plans-section_downline-tiers-logo-wrap:nth-child(2)::before,
.plans-section_downline-tiers:not(:last-child)
  .plans-section_downline-tiers-logo-wrap:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 80%;
  width: 2px;
  height: 20vh;
  background-color: #cca361;
  z-index: 0;
  transform-origin: top;
}

.tier-four .plans-section_downline-tiers-logo-wrap:nth-child(2)::before,
.tier-four .plans-section_downline-tiers-logo-wrap:nth-child(2)::after {
  display: none;
}

.plans-section_downline-tiers:not(:last-child)
  .plans-section_downline-tiers-logo-wrap:nth-child(2)::before {
  left: 50%;
  transform: rotate(-37deg);
}

.plans-section_downline-tiers:not(:last-child)
  .plans-section_downline-tiers-logo-wrap:nth-child(2)::after {
  left: 50%;
  transform: rotate(37deg);
}

.plans-section_downline-tiers-logo {
  width: 4vw;
  height: auto;
  position: relative;
  z-index: 2;
  background-color: black;
  border-radius: 50%;
  padding: 1vh;
}

.plans-section_downline-tiers-logo-wrap p {
  font-size: 14px;
  padding-bottom: 0.5vh;
  position: relative;
  z-index: 2;
  background-color: black;
}

/* ========= PLANS SECTION - MONTHLY PROFIT-SHARING ========= */

.plans-section_monthly-info-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}

.plans-section_monthly-info-content {
  display: flex;
  flex-direction: column;
  padding: 4vh 0;
}

.plans-section_monthly-info-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #997439ff 40%, #ffe6bd00 100%);
}

.plans-section_align-revenue-shares {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, auto);
  text-align: center;
  row-gap: 1vh;
  padding: 1vh 2vw;
}

.plans-section_referrals-revenue-shares-colored,
.plans-section_referrals-revenue-shares-normal {
  display: contents;
  font-size: 19px;
  font-weight: 800;
}

.plans-section_referrals-revenue-shares-colored span {
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_revenue-shares-divider {
  font-size: 6px;
  letter-spacing: 4px;
  padding-top: 2px;
}

.plans-section_profit-calculation-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3vh 3vw;
  background: linear-gradient(
    to top right,
    rgba(232, 171, 77, 0.4) 0%,
    black 30%
  );
  border: 3px solid #cca361;
  border-radius: 15px;
  height: auto;
  width: 40vw;
  position: relative;
}

.plans-section_profit-box-logged-out {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vh;
  width: 100%;
  height: 15vh;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: absolute;
  top: 22%;
  z-index: 999;
}

.plans-section_profit-calculation-subheader {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.plans-section_profit-calculation-description {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
  width: 70%;
}

.plans-section_calculation-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
}

.plans-section_calculation-total-wrap div {
  display: flex;
  flex-direction: row;
  align-items: end;
  background: linear-gradient(to right, #ffd586 15%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_calculation-total-wrap h1 {
  font-size: 60px;
}

.plans-section_calculation-total-wrap span {
  font-size: 50px;
}

.plans-section_calculation-total-wrap p {
  font-size: 20px;
  font-weight: 600;
}

.plans-section_downline-dropdown-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  padding: 5vh 0;
}

.plans-section_downline-dropdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh;
}

.plans-section_downline-dropdown-label {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(to right, #ffd586 15%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_downline-select {
  width: 5vw;
  height: 3.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5vw;
  font-size: 14px;
  background-color: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.plans-section_custom-downline-options {
  position: absolute;
  text-align: center;
  top: 120%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1a1a;
  border: 2px solid #cca361;
  border-radius: 5px;
  z-index: 99;
}

.plans-section_custom-downline-options div {
  padding: 0.2vw 0;
  cursor: pointer;
}

.plans-section_custom-downline-options div:hover {
  background-color: #cca361;
  color: #000;
}

.plans-section_scenario-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5vh;
}

.plans-section_scenario-italics-text {
  font-size: 16px;
  font-style: italic;
}

.plans-section_scenario-text {
  padding-left: 1vw;
  font-size: 15px;
}

.plans-section_scenario-wrap ul {
  margin-left: 2.5vw;
  font-size: 15px;
}

.plans-section_scenario-wrap li {
  padding: 0;
  font-size: 15px;
}

.plans-section_example-explaination {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vh;
  padding-bottom: 4vh;
}

.plans-section_example-explaination-header {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, #ffd586 50%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_example-italic-text {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_example-bold-text {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
}

.plans-section_example-text {
  font-size: 15px;
}

.plans-section_profit-example {
  width: 90%;
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, auto);
  text-align: center;
  row-gap: 3vh;
  padding: 3vh 0;
}

.plans-section_profit-example div {
  display: contents;
}

.plans-section_example-amount {
  font-size: 50px;
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-section_explanation-bold-text {
  width: auto;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 1vh;
}

.plans-section_explanation-normal-text {
  font-size: 16px;
  padding-left: 1vw;
}

.plans-section_example-eligible {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: #9dff84;
  border-left: 1px solid white;
  margin-left: 1vw;
  padding-left: 1vw;
}

.plans-section_example-not-eligible {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: #ff5c5c;
  text-align: left;
  border-left: 1px solid white;
  margin-left: 1vw;
  padding-left: 1vw;
}

.plans-section_formula-text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.plans-section_profit-result p,
.plans-section_commission-result p {
  font-size: 20px;
}

.plans-section_profit-result span,
.plans-section_commission-result span {
  color: #9dff84;
  font-weight: 700;
}

@media (max-width: 767px) {
  .plans-section .toggle-buttons {
    gap: 5vw;
  }

  .plans-section .toggle-buttons button {
    font-size: 20px;
    width: 50%;
  }

  .plans-section .plans-section_content.active {
    flex-direction: column;
  }

  .plans-section_info-content {
    padding: 0;
  }

  .plans-section_info-header {
    font-size: 18px;
  }

  .plans-section_bullet-points {
    font-size: 16px;
  }

  .plans-section_italics-text {
    font-size: 14px;
  }

  .plans-section_downline-commission-info {
    padding-top: 2vh;
  }

  .plans-section_calculation-box {
    width: 100%;
    margin-top: 5vh;
    padding: 3vh;
  }

  .plans-section_turnover-calculation {
    width: 100%;
  }

  .plans-section_calculation-header {
    text-align: center;
  }

  .plans-section_calculation-description {
    font-size: 16px;
    height: auto;
    padding-bottom: 4vh;
  }

  .plans-section_calculation-tier-title {
    font-size: 20px;
  }

  .plans-section_calculation-tier-header {
    padding: 1vw;
  }

  .plans-section_dropdown-wrap {
    justify-content: center;
    gap: 10vw;
  }

  .plans-section_dropdown-label {
    font-size: 16px;
  }

  .plans-section_headcount-select {
    width: 8vw;
    height: 2.5vh;
  }

  .plans-section_total-to-select {
    width: 15vw;
    height: 2.5vh;
  }

  .plans-section_downline-tree {
    display: none;
  }

  .plans-section_monthly-info-box {
    padding-bottom: 2vh;
    margin-bottom: 4vh;
  }

  .plans-section_monthly-info-content {
    padding: 0;
  }

  .plans-section_referrals-revenue-shares-colored,
  .plans-section_referrals-revenue-shares-normal {
    font-size: 16px;
  }

  .plans-section_revenue-shares-divider {
    padding: 8px 4px 0 4px;
  }

  .plans-section_profit-calculation-box {
    width: 100%;
    padding: 3vh;
  }

  .plans-section_profit-calculation-description {
    font-size: 16px;
  }

  .plans-section_calculation-total-wrap {
    text-align: center;
  }

  .plans-section_calculation-total-wrap h1 {
    font-size: 48px;
  }

  .plans-section_calculation-total-wrap span {
    font-size: 40px;
  }

  .plans-section_calculation-total-wrap p {
    font-size: 18px;
    font-weight: 600;
  }

  .plans-section_downline-dropdown-label {
    font-size: 16px;
  }

  .plans-section_scenario-text {
    padding-left: 3vw;
    font-size: 14px;
  }

  .plans-section_scenario-wrap ul {
    margin-left: 9vw;
    font-size: 14px;
  }

  .plans-section_downline-select {
    width: 10vw;
    height: 3vh;
  }

  .plans-section_example-explaination {
    padding: 2vh 0 4vh 0;
    text-align: center;
  }

  .plans-section_example-explaination-header {
    font-size: 20px;
  }

  .plans-section_example-italic-text {
    font-size: 18px;
  }

  .plans-section_example-bold-text {
    font-size: 18px;
  }

  .plans-section_profit-example {
    width: 100%;
  }

  .plans-section_example-amount {
    font-size: 30px;
  }

  .plans-section_explanation-bold-text {
    font-size: 16px;
  }

  .plans-section_explanation-normal-text {
    font-size: 10px;
  }

  .plans-section_example-eligible,
  .plans-section_example-not-eligible {
    font-size: 12px;
  }

  .plans-section_formula-text {
    font-size: 16px;
  }

  .plans-section_profit-result p,
  .plans-section_commission-result p {
    font-size: 16px;
  }
}

/* ========= NETWORK SECTION ========= */
.network-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  gap: 5vh;
  padding-top: 15vh;
}

.network-section_quiz-button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-section_quiz-button {
  padding: 1vh 2vw;
  border-radius: 15px;
  font-size: 65px;
  font-weight: 800;
  background: linear-gradient(
    to right,
    #ffd890 3%,
    #be8a4e 52%,
    #fad9af 69%,
    #c29e71 85%
  );
  color: black;
  cursor: pointer;
}

.network-section_quiz-free-credits {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  padding-top: 1vh;
  text-align: center;
}

.network-section_quiz-free-credits span {
  font-weight: 600;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network-section_platform-benefits {
  display: flex;
  flex-direction: row;
}

.network-section_benefits-wrap {
  position: relative;
  width: 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  padding-top: 10vh;
}

.network-section_benefits-wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 4px;
  height: 80%;
  background: linear-gradient(to bottom, black 0%, #ffda9d 50%, black 100%);
  border-radius: 10px;
}

.network-section_benefits-image {
  height: 35vh;
  width: auto;
}

.network-section_benefits-normal-text {
  font-size: 24px;
}

.network-section_benefits-text-colored {
  font-size: 28px;
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network-section_network-map {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-section_map-title {
  font-size: 55px;
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 50%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network-section_map-subtitle {
  font-size: 18px;
  font-weight: 600;
}

.network-section_network-map-image {
  width: 100%;
  height: 160vh;
  margin-top: -15vh;
}

@media (max-width: 767px) {
  .network-section {
    padding-top: 10vh;
  }

  .network-section_quiz-button {
    padding: 1vh 4vw;
    font-size: 38px;
  }

  .network-section_quiz-free-credits {
    font-size: 12px;
    font-weight: 400;
  }

  .network-section_platform-benefits {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .network-section_benefits-wrap {
    width: auto;
    padding-top: 5vh;
  }

  .network-section_benefits-wrap:not(:last-child)::after {
    display: none;
  }

  .network-section_benefits-image {
    height: 15vh;
  }

  .network-section_benefits-normal-text {
    font-size: 18px;
    padding-top: 2vh;
  }

  .network-section_benefits-text-colored {
    font-size: 22px;
  }

  .network-section_map-title {
    font-size: 38px;
    padding-bottom: 1vh;
  }

  .network-section_map-subtitle {
    text-align: center;
    font-size: 16px;
  }

  .network-section_network-map-image {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2vh 0;
  }
}

/* ========= FOOTER SECTION ========= */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 80px;
  background: linear-gradient(to bottom, #131313 0%, #000000 100%);
  padding: 8vh 10vw;
  background-color: blue;
}

.footer-headers {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 0%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1vh;
}

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
}

.footer-input-wrap {
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 8vh 0 2vh 0;
}

.footer-align-input {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-input-box {
  position: relative;
  display: inline-block;
}

.footer-input-box::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #997439ff 0%,
    #ffe6bdff 55%,
    #ffe6bd00 100%
  );
}

.footer-input-box input {
  width: 25vw;
  font-size: 18px;
  font-weight: 600;
  background: none;
  color: white;
  outline: none;
  border: none;
}

.footer-textarea-wrap {
  position: relative;
  display: inline-block;
}

.footer-textarea-wrap::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -0.5%;
  width: 101%;
  height: 104%;
  border-radius: 10px;
  background: linear-gradient(to right, #997439 0%, #ffe6bd 55%);
  z-index: 0;
  pointer-events: none;
}

.footer-input-wrap textarea {
  position: relative;
  z-index: 1;
  width: 25vw;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  background: black;
  border-radius: 10px;
  outline: none;
  padding: 1vh 1vw;
}

.footer-align-send-button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 8vh;
}

.footer-align-send-button button {
  font-size: 14px;
  font-weight: 600;
  color: black;
  padding: 1vh 1vw;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    #ffd890 3%,
    #be8a4e 52%,
    #fad9af 69%,
    #c29e71 85%
  );
  cursor: pointer;
}

.footer-brand-partner-image {
  padding: 4vh 0 8vh 0;
}

.footer-copyright-text {
  position: relative;
  width: 95vw;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  background: linear-gradient(to right, #ffd586 50%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-copyright-text::before {
  content: "";
  position: absolute;
  top: -4vh;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #ffe6bd00 0%,
    #997439ff 50%,
    #ffe6bd00 100%
  );
}

@media (max-width: 767px) {
  footer {
    border-radius: 50px;
    padding: 4vh 10vw;
  }

  .footer-headers {
    align-items: center;
    text-align: center;
    gap: 1vh;
  }

  .footer-title {
    font-size: 30px;
  }

  .footer-input-wrap {
    flex-direction: column;
    height: auto;
    margin: 4vh 0 2vh 0;
  }

  .footer-align-input {
    gap: 3vh;
    padding-bottom: 5vh;
  }

  .footer-textarea-wrap::before {
    top: -2%;
    left: -0.5%;
    width: 101%;
    height: 101%;
  }

  .footer-input-wrap textarea {
    width: 100%;
    padding: 1vh 2vw 4vh 2vw;
  }

  .footer-align-send-button {
    padding-bottom: 4vh;
  }

  .footer-brand-partner-image {
    width: 100%;
    height: auto;
  }

  .footer-copyright-text {
    width: 100%;
    font-size: 12px;
  }
}

/* ========= NETWORK SECTION QUIZ MODAL ========= */

.network-section_quiz-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.network-section_quiz-modal.hidden {
  display: none;
}

.network-section_quiz-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.network-section_quiz-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vh 3vw;
  width: 25vw;
  height: 75vh;
  background: #1a1a1a;
  border-bottom: 8px solid #cca361;
  border-radius: 15px;
  z-index: 1;
}

.network-section_quiz-modal-close {
  position: absolute;
  top: 0.5vw;
  right: 1vw;
  font-size: 30px;
  cursor: pointer;
}

.network-section_quiz-modal-logo {
  width: 6vw;
  height: auto;
}

.quiz-step {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-question-placeholder {
  font-size: 16px;
  text-align: center;
  padding: 1vh 0;
}

.modal-answer-options-wrap {
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 1vh 0;
}

.modal-answer-options-wrap::before {
  content: "";
  position: absolute;
  top: -3%;
  left: -0.5%;
  width: 101%;
  height: 105%;
  border-radius: 10px;
  background: linear-gradient(to right, #997439 0%, #ffe6bd 55%);
  z-index: 0;
  pointer-events: none;
}

.modal-answer-options {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 7vh;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  background: #131313;
  cursor: pointer;
}

.modal-question-placeholder span {
  font-weight: 700;
}

.hidden {
  display: none;
}

.network-section_quiz-modal-content h1 {
  font-size: 38px;
  font-weight: 800;
  padding: 1vh 0;
  background: linear-gradient(to right, #ffd586 50%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network-section_quiz-modal-content h2 {
  font-size: 28px;
  font-weight: 800;
  padding: 0.5vh 0;
  background: linear-gradient(to right, #ffd586 50%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-align-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.modal-input-box {
  position: relative;
  display: inline-block;
}

.modal-input-box::before {
  content: "";
  position: absolute;
  bottom: -1vh;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #997439ff 0%,
    #ffe6bdff 55%,
    #ffe6bd00 100%
  );
}

.modal-input-box input {
  text-indent: 1vw;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  background: none;
  color: white;
  outline: none;
  border: none;
}

.modal-italic-placeholder {
  font-size: 17px;
  font-style: italic;
  text-align: center;
  margin-top: auto;
}

.modal-italic-placeholder span {
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-step-change-button {
  margin-top: auto;
  font-size: 20px;
  font-weight: 600;
  color: black;
  padding: 1vh 2vw;
  border: none;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    #ffd890 3%,
    #be8a4e 52%,
    #fad9af 69%,
    #c29e71 85%
  );
  cursor: pointer;
}

.modal-quiz-completion {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-quiz-completion h3 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(to right, #ffd586 20%, #e7a13f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-quiz-completion p {
  font-size: 16px;
  text-align: center;
}

.modal-quiz-completion-text {
  margin-top: auto;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.modal-quiz-completion-text span {
  font-weight: 600;
}

.modal-quiz-fail-text {
  margin-top: auto;
  width: 100%;
  padding: 1vh 0;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(
    to right,
    #ffd890 3%,
    #be8a4e 52%,
    #fad9af 69%,
    #c29e71 85%
  );
  cursor: pointer;
}

.modal-quiz-fail-text h4 {
  color: black;
  font-size: 16px;
}

.modal-quiz-fail-text p {
  color: black;
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 767px) {
  .network-section_quiz-modal-content {
    padding: 2vh 4vw;
    width: 70vw;
    height: 50vh;
  }

  .network-section_quiz-modal-close {
    top: 1vw;
    right: 2.5vw;
  }

  .network-section_quiz-modal-logo {
    width: 12vw;
  }

  .modal-answer-options-wrap::before {
    top: -3%;
    left: -0.5%;
    width: 101%;
    height: 105%;
  }

  .modal-answer-options {
    height: 5vh;
  }

  .modal-step-change-button {
    font-size: 18px;
    padding: 0.5vh 4vw;
  }

  .modal-quiz-fail-text {
    padding: 0.5vh 2vw;
  }

  .modal-quiz-fail-text h4 {
    font-size: 14px;
  }

  .modal-quiz-fail-text p {
    font-size: 12px;
  }
}

.text-danger {
  color: #ff5c5c;
}