/** TIMESTAMP **/
/*!
PROJECT NAME :- WEB APP
UI DEVELOPER:  ANOOP
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;
}

/** COMPONENTS **/
.button {
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 900;
  line-height: 1;
  border-radius: 3.75rem;
  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;
  transition: background-color 120ms ease-in-out;
  padding: 0.75rem 1.25rem;
  font-size: 1.15rem;
}
@media (min-width: 80.0000rem) {
  .button {
    padding: 1.75rem 3.125rem;
    min-height: 3rem;
    font-size: 2.375rem;
  }
}
.button-sm {
  padding: 0.75rem 1.15rem;
  font-size: 1rem;
}
@media (min-width: 80.0000rem) {
  .button-sm {
    padding: 1rem 2rem;
    min-height: 3.875rem;
    font-size: 1.5rem;
  }
}
.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%;
  padding: 0 1.25rem;
}
@media (min-width: 80.0000rem) {
  .wrapper {
    max-width: 88.938rem;
    margin: 0 auto;
  }
}

header {
  position: fixed;
  width: 100%;
  color: rgb(255, 255, 255);
  z-index: 4;
  transition: all 400ms ease-in-out;
  padding: 1rem 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;
}
@media (min-width: 80.0000rem) {
  header .call {
    font-size: 2rem;
  }
}
header .utility {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 46.0000rem) {
  header .utility {
    gap: 2.5rem;
  }
}
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, header .utility a.link img {
  display: block;
}
@media (min-width: 46.0000rem) {
  header .utility a.link i, header .utility a.link img {
    display: none;
  }
}
header .utility a.link span {
  display: none;
}
@media (min-width: 46.0000rem) {
  header .utility a.link span {
    display: block;
  }
}
header .utility a.link:first-child {
  font-variant-numeric: lining-nums;
}
header .utility .button {
  overflow: hidden;
  transition: all 120ms ease-in-out;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}
@media (min-width: 80.0000rem) {
  header .utility .button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}
header.onScroll {
  background-color: rgba(2, 29, 73, 0.8);
  backdrop-filter: blur(32px);
}
header.onScroll .button {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
@media (min-width: 80.0000rem) {
  header.onScroll .button {
    padding: 0.25rem 1.5rem;
    font-size: inherit;
  }
}

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.875rem;
  }
}
@media (min-width: 80.0000rem) {
  footer .privacyWrap-link {
    gap: 2.625rem;
    font-size: 0.833rem;
  }
}
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: 80.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/Page2/hero_banner/banner_bg.avif);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}
@media (min-width: 80.0000rem) {
  .homeBanner {
    padding-top: 4rem;
  }
}
.homeBanner .banner-wraper {
  display: flex;
  align-items: center;
  align-content: center;
}
@media (min-width: 80.0000rem) {
  .homeBanner .banner-wraper {
    min-height: calc(100vh - 7rem);
  }
}
.homeBanner-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.homeBanner-graphic .graphic-01 {
  position: absolute;
  top: 8.75rem;
  width: 100vw;
}
.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;
  top: 6.25rem;
  left: 49.54vw;
  z-index: 1;
}
.homeBanner-info {
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  padding-bottom: 3rem;
  width: 80%;
}
@media (min-width: 80.0000rem) {
  .homeBanner-info {
    width: 52%;
    padding: 7.5rem 0;
  }
}
.homeBanner-info h1 {
  font-weight: 900;
  line-height: 1;
  font-size: 2.75rem;
}
@media (min-width: 80.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: "Inter";
  text-transform: uppercase;
}
@media (min-width: 80.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;
}
@media (min-width: 80.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 {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
@media (min-width: 80.0000rem) {
  .homeBanner-links {
    padding: 0 0 7rem 0;
  }
}
.homeBanner-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter";
  flex-wrap: wrap;
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 4.375rem;
  }
}
.homeBanner-links ul li {
  text-align: center;
  list-style: none;
  width: 50%;
  padding: 1.75rem 0;
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul li {
    width: auto;
    padding: 0;
  }
}
.homeBanner-links ul li span {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 80.0000rem) {
  .homeBanner-links ul li span {
    width: 9rem;
    height: 9rem;
  }
}
.homeBanner-links ul li p {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1.1;
}
@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;
}
@media (min-width: 80.0000rem) {
  .storySection .story-wrapper {
    max-height: 100vh;
    min-height: 100vh;
    padding: 0;
  }
}
.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: 80.0000rem) {
  .storySection .story-wrapper h2 {
    font-size: 4.25rem;
  }
}
.storySection .story-wrapper a {
  position: relative;
}
.storySection video {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  object-fit: fill;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 0;
}
@media (min-width: 80.0000rem) {
  .storySection video {
    width: 110%;
    height: auto;
    object-fit: none;
  }
}

