/** TIMESTAMP **/
/*!
PROJECT NAME :- WEB APP
UI DEVELOPER:  
DATE :-  
VERSION :- V.1
*/
/** BASE **/
/** FONT FAMILY **/
/*********** COLOR ***********/
/** BLUE **/
/** RED **/
/** YELLOW **/
/** GREEN **/
/** NEUTRAL **/
/** SUCESS **/
/** WARNING **/
/** ERROR **/
/** MEDIA BREAKPOINT **/
/** BORDER RADIUS **/
/** ASSEST PATH **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  font-family: "freight-sans-pro-1", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none;
  font-feature-settings: "liga", 0;
  color: #000;
  font-variant-numeric: lining-nums;
}

ul {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  border: none;
}

sup {
  font-size: 70%;
  padding-left: 0.25rem;
}

button,
input,
select,
textarea {
  appearance: none;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 240px;
}

button::-moz-focus-inner {
  border: 0;
}

input[type=search] {
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number] {
  box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  appearance: none;
  position: relative;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox][readonly] + label {
  pointer-events: none;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.hidden {
  display: none;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/** COMPONENTS **/
.button {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  padding: 0.5rem 2rem;
  line-height: 1;
  border-radius: 1.875rem;
  cursor: pointer;
  border: 0.125rem solid transparent;
  transition-delay: 0;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  min-height: 3rem;
  transition: background-color 120ms ease-in-out;
}
.button-cta {
  background-color: rgb(246, 146, 32);
  color: rgb(2, 29, 73);
  border-color: rgb(246, 146, 32);
}
.button-cta:hover {
  background-color: rgb(255, 255, 255);
}
.button-cta i {
  font-size: 2rem;
  margin-right: -0.5rem;
  transition: background-color 120ms ease-in-out;
}

/** MODULES **/
.wrapper {
  max-width: 100%;
  overflow: hidden;
  padding: 0 1.5rem;
}
@media (min-width: 46.0000rem) {
  .wrapper {
    padding: 0 3rem;
  }
}
@media (min-width: 80.0000rem) {
  .wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
  }
}

header {
  position: sticky;
  width: 100%;
  color: rgb(255, 255, 255);
  z-index: 3;
  transition: all 400ms ease-in-out;
  padding: 1rem 0;
}
@media (max-width: 46.0000rem) {
  header .wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 46.0000rem) {
  header {
    padding: 1.5rem 0;
  }
}
@media (min-width: 80.0000rem) {
  header {
    padding: 2.188rem 0;
  }
}
header .h-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 7.625rem;
}
@media (min-width: 46.0000rem) {
  header .logo {
    width: 10.625rem;
  }
}
header .logo a {
  display: block;
}
header .call {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  background-color: #fcc;
}
@media (min-width: 46.0000rem) {
  header .call {
    font-size: 2rem;
  }
}
header .utility {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 46.0000rem) {
  header .utility {
    gap: 2rem;
  }
}
header .utility a.link {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 46.0000rem) {
  header .utility a.link {
    font-size: 1.5rem;
  }
}
header .utility a.link i {
  display: block;
}
@media (min-width: 46.0000rem) {
  header .utility a.link i {
    display: none;
  }
}
header .utility a.link span {
  display: none;
}
@media (min-width: 46.0000rem) {
  header .utility a.link span {
    display: block;
  }
}
@media (max-width: 46.0000rem) {
  header .utility .button {
    font-size: 0.75rem;
    padding: 0.25rem 0.25rem;
    width: 5.5rem;
    border-radius: 0.5rem;
    text-align: center;
    letter-spacing: 0;
  }
}
header.offScreen {
  position: fixed;
  padding: 1rem 0;
  transform: translateY(-100%);
}
header.onScroll {
  transform: translateY(0);
  background-color: rgba(2, 29, 73, 0.9);
  backdrop-filter: blur(32px);
  border-bottom: 0.5px solid rgb(63, 150, 180);
}
@media (max-width: 46.0000rem) {
  header.onScroll .button {
    font-size: 0.75rem;
    padding: 0.25rem 0.25rem;
    width: 5.5rem;
    border-radius: 0.5rem;
    text-align: center;
    letter-spacing: 0;
  }
}
@media (min-width: 46.0000rem) {
  header.onScroll .button {
    width: fit-content;
  }
}
@media (min-width: 80.0000rem) {
  header.onScroll {
    padding: 1rem 0;
  }
}

