:root{
  --navy: #201E59;
    --orange: #9b7ff7;
}
.orange{
    color: var(--orange);
}
.navy{
    color:  var(--navy);
}
html{
    font-size: 62.5% ;
}
a{
    color: unset;
    text-decoration: none;
}
p{
  margin-bottom: 0;
  margin-top: 0;
}
/* Fonts */
.sofiaLight,
.sofiaMedium,
.sofiaRegular,
.sofiaBold {
    font-style: normal;
    font-family: sofia-pro, sans-serif
}
.sofiaLight {
    font-weight: 200
}

.sofiaRegular {
    font-weight: 400
}

.sofiaMedium {
    font-weight: 500
}

.sofiaBold {
    font-weight: 700;
    font-style: bold
}

.ralewayThin {
    font-family: raleway, sans-serif;
    font-weight: 100;
    font-style: normal;
}
.ralewayRegular {
    font-family: raleway, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.ralewayBold {
    font-family: raleway, sans-serif;
    font-weight: 700;
    font-style: normal;
}
/* Font Size */
.fz-14{
    font-size: 1.4rem;
}
.fz-16{
    font-size: 1.6rem;
}
.fz-18{
    font-size: 1.8rem;
}
.fz-20{
    font-size: 2rem;
}
.fz-22{
    font-size: 2.2rem;
}
.fz-24{
    font-size: 2.4rem;
}
.fz-30{
    font-size: 3rem;
}
.fz-50{
    font-size: 5rem;
}
.fz-70{
    font-size: 7rem;
}

#loader{
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        background: white;
        z-index: 101;
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--navy);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  