.featureSection {
  padding: 2rem 0;
}
@media (min-width: 80.0000rem) {
  .featureSection {
    padding: 1.5rem 0;
  }
}
.featureSection .featureWrap {
  padding: 3.5rem 1rem;
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap {
    padding: 5.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 7.5rem;
  }
}
.featureSection .featureWrap h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgb(2, 29, 73);
  margin-bottom: 1.15rem;
  line-height: 1;
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap h3 {
    font-size: 3.583rem;
    margin-bottom: 1.625rem;
  }
}
.featureSection .featureWrap p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(2, 29, 73);
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap p {
    font-size: 1.719rem;
  }
}
.featureSection .featureWrap 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/Page2/icons/icon_check.svg);
  background-position: left 0.85rem;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}
.featureSection .featureWrap ul li b {
  font-weight: 600;
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap > div {
    width: 50%;
  }
}
.featureSection .featureWrap > div:first-child {
  padding-bottom: 3.5rem;
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap > div:first-child {
    padding-bottom: 0;
  }
}
.featureSection .featureWrap > div img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap:nth-child(even) div:first-child {
    order: 2;
  }
}
@media (min-width: 80.0000rem) {
  .featureSection .featureWrap:nth-child(even) div:last-child {
    order: 1;
  }
}

.accountSection {
  padding: 5rem 0;
  background-color: rgb(2, 29, 73);
  background-image: url(/-/media/UGCLanding/Page2/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;
}
.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;
}
.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: 80.0000rem) {
  .accountSection .bonus-wrapper h2 {
    font-size: 3.159rem;
    margin-bottom: 4.25rem;
  }
}
.accountSection .bonus-wrapper ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 80.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 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;
}
@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: 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;
}
@media (min-width: 80.0000rem) {
  .helpSection p {
    font-size: 1.728rem;
    line-height: 1.5;
  }
}
.helpSection ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.75rem;
  padding-top: 3.688rem;
}
@media (min-width: 80.0000rem) {
  .helpSection ul {
    flex-direction: row;
    gap: 5rem;
    padding-top: 4.688rem;
  }
}
.helpSection ul li {
  text-align: center;
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.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: 80.0000rem) {
  .helpSection ul li b {
    font-size: 1.72rem;
  }
}

