/**
 * * ----------------------------------------
 * * animation tracking-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes tracking-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation tracking-out-expand-fwd
 * * ----------------------------------------
 * */
@keyframes tracking-out-expand-fwd {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    letter-spacing: 1em;
    transform: translateZ(300px);
    opacity: 0;
  }
}
/**
 * * ----------------------------------------
 * * animation move-up
 * * ----------------------------------------
 * */
@keyframes move-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation move-down
 * * ----------------------------------------
 * */
@keyframes move-down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-expand
 * * ----------------------------------------
 * */
@keyframes focus-in-expand {
  0% {
    visibility: visible;
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes focus-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(300px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    visibility: visible;
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}
/**
 * * ----------------------------------------
 * * animation text-focus-in
 * * ----------------------------------------
 * */
@keyframes text-focus-in {
  0% {
    visibility: visible;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
.text-anim-in {
  animation: focus-in-expand 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.title {
  font-weight: 100;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: white;
  line-height: 100%;
  font-family: Din Pro;
}

.sub-title {
  font-weight: 100;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}

#main-app {
  min-height: 100vh;
}

.btn-wrap {
  display: table;
}

.btn-primary {
  display: table;
  padding: 0.3rem 1rem;
  background-color: #671c90;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: background-color 0.22s cubic-bezier(0, 0, 0.2, 1);
}
.btn-primary:hover {
  background-color: #7f24b4;
}

.btn-secondary {
  display: table;
  padding: 3px 5px;
  background-color: #f5d000;
  border-radius: 5px;
  color: #000000;
  cursor: pointer;
}

.link-white {
  color: #FFFFFF;
}

.logo-deep__text {
  width: 45px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1000px) {
  .title {
    font-size: 2.8rem;
  }
}
/*=========================================  600  ============================================*/
@media only screen and (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
}
/*=========================================  450  ============================================*/
@media only screen and (max-width: 450px) {
  .title {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 1.2rem;
  }
}
/*=========================================  350  ============================================*/
@media only screen and (max-width: 350px) {
  .title {
    font-size: 1.5rem;
  }
}
.text-center {
  text-align: center;
}

.mtb-2 {
  margin: 2rem 0;
}

.ptb-2 {
  padding: 2rem 0;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem;
}

.text-grey {
  color: #aeaeae;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 2rem;
}

.btn-center {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.block {
  display: block;
}

.max-750 {
  max-width: 750px;
}

.text-right {
  text-align: right;
}

.gap-0 {
  gap: 0 !important;
}

.icon-img {
  height: 80px;
  width: auto;
}

.soon {
  margin: 0;
  color: #671c92;
}

.main-section .container__row-flex {
  justify-content: space-between;
}
.main-section .title {
  opacity: 0;
}
.main-section .container__col {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 0;
}

.journey-section {
  max-width: 1920px;
  height: 1500px;
  position: relative;
  overflow: hidden;
}
.journey-section .background-img {
  position: absolute;
  left: 0;
  top: -5px;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
}
.journey-section .container {
  padding-top: 100px;
}

.steps-container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  gap: 40px;
  padding: 1rem 0;
  overflow: hidden;
}
.steps-container__col {
  width: 250px;
  height: 250px;
  padding: 1rem;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}
.steps-container__col:hover .front {
  transform: rotateY(180deg);
}
.steps-container__col:hover .back {
  transform: rotateY(360deg);
}
.steps-container__col__title {
  font-weight: normal;
  position: relative;
  margin: 0;
}
.steps-container__col__text {
  margin: 0;
  font-size: 14px;
}
.steps-container__col__hr {
  height: 1px;
  border: none;
  background-color: #FFFFFF;
  width: 50%;
  margin: 10px 0;
}
.steps-container .front, .steps-container .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  transition: 1s;
  backface-visibility: hidden;
}
.steps-container .back {
  transform: rotateY(180deg);
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 25px;
}
.steps-container .front {
  border: 2px solid #671c92;
  border-radius: 25px;
}

.steps-section .step-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.steps-section .step-wrap .col {
  width: 50%;
  display: flex;
  flex-flow: row wrap;
}
.steps-section .step-wrap .col .step-container {
  border-right: 1px solid #FFFFFF;
}
.steps-section .step-wrap .col-2 .step-container:last-child {
  border-right: none;
}
.steps-section .step-wrap .step-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.steps-section .step-wrap .step-container .number {
  font-size: 3.5rem;
}
.steps-section .step-wrap .step-container .text {
  font-size: 13px;
}
.steps-section .step-wrap .step-container .item {
  min-width: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.services-section__services {
  justify-content: space-between;
}

.picture-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.picture-row .title {
  margin-bottom: 0;
}
.picture-row .sub-title {
  padding: 0;
  max-width: 600px;
}
.picture-row .col {
  max-width: 600px;
}
.picture-row__picture {
  display: block;
  width: 100%;
  max-width: 550px;
  min-height: 370px;
  height: 40vw;
  max-height: 500px;
}
.picture-row__picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.progress-section {
  max-width: 1920px;
  height: 950px;
  overflow: hidden;
}
.progress-section .background-img {
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 102%;
  object-fit: cover;
  z-index: -2;
}
.progress-section__content-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
.progress-section__content {
  width: 60%;
  max-width: 600px;
  min-width: 300px;
  padding-top: 2rem;
}
.progress-section .gradient {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgb(202, 202, 215) 0%, rgb(15, 15, 17) 28%, rgb(6, 7, 14) 88%);
  opacity: 0.5;
  z-index: -1;
}

.badge {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8d100;
  border-radius: 50%;
  color: #000000;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 15px;
  font-size: 15px;
}

.badge-wrap {
  position: relative;
}

.badge-description {
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
}

.journey-stepper {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 1rem auto;
}
.journey-stepper__row {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
.journey-stepper__col {
  width: 50%;
  display: flex;
}
.journey-stepper__step-item {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  gap: 5px;
}
.journey-stepper .sub-title {
  width: 100%;
  line-height: 1;
  text-align: right;
  transform: translateY(-2px);
}
.journey-stepper__col.left-col {
  padding: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.journey-stepper__col.left-col .left-col__container {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.journey-stepper__col.right-col {
  flex-flow: column;
  padding: 1rem 1rem 1rem 2rem;
}
.journey-stepper__col.right-col .logo-container {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
}
.journey-stepper__col.right-col .logo-container::before {
  content: "";
  width: 1rem;
  height: 2px;
  background-color: #FFFFFF;
  display: inline-block;
  position: absolute;
  left: -2rem;
  top: 12px;
}
.journey-stepper__col:last-child {
  border-left: 2px solid #FFFFFF;
}
.journey-stepper .services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}
.journey-stepper .services__item {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.journey-stepper .services__item .wrap {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.journey-stepper .services small {
  text-align: center;
}
.journey-stepper .services__img {
  width: 100%;
  height: auto;
}

.faq-section {
  padding: 2rem 0;
}
.faq-section .layout__title {
  margin-bottom: 1.5rem;
}
.faq-section .dropdown {
  user-select: none;
  overflow: hidden;
  cursor: pointer;
}
.faq-section .dropdown.closed .dropdown-menu-container {
  height: 0;
}
.faq-section .dropdown-icon {
  width: 30px;
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
}
.faq-section .dropdown-menu-container {
  padding-left: 40px;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
}
.faq-section .dropdown-menu .link {
  text-decoration: underline;
  color: #FFFFFF;
}
.faq-section .dropdown-title {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

/*=========================================  MEDIA  ============================================*/
@media only screen and (max-width: 1200px) {
  .journey-section {
    height: 1100px;
  }
  .progress-section {
    height: 680px;
  }
  .progress-section .gradient {
    display: block;
  }
}
@media only screen and (max-width: 900px) {
  .services-section__services {
    justify-content: center;
    flex-flow: column wrap !important;
    align-items: center;
  }
  .services-section__services .container__col {
    min-width: 320px;
  }
  .picture-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .picture-row .col {
    width: 100%;
  }
  .picture-row .title, .picture-row .sub-title, .picture-row p {
    text-align: center;
  }
  .picture-row__picture {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 800px) {
  .main-section .container__row-flex {
    justify-content: center;
  }
  .main-section .container__col {
    align-items: center;
    flex: 1;
  }
  .journey-section {
    height: 740px;
  }
  .journey-section .container {
    padding-top: 0;
  }
  .progress-section {
    height: 500px;
  }
  .progress-section__content {
    padding-top: 0;
  }
  .steps-section .step-wrap {
    gap: 20px;
  }
  .steps-section .step-wrap .col {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }
  .steps-section .step-wrap .col .step-container {
    border-right: 1px solid #FFFFFF;
  }
  .steps-section .step-wrap .col .step-container:last-child {
    border-right: none;
  }
  .steps-section .step-wrap .col-1:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 1px solid #FFFFFF;
  }
  .journey-stepper .services__item .wrap {
    width: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .progress-section {
    height: 300px;
  }
  .main-section .container__row-flex {
    gap: 40px 20px;
    justify-content: center;
  }
  .journey-stepper .sub-title {
    font-size: 1rem;
    transform: translateY(0);
  }
  .journey-stepper .ecosystem-logo {
    width: 100%;
    height: auto;
  }
  .journey-stepper__col.right-col .logo-container::before {
    top: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .steps-section .step-wrap .step-container {
    gap: 5px;
  }
  .steps-section .step-wrap .step-container .number {
    font-size: 3rem;
  }
  .steps-section .step-wrap .step-container .item {
    min-width: 125px;
    gap: 5px;
  }
  .journey-stepper__col.left-col {
    padding: 10px 10px 10px 5px;
    gap: 10px;
  }
  .journey-stepper__col.left-col .left-col__container {
    gap: 10px;
  }
  .journey-stepper__col.right-col {
    padding: 10px 5px 10px 20px;
  }
  .journey-stepper__col.right-col .logo-container::before {
    width: 10px;
    left: -20px;
  }
  .journey-stepper .services__item .wrap {
    width: 60px;
  }
  .badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .badge-description {
    transform: translateX(-65%);
  }
}
@media only screen and (max-width: 350px) {
  .journey-stepper .sub-title {
    font-size: 15px;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sky-background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sky-background circle {
  opacity: 0;
  animation: fade 2s alternate infinite ease-in-out;
  fill: #FFFFFF;
  stroke: #671c92;
  stroke-width: 1px;
}

body {
  background-color: #000000;
}

a {
  display: table;
}

.layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 170px;
  overflow-x: hidden;
  position: relative;
}

.container-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 30px;
  color: #FFFFFF;
}
.container__row {
  width: 100%;
}
.container__row-flex {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.container__col__text {
  margin: 0;
}
.container__col__title {
  margin: 0.5rem 0;
}

/*=========================================  MEDIA  ============================================*/
@media only screen and (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
}