footer {
  background-color: rgb(245, 245, 245);
  font-family: "Roboto Condensed";
}
footer .disclosuresInfo {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(128, 128, 128);
  padding: 2.15rem 0;
  border-top: 0.063rem solid rgb(230, 230, 230);
}
@media (min-width: 46.0000rem) {
  footer .disclosuresInfo {
    font-size: 0.85rem;
  }
}
@media (min-width: 80.0000rem) {
  footer .disclosuresInfo {
    font-size: 0.75rem;
    padding: 2.625rem 0;
  }
}
footer .disclosuresInfo h4 {
  font-size: 0.85rem;
  font-weight: 500;
}
@media (min-width: 80.0000rem) {
  footer .disclosuresInfo h4 {
    font-size: 1rem;
  }
}
footer .disclosuresInfo b {
  font-weight: 600;
}
footer .disclosuresInfo a {
  color: rgb(24, 90, 125);
  font-weight: 600;
}
footer .privacyWrap {
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 46.0000rem) {
  footer .privacyWrap {
    padding: 2.5rem 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
footer .privacyWrap span {
  display: block;
}
footer .privacyWrap-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  font-size: 0.65rem;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 46.0000rem) {
  footer .privacyWrap-link {
    width: auto;
    gap: 1.15rem;
    font-size: 0.833rem;
  }
}
@media (min-width: 80.0000rem) {
  footer .privacyWrap-link {
    gap: 2.625rem;
  }
}
footer .privacyWrap-link a {
  color: rgb(51, 51, 51);
  text-decoration: none;
  font-weight: 500;
  font-family: "freight-sans-pro-1";
}
footer .privacyWrap-link a:hover {
  color: rgb(246, 146, 32);
}
footer .privacyWrap div.certificates {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 46.0000rem) {
  footer .privacyWrap div.certificates {
    gap: 1.875rem;
    width: auto;
  }
}
footer .privacyWrap div.certificates img {
  display: block;
  max-height: 2rem;
}
@media (min-width: 46.0000rem) {
  footer .privacyWrap div.certificates img {
    max-height: 2.625rem;
  }
}
footer .copyright {
  border-top: 0.063rem solid rgb(230, 230, 230);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  padding-bottom: 4rem;
  color: rgb(51, 51, 51);
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
footer .copyright span {
  display: block;
  padding-bottom: 1rem;
  font-family: "freight-sans-pro-1";
}
@media (min-width: 46.0000rem) {
  footer .copyright span {
    padding-bottom: 0;
  }
}
@media (min-width: 46.0000rem) {
  footer .copyright {
    flex-direction: row;
    font-size: 0.875rem;
    align-items: center;
  }
}

/** SECTION **/
.homeBanner {
  background-color: rgb(2, 29, 73);
  background-image: url(/-/Media/UGCLanding/images/banner_bg.avif);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 3rem);
}
@media (min-width: 46.0000rem) {
  .homeBanner {
    height: 100vh;
  }
}
.homeBanner .banner-wraper {
  display: flex;
  min-height: calc(100vh - 18rem);
  align-items: flex-end;
}
@media (min-width: 46.0000rem) {
  .homeBanner .banner-wraper {
    padding-bottom: 7rem;
    min-height: calc(100vh - 25rem);
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner .banner-wraper {
    align-items: center;
    min-height: calc(100vh - 7rem);
    position: absolute;
    width: 100vw;
    left: 50%;
    margin-left: -640px;
  }
}
.homeBanner:after {
  display: none;
  position: absolute;
  content: "";
  width: 100vw;
  height: 35vh;
  background-color: aqua;
  bottom: 0;
  left: 0;
  z-index: 49;
  background: -webkit-linear-gradient(0deg, rgb(2, 29, 73) 0%, rgba(2, 29, 73, 0) 100%);
  background: -moz-linear-gradient(0deg, rgb(2, 29, 73) 0%, rgba(2, 29, 73, 0) 100%);
  background: linear-gradient(0deg, rgb(2, 29, 73) 0%, rgba(2, 29, 73, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#021D49", endColorstr="#021D49", GradientType=0);
}
@media (min-width: 80.0000rem) {
  .homeBanner:after {
    display: block;
  }
}
.homeBanner .link-wraper {
  position: absolute;
  width: 100%;
  z-index: 50;
}
@media (min-width: 80.0000rem) {
  .homeBanner .link-wraper {
    width: 1280px;
    bottom: 0;
    opacity: 0;
    margin-left: -640px;
    left: 50%;
  }
}
.homeBanner-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.homeBanner-graphic .graphic-01 {
  position: absolute;
  top: 6.75rem;
  width: 250vw;
  right: -60%;
}
@media (min-width: 46.0000rem) {
  .homeBanner-graphic .graphic-01 {
    top: 8.75rem;
    width: 180vw;
    right: -30%;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-graphic .graphic-01 {
    width: 90vw;
    right: 0;
  }
}
.homeBanner-graphic .graphic-01 img, .homeBanner-graphic .graphic-01 svg {
  margin: 0 auto;
  max-width: 100%;
  border: 0;
  display: block;
}
.homeBanner-graphic .graphic-02 {
  position: absolute;
  bottom: -2%;
  z-index: 1;
  left: 40vw;
  width: 110vw;
}
@media (min-width: 46.0000rem) {
  .homeBanner-graphic .graphic-02 {
    bottom: -1%;
    right: -10%;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-graphic .graphic-02 {
    top: 6.25rem;
    left: 55vw;
    width: 31vw;
  }
}
.homeBanner-info {
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
  width: 75%;
}
@media (min-width: 46.0000rem) {
  .homeBanner-info {
    width: 52%;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-info {
    padding-bottom: 0;
  }
}
.homeBanner-info h1 {
  font-weight: 900;
  line-height: 1;
  font-size: 2.75rem;
}
@media (min-width: 46.0000rem) {
  .homeBanner-info h1 {
    font-size: 5.159rem;
  }
}
.homeBanner-info h1 span {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(58, 193, 204);
  display: block;
  padding-bottom: 1rem;
  font-family: "freight-macro-pro-1";
  text-transform: uppercase;
}
@media (min-width: 46.0000rem) {
  .homeBanner-info h1 span {
    font-size: 2.074rem;
    padding-bottom: 1.25rem;
  }
}
.homeBanner-info p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 1.15rem 0;
  padding-bottom: 2rem;
  color: inherit;
}
@media (min-width: 46.0000rem) {
  .homeBanner-info p {
    padding: 1.25rem 0;
    padding-bottom: 3rem;
    font-size: 2.074rem;
  }
}
.homeBanner-info small {
  padding: 0.625rem 2rem;
  font-size: 0.833rem;
  color: rgb(230, 230, 230);
  font-weight: 400;
  display: block;
  max-width: 15.25rem;
  text-align: center;
}
.homeBanner-links {
  padding: 0 0 0rem 0;
  z-index: 2;
}
.homeBanner-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "freight-macro-pro-1";
  flex-wrap: wrap;
  gap: 2%;
}
@media (min-width: 46.0000rem) {
  .homeBanner-links ul {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3.375rem;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul {
    gap: 4.375rem;
  }
}
.homeBanner-links ul li {
  text-align: center;
  list-style: none;
  width: 48%;
  padding: 0.25rem 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 46.0000rem) {
  .homeBanner-links ul li {
    padding: 1.75rem 0;
    flex-direction: column;
    width: 25%;
    padding: 0;
  }
}
.homeBanner-links ul li span {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 46.0000rem) {
  .homeBanner-links ul li span {
    width: 7rem;
    height: 7rem;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul li span {
    width: 9rem;
    height: 9rem;
  }
}
.homeBanner-links ul li p {
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  line-height: 1.1;
  text-align: left;
}
@media (min-width: 46.0000rem) {
  .homeBanner-links ul li p {
    font-size: 1.35rem;
    font-weight: 700;
  }
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul li p {
    font-size: 1.875rem;
  }
}

.storySection {
  background-color: rgb(2, 29, 73);
  position: relative;
  overflow: hidden;
}
@media (min-width: 80.0000rem) {
  .storySection {
    max-height: 100vh;
    min-height: 100vh;
  }
}
.storySection .story-wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  z-index: 1;
  flex: 1;
  gap: 3rem;
  padding: 5rem 0;
  position: relative;
  position: relative;
}
@media (min-width: 80.0000rem) {
  .storySection .story-wrapper {
    max-height: 100vh;
    min-height: 100vh;
    padding: 0;
    opacity: 0;
    padding-top: 200px;
  }
}
.storySection .story-wrapper .cta-holder {
  display: flex;
  justify-content: center;
}
.storySection .story-wrapper h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (min-width: 46.0000rem) {
  .storySection .story-wrapper h2 {
    font-size: 3.25rem;
  }
}
.storySection .story-wrapper a {
  position: relative;
}
.storySection video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 0;
}
@media (min-width: 80.0000rem) {
  .storySection video {
    width: 110%;
  }
}

.featureSection {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 46.0000rem) {
  .featureSection {
    padding: 10rem 0;
  }
}
.featureSection .wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 80.0000rem) {
  .featureSection .wrapper {
    flex-direction: row;
    gap: 4rem;
    position: relative;
  }
}
.featureSection .feature-copy,
.featureSection .feature-graphic {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 80.0000rem) {
  .featureSection .feature-copy,
  .featureSection .feature-graphic {
    height: 100vh;
  }
}
.featureSection .heading-section {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section {
    gap: 10rem;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section {
    width: 50%;
  }
}
.featureSection .heading-section .feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section .feature-copy {
    gap: 3rem;
  }
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section .feature-copy > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section .feature-copy > div {
    align-items: inherit;
  }
}
.featureSection .heading-section .feature-copy .feature-graphic-mobile {
  text-align: center;
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section .feature-copy .feature-graphic-mobile {
    display: none;
  }
}
.featureSection .heading-section .feature-copy .feature-graphic-mobile img {
  width: 90%;
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section .feature-copy .feature-graphic-mobile img {
    width: 80%;
  }
}
.featureSection .heading-section h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgb(2, 29, 73);
  margin-bottom: 1.15rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section h3 {
    text-align: left;
    font-size: 3.583rem;
  }
}
.featureSection .heading-section p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(2, 29, 73);
  text-align: center;
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section p {
    font-size: 2rem;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section p {
    text-align: left;
    font-size: 1.719rem;
  }
}
.featureSection .heading-section ul {
  padding-left: 3rem;
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section ul {
    padding-left: 0rem;
  }
}
.featureSection .heading-section ul li {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgb(2, 29, 73);
  list-style: none;
  padding: 0.625rem 1.25rem;
  padding-left: 2.5rem;
  background-image: url(/-/Media/UGCLanding/images/icon_check.svg);
  background-position: left 0.85rem;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}
@media (min-width: 46.0000rem) {
  .featureSection .heading-section ul li {
    background-position: left 1.25rem;
    font-size: 2rem;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .heading-section ul li {
    text-align: left;
    font-size: 1.719rem;
  }
}
.featureSection .heading-section ul li b {
  font-weight: 500;
}
.featureSection .graphic-section {
  display: none;
  position: relative;
  height: 100vh;
}
@media (min-width: 80.0000rem) {
  .featureSection .graphic-section {
    width: 60%;
    display: flex;
  }
}
.featureSection .graphic-section img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 80.0000rem) {
  .featureSection .graphic-section img {
    max-width: 100%;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .graphic-section .feature-graphic {
    position: absolute;
    /* Stack graphic items on top of each other */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    /* Initially hidden, managed by GSAP */
    max-width: 100%;
    /* Responsive graphic size */
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    pointer-events: none;
    /* Prevent interaction with hidden graphics when hidden */
  }
}

.accountSection {
  padding: 5rem 0;
  background-color: rgb(2, 29, 73);
  background-image: url(/-/Media/UGCLanding/images/ReadySetGrow_guy.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 80.0000rem) {
  .accountSection {
    padding: 16.25rem 0;
  }
}
.accountSection .lead-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  display: none;
}
@media (min-width: 80.0000rem) {
  .accountSection .lead-wrapper {
    opacity: 0;
  }
}
.accountSection .lead-wrapper h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 2.25rem rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
}
@media (min-width: 80.0000rem) {
  .accountSection .lead-wrapper h2 {
    font-size: 5.159rem;
  }
}
.accountSection .bonus-wrapper {
  text-align: center;
}
@media (min-width: 80.0000rem) {
  .accountSection .bonus-wrapper {
    opacity: 0;
    transform: translateY(100);
  }
}
.accountSection .bonus-wrapper h2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 2.25rem rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  margin-bottom: 3.25rem;
}
@media (min-width: 46.0000rem) {
  .accountSection .bonus-wrapper h2 {
    font-size: 3rem;
  }
}
@media (min-width: 80.0000rem) {
  .accountSection .bonus-wrapper h2 {
    font-size: 3.159rem;
    margin-bottom: 4.25rem;
  }
}
.accountSection .bonus-wrapper ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 46.0000rem) {
  .accountSection .bonus-wrapper ul {
    flex-direction: row;
  }
}
.accountSection .bonus-wrapper ul li {
  list-style: none;
  background-color: rgb(255, 255, 255);
  padding: 2.25rem;
  border-radius: 0.625rem;
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 28.75rem;
}
@media (min-width: 80.0000rem) {
  .accountSection .bonus-wrapper ul li {
    font-size: 1.875rem;
    padding: 2.85rem 2.5rem;
  }
}
.accountSection .bonus-wrapper ul li p {
  font-size: inherit;
  color: inherit;
  line-height: normal;
}
.accountSection .bonus-wrapper ul li span {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  border: 0.188rem solid #000;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto;
  margin-bottom: 0.625rem;
  line-height: 1;
  font-weight: 600;
  font-size: inherit;
}
@media (min-width: 80.0000rem) {
  .accountSection .bonus-wrapper ul li span {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.helpSection {
  padding: 7.5rem 0;
  text-align: center;
  background-color: rgb(255, 255, 255);
  color: rgb(2, 29, 73);
  overflow: hidden;
}
.helpSection h2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (min-width: 46.0000rem) {
  .helpSection h2 {
    font-size: 3rem;
  }
}
@media (min-width: 80.0000rem) {
  .helpSection h2 {
    font-size: 3.75rem;
    line-height: 1.5;
  }
}
.helpSection p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: inherit;
}
@media (min-width: 46.0000rem) {
  .helpSection p {
    font-size: 2rem;
  }
}
@media (min-width: 80.0000rem) {
  .helpSection p {
    font-size: 1.728rem;
    line-height: 1.5;
  }
}
@media (min-width: 80.0000rem) {
  .helpSection .help-wrapper {
    opacity: 0;
    transform: translateY(100);
  }
}
.helpSection ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.75rem;
  padding-top: 3.688rem;
}
@media (min-width: 46.0000rem) {
  .helpSection ul {
    gap: 2rem;
    padding-top: 4.688rem;
  }
}
@media (min-width: 80.0000rem) {
  .helpSection ul {
    flex-direction: row;
    gap: 5rem;
  }
}
.helpSection ul li {
  text-align: center;
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 46.0000rem) {
  .helpSection ul li {
    width: 70%;
  }
}
.helpSection ul li:hover span img {
  opacity: 0.8;
  scale: 1.1;
}
.helpSection ul li:hover b {
  color: rgb(246, 146, 32);
}
.helpSection ul li span {
  background-color: rgb(246, 146, 32);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  transition: all 360ms ease-in-out;
  position: relative;
}
.helpSection ul li span img {
  width: 100%;
  scale: 1.05;
  transition: all 360ms ease-in-out;
}
.helpSection ul li span i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 3rem;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  color: rgb(255, 255, 255);
}
.helpSection ul li b {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.325rem 0;
  transition: all 360ms ease-in-out;
}
@media (min-width: 46.0000rem) {
  .helpSection ul li b {
    font-size: 1.75rem;
  }
}
@media (min-width: 80.0000rem) {
  .helpSection ul li b {
    font-size: 1.72rem;
  }
}

/** ANIMATION **//*# sourceMappingURL=citadel.global.css.map */