/*****/
.heroSection {
  background-color: rgb(2, 29, 73);
  background-image: url(/-/media/UGCLanding/Page2/hero_banner/banner_wide_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-top: 17.067vw;
  min-height: 100vh;
  height: 100vh;
}
@media only screen and (min-width: 1024px) {
  .heroSection {
    height: auto;
  }
}
@media (min-width: 80.0000rem) {
  .heroSection {
    padding-top: 1.5rem;
    min-height: auto;
    height: 100vh;
  }
}
.heroSection .wrapper {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 46vw;
}
@media (min-width: 46.0000rem) {
  .heroSection .wrapper {
    padding-bottom: 23vw;
  }
}
@media (min-width: 80.0000rem) {
  .heroSection .wrapper {
    align-items: center;
    padding-bottom: 0;
  }
}
.heroSection .heroWrap {
  color: rgb(255, 255, 255);
  position: relative;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .heroSection .heroWrap {
    transform: scale(0.78);
  }
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: left;
    transform: none;
    gap: 2rem;
  }
}
.heroSection .heroWrap div {
  margin-bottom: 4.267vw;
}
.heroSection .heroWrap div:first-child {
  position: relative;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div {
    margin: 0;
  }
}
.heroSection .heroWrap div h1 {
  font-weight: 900;
  font-size: 9.6vw;
  line-height: 1;
  text-align: left;
  max-width: 25.6vw;
  margin-bottom: 2.2vw;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div h1 {
    font-size: 4.5rem;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: none;
  }
}
.heroSection .heroWrap div span {
  font-weight: 900;
  color: rgb(58, 193, 204);
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 2.333vw;
  font-size: 54.6vw;
  line-height: 0.7;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div span {
    letter-spacing: -0.5rem;
    font-size: 27.5rem;
    line-height: 0.72;
    padding-left: 3.5rem;
  }
}
.heroSection .heroWrap div span sup:first-child {
  font-size: 11.733vw;
  line-height: 1.4;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div span sup:first-child {
    font-size: 9.375rem;
  }
}
.heroSection .heroWrap div span sup:last-child {
  font-size: 8vw;
  padding: 0;
  position: absolute;
  right: 4vw;
  top: 4vw;
}
@media (min-width: 46.0000rem) {
  .heroSection .heroWrap div span sup:last-child {
    font-size: 6vw;
    top: 5vw;
    right: 10vw;
  }
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div span sup:last-child {
    font-size: 2vw;
    right: 1.2vw;
    top: 2.2vw;
  }
}
@keyframes leaves {
  0% {
    transform: scaleY(1) scaleX(-1);
  }
  100% {
    transform: scaleY(1.015) scaleX(-1.015);
  }
}
.heroSection .heroWrap div .heroWrap-graphic {
  position: absolute;
  width: 100%;
  margin: 0;
  -webkit-mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask_sm.svg);
  mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask_sm.svg);
  mask-repeat: no-repeat;
  mask-position: center bottom;
  left: 1.5vw;
  mask-size: 100%;
  left: -0.6vw;
  bottom: -0.8vw;
  -webkit-mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask01.svg);
  mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask01.svg);
  mask-repeat: no-repeat;
  mask-position: -6vw bottom;
  left: 0;
  bottom: -1.8vw;
}
.heroSection .heroWrap div .heroWrap-graphic::before {
  content: "4";
  font-weight: 900;
  color: rgb(58, 193, 204);
  position: absolute;
  left: 2.333vw;
  bottom: 1.2vw;
  font-size: 54.6vw;
  line-height: 0.72;
  z-index: 1;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 46.0000rem) {
  .heroSection .heroWrap div .heroWrap-graphic {
    bottom: -1.4vw;
    left: -2.333vw;
  }
  .heroSection .heroWrap div .heroWrap-graphic::before {
    left: 4.777vw;
    bottom: 0.8vw;
  }
}
@media only screen and (min-width: 1024px) {
  .heroSection .heroWrap div .heroWrap-graphic {
    bottom: -1.5vw;
    left: -2.999vw;
  }
  .heroSection .heroWrap div .heroWrap-graphic::before {
    left: 5.333vw;
    bottom: 0.7vw;
  }
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div .heroWrap-graphic {
    display: flex;
    justify-content: start;
    left: 12.3rem;
    bottom: -0.6rem;
    -webkit-mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask01.svg);
    mask-image: url(/-/media/UGCLanding/Page2/hero_banner/mask01.svg);
    mask-repeat: no-repeat;
    mask-position: left bottom;
    left: 15.1rem;
    bottom: -0.83rem;
    mask-size: 100%;
    left: -0.15rem;
    bottom: -0.45rem;
    padding-top: 1rem;
  }
  .heroSection .heroWrap div .heroWrap-graphic::before {
    left: 3.5rem;
    bottom: 0.45rem;
    font-size: 27.5rem;
    line-height: 0.72;
  }
}
.heroSection .heroWrap div .heroWrap-graphic img, .heroSection .heroWrap div .heroWrap-graphic svg {
  margin: 0 auto;
  max-width: 100%;
  border: 0;
  display: block;
  transform-origin: 50% 100%;
  animation: leaves 1000ms ease-in-out infinite alternate;
  width: 22vw;
  position: relative;
  left: -11.5vw;
  bottom: 0;
}
@media (min-width: 46.0000rem) {
  .heroSection .heroWrap div .heroWrap-graphic img, .heroSection .heroWrap div .heroWrap-graphic svg {
    width: 22vw;
  }
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div .heroWrap-graphic img, .heroSection .heroWrap div .heroWrap-graphic svg {
    width: 100vw;
    max-width: 27%;
    left: -3rem;
  }
}
.heroSection .heroWrap div p {
  font-weight: 900;
  line-height: 0.95;
  font-size: 11.733vw;
  display: inline-block;
  color: rgb(255, 255, 255);
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div p {
    display: block;
    font-size: 5.5rem;
  }
}
.heroSection .heroWrap div p:nth-child(1) {
  font-size: 11.733vw;
  text-transform: uppercase;
  color: rgb(58, 193, 204);
  margin-bottom: 0.5rem;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div p:nth-child(1) {
    margin-bottom: 0;
    font-size: 9.5rem;
  }
}
.heroSection .heroWrap div p:nth-child(2) {
  font-size: 5.333vw;
  font-weight: 700;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div p:nth-child(2) {
    font-size: 3rem;
    font-weight: 900;
  }
}
.heroSection .heroWrap div p:nth-child(3) {
  font-size: 5.333vw;
  font-weight: 700;
}
@media (min-width: 80.0000rem) {
  .heroSection .heroWrap div p:nth-child(3) {
    line-height: 1;
    font-size: 2.75rem;
    font-weight: 900;
  }
}

.quoteSection {
  margin-top: -40vw;
  margin-bottom: 3.125rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 46.0000rem) {
  .quoteSection {
    margin-top: -20vw;
  }
}
@media only screen and (min-width: 1024px) {
  .quoteSection {
    margin-top: -12vw;
  }
}
@media (min-width: 80.0000rem) {
  .quoteSection {
    margin-top: -9rem;
    margin-bottom: 3.125rem;
  }
}
.quoteSection .quoteWrap {
  padding: 2.5rem;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  text-align: center;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.25);
}
@media (min-width: 80.0000rem) {
  .quoteSection .quoteWrap {
    padding: 5rem 3.75rem;
    margin: 0 5rem;
  }
}
.quoteSection .quoteWrap p {
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(0, 0, 0);
}
.quoteSection .quoteWrap p b {
  font-weight: 700;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .quoteSection .quoteWrap p b {
    display: block;
  }
}
@media (min-width: 80.0000rem) {
  .quoteSection .quoteWrap p b {
    display: block;
  }
}
@media (min-width: 80.0000rem) {
  .quoteSection .quoteWrap p {
    font-size: 2.375rem;
  }
}

.loveSection {
  padding: 3.25rem 0;
  background-color: rgb(255, 255, 255);
  color: rgb(2, 29, 73);
}
@media (min-width: 80.0000rem) {
  .loveSection {
    padding: 6.25rem 0;
  }
}
.loveSection h2 {
  font-size: 2.95rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 3.125rem;
  text-align: center;
  padding: 0 2rem;
}
@media (min-width: 80.0000rem) {
  .loveSection h2 {
    font-size: 4rem;
    padding: 0;
  }
}
.loveSection .featureWrap {
  display: flex;
  justify-content: center;
  gap: 1.563rem;
  flex-direction: column;
}
@media (min-width: 46.0000rem) {
  .loveSection .featureWrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.loveSection .featureWrap > li {
  list-style: none;
  background-color: #F5F5F5;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  padding: 2.5rem;
  padding-bottom: 6rem;
}
@media (min-width: 46.0000rem) {
  .loveSection .featureWrap > li {
    width: calc(50% - 1.563rem);
  }
}
@media (min-width: 80.0000rem) {
  .loveSection .featureWrap > li {
    max-width: 39.375rem;
    font-size: 2rem;
    padding: 3.5rem 4rem;
    padding-bottom: 11rem;
  }
}
.loveSection .featureWrap > li:nth-child(2), .loveSection .featureWrap > li:nth-child(3) {
  background-color: rgba(58, 193, 204, 0.25);
}
.loveSection .featureWrap > li:nth-child(3) {
  order: 1;
}
@media (min-width: 80.0000rem) {
  .loveSection .featureWrap > li:nth-child(3) {
    order: 0;
  }
}
.loveSection .featureWrap > li h3 {
  font-size: 2.25rem;
  font-weight: 900;
  color: rgb(2, 29, 73);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 80.0000rem) {
  .loveSection .featureWrap > li h3 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
  }
}
.loveSection .featureWrap > li p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(2, 29, 73);
  margin-bottom: 1.625rem;
}
@media (min-width: 80.0000rem) {
  .loveSection .featureWrap > li p {
    font-size: 2.125rem;
    margin-bottom: 1.625rem;
  }
}
.loveSection .featureWrap > li span {
  display: flex;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  position: absolute;
  right: 1.75rem;
  bottom: 2rem;
}
@media (min-width: 80.0000rem) {
  .loveSection .featureWrap > li span {
    width: 12.5rem;
    height: 12.5rem;
  }
}
.loveSection .slideWrap {
  margin: 1.563rem auto;
  margin-bottom: 0;
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap {
    max-width: 80.5rem;
  }
}
.loveSection .slideWrap-item {
  padding: 2.5rem;
  padding-bottom: 0;
  position: relative;
  background-color: #F5F5F5;
}
@media (min-width: 46.0000rem) {
  .loveSection .slideWrap-item {
    min-height: 28rem;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap-item {
    min-height: 34rem;
    padding: 4.75rem 3.75rem;
  }
}
@media (min-width: 46.0000rem) {
  .loveSection .slideWrap-item .item-info {
    padding-right: 24rem;
  }
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap-item .item-info {
    padding-right: 28rem;
  }
}
.loveSection .slideWrap-item .item-info h3 {
  font-size: 2.25rem;
  font-weight: 900;
  color: rgb(2, 29, 73);
  margin-bottom: 1.25rem;
  line-height: 1;
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap-item .item-info h3 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
  }
}
.loveSection .slideWrap-item .item-info p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(2, 29, 73);
  margin-bottom: 0.75rem;
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap-item .item-info p {
    font-size: 1.875rem;
    padding-right: 5rem;
  }
}
.loveSection .slideWrap-item .item-template {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 46.0000rem) {
  .loveSection .slideWrap-item .item-template {
    align-items: end;
    width: 22.375rem;
    position: absolute;
    right: 1.5rem;
    bottom: 0;
  }
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap-item .item-template {
    width: 32.375rem;
  }
}
.loveSection .slideWrap-item .item-template img {
  display: block;
}
.loveSection .slideWrap-item .item-template .templateBox {
  background-color: #fff;
  width: 79%;
  height: 88%;
  border-radius: 3.25rem 3.25rem 0 0;
  position: absolute;
  left: 11%;
  top: 12%;
  overflow: hidden;
}
.loveSection .slideWrap .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.25rem;
  width: auto;
}
@media (min-width: 46.0000rem) {
  .loveSection .slideWrap .slick-dots {
    left: 3.25rem;
    bottom: 3.25rem;
    transform: none;
  }
}
.loveSection .slideWrap .slick-dots li {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
@media (min-width: 80.0000rem) {
  .loveSection .slideWrap .slick-dots li {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.loveSection .slideWrap .slick-dots li button {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}
.loveSection .slideWrap .slick-dots li button::before {
  width: inherit;
  height: inherit;
  border-radius: inherit;
  font-size: 0;
  background-color: transparent;
  opacity: 1;
  border: 0.125rem solid rgb(2, 29, 73);
}
.loveSection .slideWrap .slick-dots li.slick-active button::before {
  background-color: rgb(2, 29, 73);
}

.bonusSection {
  padding: 3.25rem 0;
  text-align: center;
  background-color: rgb(255, 255, 255);
  color: rgb(2, 29, 73);
}
@media (min-width: 80.0000rem) {
  .bonusSection {
    padding: 6.25rem 0;
  }
}
.bonusSection h2 {
  font-size: 2.95rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 3.125rem;
  padding: 0 2rem;
}
@media (min-width: 80.0000rem) {
  .bonusSection h2 {
    font-size: 4rem;
    padding: 0;
  }
}
.bonusSection ul {
  display: flex;
  justify-content: center;
  gap: 1.563rem;
  flex-direction: column;
}
@media (min-width: 46.0000rem) {
  .bonusSection ul {
    flex-direction: row;
  }
}
.bonusSection ul li {
  list-style: none;
  background-color: #F5F5F5;
  padding: 2.5rem;
  font-size: 1.85rem;
  font-weight: 500;
}
@media (min-width: 80.0000rem) {
  .bonusSection ul li {
    max-width: 39.375rem;
    font-size: 2rem;
    padding: 3.75rem 2.35rem;
  }
}
.bonusSection ul li p {
  font-size: inherit;
  color: rgb(2, 29, 73);
  line-height: normal;
}
.bonusSection ul li span {
  display: flex;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 80.0000rem) {
  .bonusSection ul li span {
    width: 22.438rem;
    height: 22.438rem;
    margin-bottom: 2.5rem;
  }
}

.upgradeSection {
  padding: 3.5rem 0;
  text-align: center;
  background-color: rgb(255, 255, 255);
  color: rgb(2, 29, 73);
  overflow: hidden;
}
@media (min-width: 80.0000rem) {
  .upgradeSection {
    padding: 6.25rem 0;
  }
}
.upgradeSection h2 {
  font-size: 2.95rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 2.25rem;
}
@media (min-width: 80.0000rem) {
  .upgradeSection h2 {
    margin-bottom: 1.25rem;
    font-size: 4rem;
  }
}
.upgradeSection p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2.25rem;
  color: inherit;
}
@media (min-width: 80.0000rem) {
  .upgradeSection p {
    margin-bottom: 5rem;
    font-size: 2rem;
    padding: 0 10rem;
  }
}
.upgradeSection .player {
  position: relative;
  overflow: hidden;
  background-color: #3AC1CC;
  cursor: pointer;
}
@media (min-width: 80.0000rem) {
  .upgradeSection .player {
    padding: 0 4rem;
  }
}
.upgradeSection .player img {
  width: 100%;
  scale: 1.1;
  transition: all 360ms ease-in-out;
}
.upgradeSection .player i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 5rem;
  margin-left: -2.5rem;
  margin-top: -2.5rem;
  color: rgb(255, 255, 255);
}
@media (min-width: 80.0000rem) {
  .upgradeSection .player i {
    font-size: 10rem;
    margin-left: -5rem;
    margin-top: -5rem;
  }
}
.upgradeSection .player:hover img {
  opacity: 0.8;
  scale: 1.15;
}

.openInfo {
  padding: 7.5rem 0;
  background-color: rgb(2, 29, 73);
  background-image: url(/-/media/UGCLanding/Page2/images/growth_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
@media (min-width: 80.0000rem) {
  .openInfo {
    padding: 7.5rem 0;
  }
}
.openInfo h2 {
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 0 2.25rem rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  margin-bottom: 1.875rem;
}
@media (min-width: 80.0000rem) {
  .openInfo h2 {
    font-size: 4rem;
  }
}
.openInfo p {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  margin-bottom: 2.75rem;
}
@media (min-width: 80.0000rem) {
  .openInfo p {
    font-size: 2.5rem;
    margin-bottom: 3.75rem;
  }
}

/** ANIMATION **/
/** LINES ANIMATION **/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 72390.3125px;
    stroke-dasharray: 72390.3125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72390.3125px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 72390.3125px;
    stroke-dasharray: 72390.3125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72390.3125px;
  }
}
.banner-lines-1 {
  -webkit-animation: animate-svg-stroke-1 6s ease-in-out 0.05s both;
  animation: animate-svg-stroke-1 6s ease-in-out 0.05s both;
}

@media (min-width: 80.0000rem) {
  /*****/
  .homeBanner .homeBanner-graphic .graphic-02 {
    transform: translateX(30px);
    transition: all 500ms ease-in-out;
    opacity: 0;
    filter: blur(6px);
  }
  .homeBanner .homeBanner-info h1, .homeBanner .homeBanner-info span, .homeBanner .homeBanner-info p, .homeBanner .homeBanner-info .cta, .homeBanner .homeBanner-info small {
    transform: translateX(-30px);
    opacity: 0;
  }
  .homeBanner.aos-animate .homeBanner-graphic .graphic-02 {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition-delay: 900ms;
  }
  .homeBanner.aos-animate .homeBanner-info h1, .homeBanner.aos-animate .homeBanner-info span, .homeBanner.aos-animate .homeBanner-info p, .homeBanner.aos-animate .homeBanner-info .cta, .homeBanner.aos-animate .homeBanner-info small {
    transform: translateX(0);
    transition: transform 360ms ease-in-out, opacity 360ms ease-in-out, background-color 360ms ease-in-out;
    opacity: 1;
  }
  .homeBanner.aos-animate .homeBanner-info h1 {
    transition-delay: 750ms;
  }
  .homeBanner.aos-animate .homeBanner-info p {
    transition-delay: 800ms;
  }
  .homeBanner.aos-animate .homeBanner-info .cta {
    transition-delay: 900ms;
  }
  .homeBanner.aos-animate .homeBanner-info small {
    transition-delay: 950ms;
  }
  .homeBanner .homeBanner-links ul li:nth-child(1), .homeBanner .homeBanner-links ul li:nth-child(2), .homeBanner .homeBanner-links ul li:nth-child(3), .homeBanner .homeBanner-links ul li:nth-child(4) {
    transform: translateY(100px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .homeBanner .homeBanner-links.aos-animate ul li:nth-child(1), .homeBanner .homeBanner-links.aos-animate ul li:nth-child(2), .homeBanner .homeBanner-links.aos-animate ul li:nth-child(3), .homeBanner .homeBanner-links.aos-animate ul li:nth-child(4) {
    transform: translateY(0);
    opacity: 1;
  }
  .homeBanner .homeBanner-links.aos-animate ul li:nth-child(1) {
    transition-delay: 100ms;
  }
  .homeBanner .homeBanner-links.aos-animate ul li:nth-child(2) {
    transition-delay: 200ms;
  }
  .homeBanner .homeBanner-links.aos-animate ul li:nth-child(3) {
    transition-delay: 300ms;
  }
  .homeBanner .homeBanner-links.aos-animate ul li:nth-child(4) {
    transition-delay: 400ms;
  }
  .storySection.aos-init h2 {
    transform: translateY(-120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .storySection.aos-init a {
    transform: translateY(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .storySection.aos-init.aos-animate h2, .storySection.aos-init.aos-animate a {
    transform: translateY(0);
    opacity: 1;
  }
  .featureWrap.aos-init div:first-child {
    transform: translateY(60px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .featureWrap.aos-init div:last-child h3, .featureWrap.aos-init div:last-child ul, .featureWrap.aos-init div:last-child p, .featureWrap.aos-init div:last-child a {
    transform: translateY(-60px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .featureWrap.aos-init div:last-child p {
    transition-delay: 200ms;
  }
  .featureWrap.aos-init div:last-child a {
    transition-delay: 300ms;
  }
  .featureWrap.aos-init.aos-animate div:first-child {
    transform: translateY(0);
    opacity: 1;
  }
  .featureWrap.aos-init.aos-animate div:last-child h3, .featureWrap.aos-init.aos-animate div:last-child ul, .featureWrap.aos-init.aos-animate div:last-child p, .featureWrap.aos-init.aos-animate div:last-child a {
    transform: translateY(0);
    opacity: 1;
  }
  .accountSection.aos-init h2 {
    transform: translateX(-120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .accountSection.aos-init a {
    transform: translateX(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .accountSection.aos-init ul li {
    transform: translateX(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .accountSection.aos-init.aos-animate h2, .accountSection.aos-init.aos-animate a, .accountSection.aos-init.aos-animate ul li {
    transform: translateX(0);
    opacity: 1;
  }
  .accountSection.aos-init.aos-animate ul li:first-child {
    transition-delay: 150ms;
  }
  .accountSection.aos-init.aos-animate ul li:last-child {
    transition-delay: 300ms;
  }
  .helpSection.aos-init h2 {
    transform: translateY(-120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .helpSection.aos-init h2 + p {
    transform: translateY(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .helpSection.aos-init.aos-animate h2, .helpSection.aos-init.aos-animate h2 + p {
    transform: translateY(0);
    opacity: 1;
  }
  .helpSection ul.aos-init li:nth-child(1) {
    transform: translateX(-120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .helpSection ul.aos-init li:nth-child(2) {
    transform: translateY(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .helpSection ul.aos-init li:nth-child(3) {
    transform: translateX(120px);
    transition: all 360ms ease-in-out;
    opacity: 0;
  }
  .helpSection ul.aos-init.aos-animate li:nth-child(1), .helpSection ul.aos-init.aos-animate li:nth-child(2), .helpSection ul.aos-init.aos-animate li:nth-child(3) {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=citadel.global.css.map */