@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

li {
  list-style-type: none;
}

.error,
.errorMessage {
  color: red;
  margin-left: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}

.content {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

@-webkit-keyframes bottomUp {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  80% {
    opacity: 0.8;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bottomUp {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  80% {
    opacity: 0.8;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes bottomUpVar {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bottomUpVar {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    opacity: 0.8;
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    opacity: 0.8;
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes inFromTop {
  0% {
    opacity: 0;
    transform: translateY(-5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes inFromTop {
  0% {
    opacity: 0;
    transform: translateY(-5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
.btn {
  border: none;
  border-radius: 25px;
  padding: 16px 34px;
  font-size: 18px;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  font-weight: 500;
  outline: none;
  filter: drop-shadow(0px 4px 4px rgba(250, 186, 186, 0.15));
}
.btn:hover {
  cursor: pointer;
  transform: scale(1.05);
  transform-origin: 50% 50%;
}
.btn:after {
  outline: none;
}
.btn img {
  height: 1rem;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  color: #ffffff;
  background-color: #ff8b00;
}

.btn-primary-reverse {
  color: #ff8b00;
  background-color: #ffffff;
}

.btn-gradient {
  color: #ffffff;
  background: rgb(202, 240, 255);
  background: linear-gradient(90deg, rgb(202, 240, 255) 0%, rgb(103, 192, 227) 50%, rgb(0, 153, 214) 100%);
}

.btn-secondary {
  background-color: #0099d6;
  color: #ffffff;
}

.btn-icon {
  background-color: transparent;
  padding: 0;
}
.form__group input{
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #94A3B8;

}
.ea-btn {
  width: 300px;
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;

  /* border-radius: 5px; */
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #3B82F6;
}
@media (max-width: 360px) {
  .ea-btn {
    width: 100%;
  }
}

.form {
  display: block;
}
.form__group {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .form__group {
    margin-bottom: 0px;
  }
}
.form__group:not(:last-child) {
  margin-bottom: 1rem;
}
.form__textarea, .form__input, .form__select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  color: #ffffff;
  width: 100%;
  font-size: 14px;
  line-height: 16.4px;
  font-family: inherit;
  padding: 12px 1px;
  font-weight: 400;
  background-color: transparent;
  border: none;
  border-bottom: 1.5px solid #ffffff;
  display: block;
}
.form__textarea:focus, .form__input:focus, .form__select:focus {
  outline: none;
  background-color: transparent;
}
.form__textarea::-webkit-input-placeholder, .form__input::-webkit-input-placeholder, .form__select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.form__textarea {
  font-size: 1rem;
  line-height: 1.5rem;
}
.form__label {
  display: block;
  position: absolute;
  font-size: 0.75rem;
  left: 1rem;
  z-index: 1;
  top: -1.5rem;
  color: #000000;
}
.form__input:-moz-placeholder-shown ~ .form__label, .form__textarea:-moz-placeholder-shown ~ .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4rem);
}
.form__input:-ms-input-placeholder ~ .form__label, .form__textarea:-ms-input-placeholder ~ .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4rem);
}
.form__input:placeholder-shown ~ .form__label, .form__textarea:placeholder-shown ~ .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4rem);
}
.form__radio-group {
  width: 48%;
  display: inline-block;
}
.form__radio-label {
  font-size: 14rem;
  cursor: pointer;
  position: relative;
}
.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #ff8b00;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff8b00;
}
.form__checkbox-group {
  display: inline-block;
  cursor: pointer;
}
.form__checkbox-label {
  cursor: pointer;
  position: relative;
}
.form__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.form__row .form__group {
  width: 47.5%;
}
.form__text-editor {
  width: 100%;
}

.append__btn,
.prepend-btn {
  position: relative;
}

.append__input {
  width: 100%;
}

.prepend__input {
  width: 100%;
  padding-left: 3rem;
}

.append__btn-icon {
  top: 0;
  right: 0;
  min-width: 3rem;
  min-height: 1.2rem;
  position: absolute;
  height: 1.5rem;
  margin-top: 1.25rem;
}
.prepend__btn input {
  padding-left: 3rem;
}

.prepend__btn-icon {
  top: 0;
  left: 0;
  min-width: 3rem;
  min-height: 1.2rem;
  position: absolute;
  height: 1.5rem;
  margin-top: 0.5rem;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
}
.nav a.bare:hover {
  color: #ff8b00;
}
.nav-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 22;
  min-height: 83px;
  background-color: #ffffff;
  padding: 10px 40px 10px;
  box-shadow: 0px 1px 0px #e5e9f2;
}
@media (max-width: 450px) {
  .nav-container {
    padding: 10px 20px 8px;
  }
}
.nav__signin_btn {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  width: 120px;
  height: 36px;
  padding: 4px;
  background-color: #3B82F6;
}
.nav__buttons {
  display: none;
}
@media (max-width: 765px) {
  .nav__buttons {
    display: block;
  }
}
.nav__logo img {
  width: 98px;
  height: 24px;
}
@media (max-width: 600px) {
  .nav__logo img {
    width: 98px;
    margin-top: 5px;
    margin-left: -15px;
  }
}
@media (max-width: 450px) {
  .nav__logo img {
    width: 98px;
    margin: 10px -6px;
  }
}
.nav__list {
  display: flex;
  align-items: center;
}
@media (max-width: 765px) {
  .nav__list {
    display: none;
  }
}
.nav__list--item {
  display: inline-block;
  padding: 0 1rem;
}
.nav__outer.hide-nav {
  display: none;
}
.nav__outer {
  display: none;
  background-color: #ffffff;
}
@media (max-width: 765px) {
  .nav__outer {
    display: block;
    -webkit-animation: inFromTop 0.1s ease-in;
            animation: inFromTop 0.1s ease-in;
  }
}
.nav__outer .nav__list {
  display: block;
  text-align: center;
  margin: 2rem 0 1rem;
  justify-content: center;
}
.nav__outer .nav__list--item {
  margin: 60px 0;
  display: block;
  color: #10243e;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.socials {
  display: flex;
  align-self: flex-end;
  justify-content: space-between;
  /* align-items: center; */
  width: 400px;
  margin: auto;
}
@media (max-width: 450px) {
  .socials {
    align-self: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.socials a {
  margin-left: 15px;
}
@media (max-width: 450px) {
  .socials a {
    margin-left: 0px;
    margin-right: 15px;
  }
}
@media (max-width: 360px) {
  .socials a {
    margin-left: 0px;
    margin-right: 15px;
  }
}

#footer-ul li {
  display: inline;
  margin-bottom: 15px;
}

#footer-ul li:last-child::before {
  content: ". ";
}

.footer {
  width: auto;
  height: 132px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
@media (max-width: 450px) {
  .footer {
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-container {
  background-color: rgba(230, 247, 254, 0.5019607843);
}
@media (max-width: 450px) {
  .footer-container {
    padding-top: 25px;
  }
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 450px) {
  .footer-left {
    align-items: flex-start;
  }
}
.footer-left p {
  color: #979797;
  margin-bottom: 15px;
}
@media (max-width: 450px) {
  .footer-left img {
    margin-bottom: 16px;
  }
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
}
@media (max-width: 450px) {
  .footer-right {
    align-items: flex-start;
  }
}
.footer-right li {
  color: #ff8b00;
}
.defi-box{
  /* width: 900px; */
  margin: auto;
  font-size: 32px;
  text-align: center;
  font-weight: 700;
}

.home {
  width: 100%;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.home input::-webkit-outer-spin-button,
.home input::-webkit-inner-spin-button {
  /* -webkit-appearance: none; */
  margin: 0;
}
.home input[type=number] {
  -moz-appearance: textfield;
}
.home .ball-loader {
  width: 100%;
  height: 100%;
  background-color: #e2e8f0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0.9;
}
.home .ball-loader-ball {
  will-change: transform;
  height: 27.2727272727px;
  width: 27.2727272727px;
  border-radius: 50%;
  background-color: lightBlue;
  display: inline-block;
  -webkit-animation: grow 1s ease-in-out infinite alternate;
          animation: grow 1s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.home .ball-loader-ball.ball1 {
  margin-right: 9.0909090909px;
}
.home .ball-loader-ball.ball2 {
  margin-right: 9.0909090909px;
  -webkit-animation-delay: -0.33s;
          animation-delay: -0.33s;
}
.home .ball-loader-ball.ball3 {
  -webkit-animation-delay: -0.66s;
          animation-delay: -0.66s;
}
@-webkit-keyframes grow {
  0% {
    transform: scale(1);
    background-color: lightBlue;
  }
  50% {
    background-color: pink;
  }
  100% {
    transform: scale(0.2);
    background-color: green;
  }
}
@keyframes grow {
  0% {
    transform: scale(1);
    background-color: lightBlue;
  }
  50% {
    background-color: pink;
  }
  100% {
    transform: scale(0.2);
    background-color: green;
  }
}
.home header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.home .banner {
  position: relative;
  padding: 15px 40px 15px;
  width: 100%;
  height: 70px;
  left: 0px;
  top: 0px;
  background-color: #02373b;
  color: #ebfdfe;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.home .banner-text-container {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .banner-download-btn {
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  width: 106px;
  height: 36px;
  background-color: #fff;
  color: #0f172a;
}
.home .banner-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.home button.close {
  position: absolute;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  opacity: 0.5;
  float: right;
  right: 3%;
  z-index: 10;
}
.home .hero {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  border: none;
}
.home .hero .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 450px) {
  .home .hero .content {
    flex-direction: column;
  }
}
.home .hero-image {
  top: 0;
  display: block;
  width: 30%;
  max-height: 750px;
  z-index: 2;
}
@media (max-width: 1000px) {
  .home .hero-image {
    width: 125%;
    align-self: flex-end;
  }
}
@media (max-width: 450px) {
  .home .hero-image {
    /* width: 100%; */
    display: none;
  }
}
.home .hero-image-sms {
  height: 60%;
  /* width: 10%; */
  display: block;
}
.home .hero-main {
  position: relative;
  z-index: 3;
  width: 50%;
}
@media only screen and (min-device-width: 1000px) and (max-device-width: 1400px) {
  .home .hero-main {
    padding: 10px 20px 20px;
  }
}
@media (max-width: 1000px) {
  .home .hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 100px 40px 0px 40px;
  }
}
@media (max-width: 765px) {
  .home .hero-main {
    padding: 100px 40px 40px;
    max-width: unset;
  }
}
@media (max-width: 600px) {
  .home .hero-main {
    padding: 100px 20px 40px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .home .hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 0px;
  }
}
.home .hero__pretext {
  font-weight: 500;
  font-size: 18px;
  line-height: 42px;
  color: #ff8b00;
}
@media (max-width: 450px) {
  .home .hero__pretext {
    text-align: left;
  }
}
.home .hero__text {
  font-family: "DM Sans", sans-serif;
}
.home .hero__text--head {
  font-size: 70px;
  font-weight: bold;
  line-height: 120%;
}
@media only screen and (min-device-width: 1000px) and (max-device-width: 1400px) {
  .home .hero__text--head {
    font-size: 50px;
  }
}
@media (max-width: 765px) {
  .home .hero__text--head {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .home .hero__text--head {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .home .hero__text--head {
    font-size: 40px;
    text-align: left;
  }
}
@media (max-width: 450px) {
  .home .hero__text--head {
    text-align: left;
  }
}
.home .hero__text--text {
  margin: 10px 0 30px;
  line-height: 27px;
  font-size: 19px;
  font-weight: 400;
  /* max-width: 512px; */
  color: #05818a;
}
@media (max-width: 1000px) {
  .home .hero__text--text {
    font-size: 18px;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .home .hero__text--text {
    text-align: left;
    max-width: unset;
    font-size: 18px;
    line-height: 34px;
  }
}
.home .hero__apps {
  margin: 40px 0 0;
}
.home .hero__apps--images {
  margin: 18px 0;
}
.home .hero__apps--images img {
  max-width: 40vw;
}
.home .hero__apps--images img:not(last-child) {
  margin-right: 0.5rem;
}
.home .hero__apps--text {
  text-transform: uppercase;
  color: #ff8b00;
  letter-spacing: 0.2rem;
  font-weight: 600;
  font-size: 13px;
}
.home .hero__apps--support {
  color: #999999;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 12px;
  text-decoration: underline;
  text-transform: uppercase;
  width: 100%;
}
.home .hero-container {
  /* padding-top: 150px; */
  background-color: #dcf3ff;
  padding-left: 50px;
  padding-right: 0px;
}
@media (max-width: 450px) {
  .home .hero-container {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 123px;
  }
}
@media (max-width: 1000px) {
  .home .hero-container {
    padding-top: 110px;
  }
}
.home .info {
  margin: 100px 60px;
}
.home .info__head {
  text-align: center;
}
.home .info__head--text {
  font-size: 40px;
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 600px) {
  .home .info__head--text {
    font-size: 30px;
    line-height: 73.5px;
  }
}
.home .info__cards {
  display: flex;
  margin: 5px auto;
  width: 100%;
  max-width: 1500px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.home .info__card {
  border-radius: 20px;
  padding: 15px;
  width: 30%;
  /* background-color: #ebf9ff; */
  min-width: 290px;
  text-align: left;
  margin: 10px;
}
.home .info__card--image {
  margin: 22px 0;
}
.home .info__card--head {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: #ff8b00;
  margin-bottom: 22px;
  letter-spacing: 0.13rem;
}
.home .info__card--text {
  text-align: left;
  font-size: 14px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: #10243e;
}
.home .pay-crypto-container {
  position: relative;
  background-color: #ebf9ff;
  padding-top: 40px;
  padding-bottom: 50px;
}
.home .pay-crypto-image {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-right: 40px;
  right: -5px;
  top: 50px;
}
@media (max-width: 1000px) {
  .home .pay-crypto-image {
    width: 50%;
    position: relative;
    top: 0px;
    margin-right: 0px;
    align-items: center;
  }
}
@media (max-width: 765px) {
  .home .pay-crypto-image {
    width: 80%;
    position: relative;
    margin-right: 0px;
    padding-left: 50px;
    right: 0px;
    top: 0px;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .home .pay-crypto-image {
    width: 100%;
    position: relative;
    margin-right: 0px;
    right: 0px;
    top: 0px;
    align-items: center;
    justify-content: center;
  }
}
.home .pay-crypto-image img {
  width: 80%;
  max-width: 50%;
}
@media (max-width: 1000px) {
  .home .pay-crypto-image img {
    max-width: 100%;
    width: 90%;
  }
}
@media (max-width: 450px) {
  .home .pay-crypto-image img {
    margin-left: 37px;
    width: 90%;
    max-width: 100%;
  }
}
.home .pay-crypto {
  margin: 40px 40px;
  background-color: #00668f;
  border-radius: 15px;
  padding: 20px 0px 0px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 765px) {
  .home .pay-crypto {
    padding: 40px 20px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .home .pay-crypto {
    margin: 40px 20px;
  }
}
.home .pay-crypto__text {
  width: 50%;
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 450px) {
  .home .pay-crypto__text {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 765px) {
  .home .pay-crypto__text {
    width: 100%;
  }
}
.home .pay-crypto__text div,
.home .pay-crypto__text h2 {
  margin-bottom: 20px;
}
.home .pay-crypto__text--info {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: white;
  letter-spacing: 0.13rem;
  font-family: "Inter", sans-serif;
}
.home .pay-crypto__text--head {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  line-height: 130%;
  letter-spacing: -0.14rem;
  color: #002c3d;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 765px) {
  .home .pay-crypto__text--head {
    font-size: 31px;
    line-height: 40.3px;
  }
}
.home .pay-crypto__text--text {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 765px) {
  .home .pay-crypto__text--text {
    font-size: 14.8px;
    line-height: 28.8px;
  }
}
.home .pay-crypto__image {
  width: 50%;
}
@media (max-width: 765px) {
  .home .pay-crypto__image {
    width: 100%;
  }
}
.home .pay-crypto__image--img {
  margin: 0;
  max-height: 500px;
  max-width: 100%;
}
@media (max-width: 765px) {
  .home .pay-crypto__image--img {
    margin: 40px 0px;
  }
}
.home .pay-crypto-alt {
  background-color: #ffffff;
}
.home .pay-crypto-alt .pay-crypto__text {
  color: #000000;
}
.home .denomi {
  background-color: #fff7f5;
  padding: 40px 100px;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .home .denomi {
    padding: 40px 25px;
  }
}
@media (max-width: 450px) {
  .home .denomi {
    padding: 40px 10px;
  }
}
.home .denomi__images {
  min-width: 30%;
  text-align: right;
  margin-right: 40px;
}
.home .denomi__images--img {
  width: 100%;
}
@media (max-width: 1000px) {
  .home .denomi__images {
    min-width: 25%;
    text-align: left;
  }
}
@media (max-width: 765px) {
  .home .denomi__images {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    opacity: 0.15;
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}
.home .denomi__text {
  width: 70%;
  padding: 60px 0;
  text-align: left;
}
@media (max-width: 1000px) {
  .home .denomi__text {
    max-width: 70%;
    padding: 0 0;
  }
}
@media (max-width: 765px) {
  .home .denomi__text {
    width: 100%;
    min-width: unset;
    max-width: unset;
    text-align: center;
    padding: 60px 0;
  }
}
.home .denomi__text--info {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2px;
  color: #ff8b00;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .home .denomi__text--info {
    text-align: left;
  }
}
.home .denomi__text--head {
  margin: 20px 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.5px;
  color: #10243e;
}
@media (max-width: 450px) {
  .home .denomi__text--head {
    text-align: left;
  }
}
.home .denomi__text--body {
  font-size: 17px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 2px;
  color: #10243e;
}
@media (max-width: 600px) {
  .home .denomi__text--body {
    font-size: 14px;
    line-height: 33px;
  }
}
@media (max-width: 450px) {
  .home .denomi__text--body {
    text-align: left;
  }
}
.home .crypto {
  margin: 80px auto 40px;
  text-align: center;
}
.home .crypto__head--pre {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 2px;
  color: #ff8b00;
  text-transform: uppercase;
}
.home .crypto__head--main {
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.2px;
  margin: 18px auto;
}
@media (max-width: 600px) {
  .home .crypto__head--main {
    font-size: 27px;
    line-height: 36px;
  }
}
.home .crypto__head--text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #5a7184;
}
.home .crypto__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.home .crypto__card {
  width: 90%;
  max-width: 340px;
  height: 367px;
  margin: 20px;
  position: relative;
  border-radius: 16px;
}
.home .crypto__card--image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.home .crypto__card--image-img {
  width: 100%;
  height: 100%;
}
.home .crypto__card--text {
  font-size: 22.5px;
  font-weight: 400;
  line-height: 33.3px;
  color: #ffffff;
  margin: 36px 27px;
  text-align: center;
}
.home .crypto__card--text-container {
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(0, 153, 214) 100%);
}
@media (max-width: 600px) {
  .home .crypto__card--text {
    font-size: 16px;
    line-height: 25px;
  }
}
.home .join {
  background: rgb(255, 139, 0);
  background: linear-gradient(135deg, rgb(255, 139, 0) 0%, rgb(255, 193, 119) 100%);
  position: relative;
  color: #ffffff;
  text-align: center;
}
.home .join-bg {
  padding: 40px 10px;
  background: url("../icons/form-bg1.png") left top no-repeat, url("../icons/form-bg2.png") right bottom no-repeat;
  background-size: 25% auto;
}
@media (max-width: 600px) {
  .home .join-bg {
    background-size: 50% auto;
  }
}
.home .join-items {
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
}
.home .join-head {
  font-size: 36px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -1.5px;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .home .join-head {
    font-size: 27px;
    line-height: 41.25px;
  }
}
.home .join-hr {
  width: 5%;
  height: 5px;
  background-color: #ffffff;
  margin: 5px auto 5px;
  border-radius: 5px;
}
.home .join-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
}
.home .join-form {
  margin-top: 20px;
}
.home .join-form .btn {
  margin-top: 20px;
}
.home .joinpoket {
  background-color: #e5f8ff;
  display: flex;
  align-items: flex-start;
  padding-top: 150px;
  justify-content: center;
  overflow: hidden;
}
.home .joinpoket-left {
  max-width: 50%;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: right;
  background-image: url("../images/eclipse.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 70%;
}
.home .joinpoket-left img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home .joinpoket-right {
  padding-top: 50px;
  padding-left: 20px;
  max-width: 40%;
  min-width: 40%;
}
.home .joinpoket-right h2 {
  font-size: 40px;
  line-height: 1.25em;
}
.home .joinpoket-right p {
  font-size: 21px;
  font-weight: 300;
  margin-top: 30px;
  line-height: 1.5em;
}
.home .joinpoket-right form {
  width: 70%;
  min-width: 400px;
  margin: 40px 0px;
  position: relative;
}
.home .joinpoket-right form input {
  font-family: "Inter", sans-serif;
  border: 0;
  padding: 18px 20px;
  margin: 10px 0px;
  border-radius: 13px;
  font-size: 16px;
  display: block;
  font-weight: 300;
  width: 100%;
  outline: none;
  margin-bottom: 11px;
}
.home .joinpoket-right form input:focus {
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.04);
}
.home .joinpoket-right form input::-webkit-input-placeholder {
  color: #9b9b9b;
  font-weight: 300;
}
.home .joinpoket-right form button {
  position: absolute;
  right: 4px;
  bottom: -2px;
  background: transparent;
  border: 0;
  height: 53px;
  width: 53px;
  background-size: contain;
  transition: all 0.4s ease;
}
.home .joinpoket-right form button img {
  width: 100%;
}
.home .joinpoket-right form button.isLoading {
  transform: scale(0.7);
}
.home .joinpoket-right form button.isLoading:after {
  background-color: #ff8b00;
  background-image: url("../images/spinner.gif");
  background-size: 30px;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center;
  content: "";
  width: 90%;
  height: 90%;
  left: 0;
  right: 0 !important;
  top: -1px;
  margin: 0 auto;
  border-radius: 100%;
}
.home .joinpoket-right form button:hover {
  right: -1px;
  cursor: pointer;
}
.home .joinpoket-right form button.isLoading:hover {
  cursor: not-allowed !important;
  right: 4px !important;
}
@media (max-width: 450px) {
  .home .joinpoket-right {
    padding-left: 0px;
    min-width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 765px) {
  .home .joinpoket {
    flex-direction: column-reverse;
    padding: 50px 40px 0px;
  }
  .home .joinpoket-left {
    max-width: unset;
    max-height: unset;
    display: flex;
    justify-content: right;
  }
  .home .joinpoket-left img {
    height: unset;
    width: 100%;
  }
  .home .joinpoket-right {
    max-width: unset;
    min-width: unset;
    width: 100%;
    padding-top: 40px;
  }
  .home .joinpoket-right h2 {
    font-size: 36px;
    line-height: 0.9em;
  }
  .home .joinpoket-right p {
    font-size: 17px;
    font-weight: 300;
    margin-top: 30px;
    line-height: 1.5em;
  }
  .home .joinpoket-right form {
    width: 94%;
    min-width: unset;
  }
}
.home .pass-field {
  position: relative;
}
.home #togglePassword {
  position: absolute;
}
.home .passwordCheck {
  display: flex;
  flex-direction: column;
}
.home .verifyPassword {
  margin-bottom: 5px;
  font-size: 14px;
  opacity: 0.6;
}
.home .verifiedPassword {
  margin-bottom: 5px;
  font-size: 14px;
  opacity: 0.9;
}
.home .verifiedPassword::before {
  content: "✓";
  font-size: 18px;
  margin-right: 5px;
  opacity: 0.7;
  color: green;
}
.home .verifyPassword::before {
  content: "⊚";
  font-size: 18px;
  margin-right: 5px;
  opacity: 0.5;
}
.home .reg_form {
  background-color: #ebf9ff;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.home .reg_form .switch {
  width: 90%;
  margin-top: 20px;
  max-width: 280px;
  height: 43px;
  border-radius: 40px;
  z-index: 9;
  box-shadow: inset -1px 2px 6px rgba(0, 0, 0, 0.06);
  display: flex;
}
@media (max-width: 450px) {
  .home .reg_form .switch span {
    display: none;
  }
}
.home .reg_form .switch a {
  color: rgba(0, 0, 0, 0.7);
  min-width: 50%;
  padding: 13px 16px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}
.home .reg_form .switch a.current {
  box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.06);
  background: #3B82F6;
  color: white;
  border-radius: inherit;
}
.home .reg_form .switch a.b_current {
  box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.06);
  background: #ff8f1f;
  color: white;
  border-radius: inherit;
}
.home .reg_form .switch a.business {
  color: #ff8b00;
}
.home .reg_form .switch.personal {
  background-color: white;
}
.home .reg_form .switch.business {
  background-color: white;
}
@media (max-width: 360px) {
  .home .reg_form .pic_grouped {
    width: 90%;
  }
}
.home .reg_form h2 {
  color: #002c3d;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1000px) {
  .home .reg_form h2 {
    text-align: center;
  }
}
.home .reg_form p {
  font-size: 15px;
  color: #002c3d;
  line-height: 22.5px;
  font-weight: 500;
  margin-top: 20px;
}
.home .reg_form form {
  width: 350px;
  min-width: 400px;
  margin: 30px 0px;
  position: relative;
}
.home .reg_form form label {
  color: #002c3d;
}
.home .reg_form form input {
  font-family: "Inter", sans-serif;
  border: 1.5px solid #e2e8f0;
  padding: 18px 20px;
  margin: 10px 0px;
  border-radius: 5px;
  font-size: 16px;
  display: block;
  font-weight: 300;
  width: 100%;
  outline: none;
  margin-bottom: 11px;
}
.home .reg_form form input:focus {
  border: 1.5px solid #0099d6;
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.04);
}
.home .reg_form form input::-webkit-input-placeholder {
  color: #9b9b9b;
  font-weight: 300;
}
.home .reg_form form button {
  width: 100%;
  height: 60px;
  border: 0px;
  margin-top: 25px;
  background-color: #3B82F6;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.home .reg_form form button.isLoading {
  transform: scale(1);
}
.home .reg_form form button.isLoading:after {
  background-color: transparent;
  height: 60px;
  background-image: url("../images/spinner.gif");
  background-size: 30px;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  right: 0 !important;
  margin: 0 auto;
  border-radius: 100%;
}
.home .reg_form form button:hover {
  right: -1px;
  cursor: pointer;
}
.home .reg_form form button.isLoading:hover {
  cursor: not-allowed !important;
  right: 4px !important;
}
@media (max-width: 450px) {
  .home .reg_form form {
    padding: 20px;
  }
}
@media (max-width: 360px) {
  .home .reg_form form {
    width: 100%;
    padding: 0px;
    min-width: 100px;
  }
}
@media (max-width: 450px) {
  .home .reg_form {
    padding-top: 100px;
    padding: 20px;
  }
}
@media (max-width: 765px) {
  .fsocialsrow{
    width: auto !important;
  }
  .socials{
    width: auto !important;
  }

  .home {
    flex-direction: column-reverse;
  }
  .home-left {
    max-width: unset;
    max-height: unset;
    display: flex;
    justify-content: right;
  }
  .home-left img {
    height: unset;
    width: 100%;
  }
  .home-right {
    max-width: unset;
    min-width: unset;
    width: 100%;
    padding-top: 40px;
  }
  .home-right h2 {
    font-size: 36px;
    line-height: 0.9em;
  }
  .home-right p {
    font-size: 17px;
    font-weight: 300;
    margin-top: 30px;
    line-height: 1.5em;
  }
  .home-right form {
    width: 94%;
    min-width: unset;
  }
}

.socials-banner{
  background: #002C3D;
  max-width: 1400px;
  margin: auto;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
}
.fsocialsrow{
margin: auto;
width: 800px;
text-align: center;
padding-bottom: 50px;
}
.fsocials{
font-size: 2rem;
color: #FFFFFF;
font-weight: 600;
margin-top: 10px;
}
.home .download-poket-app {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding-top: 100px;
}
.home .download-poket-app-container {
  background-color: #f8fafc;
  width: 100%;
}
.home .download-poket-app-left {
  min-width: 50%;
  max-width: 50%;
}
.home .download-poket-app-left img {
  bottom: 0px;
}
@media (max-width: 450px) {
  .home .download-poket-app {
    padding-top: 40px;

  }
  .fsocials{
    font-size: 1rem;
  }
  .bynimg{
    display: none;
  }
  .home .download-poket-app-left {
    display: block;
  }
}

@media only screen and (min-device-width: 1000px) and (max-device-width: 1400px) {
  .home .download-poket-app-left img {
    width: 100%;
  }
}
.home .download-poket-app-right {
  display: block;
  padding-left: 20px;
  /* max-width: 50%; */
  min-width: 50%;
}
.home .download-poket-app-right h2 {
  white-space: nowrap;
}
.home .store-icons-qr-code {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* margin-top: 20px; */
}
.home .store-icons-qr-code ul {
  margin-right: 30px;
}
.home #google-play-icon {
  margin-bottom: 10px;
  cursor: pointer;
}
.home #app-store-icon {
  margin-top: 10px;
  cursor: pointer;
}
.home .stores {
  opacity: 0.2;
  border-left: 3px solid #E6E6E6;
padding: 10px;
}
.home .store-active,
.home .stores:hover {
  opacity: 1;
  border-left: 3px solid #3B82F6;
}
.home .download-now-text {
  color: #3B82F6;
  font-size: 14px;
  font-weight: 400;
}
.home .beyond_borders {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* padding-top: 80px; */
}
@media (max-width: 1000px) {
  .home .beyond_borders {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 765px) {
  .home .beyond_borders img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .home .beyond_borders img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .home .beyond_borders {
    flex-direction: column-reverse;
  }
  .home .beyond_borders img {
    width: 100%;
  }
  .home .beyond_borders-left {
    padding: 20px;
    text-align: center;
  }
}
.home .beyond_borders-container {
  background-color: #f8fafc;
}
.home .beyond_borders-left {
  padding: 40px;
}
.home .beyond_borders-left h2 {
  white-space: nowrap;
}
@media (max-width: 450px) {
  .home .beyond_borders-left h2 {
    text-align: left;
  }
  .home .beyond_borders-left p {
    text-align: left;
  }
}

@media (max-width: 450px) {
  .home .beyond_borders-left {
    /* padding-left: 20px; */
    padding-bottom: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.home .beyond_borders-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50%;
  max-width: 50%;
}
.home .beyond_borders-right img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-device-width: 1000px) and (max-device-width: 1400px) {
  .home .beyond_borders-right img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .home .beyond_borders-right img {
    width: 160%;
  }
}
.home .create_pwd {
  position: fixed;
  top: 0;
  z-index: 99;
  display: none;
}
.home .create_pwd-bg {
  width: 100%;
  height: 100%;
  background: rgba(212, 212, 212, 0.9);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.home .create_pwd-main {
  width: 430px;
  background-color: #fff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 450px) {
  .home .create_pwd-main {
    width: 90%;
  }
}
.home .create_pwd-main h2 {
  text-align: left;
  margin: 0px 0px 25px;
  font-weight: 700;
  color: #002c3d;
}
.home .create_pwd-main p {
  color: #10243e;
  font-weight: 300;
  line-height: 1.8em;
  margin-bottom: 30px;
  font-size: 15.3px;
}
.home .create_pwd-main p span {
  color: #0099d6;
}
.home .create_pwd-main a {
  background: #0099d6;
  color: #fff;
  padding: 14px 60px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.home .create_pwd-main .create-pwd-input {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  padding: 5px;
  border: 1px solid grey;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .create_pwd-main .create-pwd-input input {
  outline: none;
  text-indent: 10px;
  border: 0px;
  height: 36px;
  width: 100%;
}
.home .create_pwd-main button {
  background-color: #0099d6;
  margin-top: 20px;
  height: 48px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  width: 100%;
  border: 0px;
}
.home .verify_otp {
  position: fixed;
  top: 0;
  z-index: 99;
  display: none;
}
.home .verify_otp-bg {
  width: 100%;
  height: 100%;
  background: rgba(212, 212, 212, 0.9);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.home .verify_otp-main {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0px 108px;
  background-color: #fff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  top: 70px;
  z-index: 4;
  padding: 0px 30px 100px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 450px) {
  .home .verify_otp-main {
    width: 90%;
  }
}
.home .verify_otp-main h2 {
  text-align: left;
  margin: 0px 0px 25px;
  font-weight: 700;
  color: #002c3d;
}
.home .verify_otp-main p {
  color: #10243e;
  font-weight: 300;
  line-height: 1.8em;
  margin-bottom: 30px;
  font-size: 15.3px;
}
.home .verify_otp-main p span {
  color: #0099d6;
}
.home .verify_otp-main a {
  background: #0099d6;
  color: #fff;
  padding: 14px 60px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.home .verify_otp-main .verify-otp-input {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  padding: 5px;
  border: 1px solid grey;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .verify_otp-main .verify-otp-input input {
  outline: none;
  text-indent: 10px;
  border: 0px;
  height: 36px;
  width: 100%;
}
.home .verify_otp-main button {
  background-color: #0099d6;
  margin-top: 20px;
  height: 48px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  width: 100%;
  border: 0px;
}
.home .form-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(229, 229, 229, 0.8);
  z-index: 10;
  display: none;
}
.home .form-modal .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  width: 100%;
  max-width: 352px;
  padding: 48px 1rem;
  font-size: 24px;
  line-height: 125%;
  color: #10243e;
}
.home .form-modal .modal-item {
  display: block;
  position: relative;
}
.home .form-modal .modal-item-image {
  margin-top: 27px;
}
.home .form-modal .modal-item-image-img {
  height: 50px;
  width: auto;
}
.home .form-modal .modal-item-text-small {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #10243e;
}
.home .form-modal.show-modal {
  display: block;
}
.home a[class=connect-link]:target ~ #contact {
  transform: translateY(0px);
}
.home #banner-desktop {
  display: flex;
}
.home #banner-mobile {
  display: none;
}
@media screen and (max-width: 765px) {
  .home #banner-desktop {
    display: none;
  }
  .home #banner-mobile {
    display: flex;
  }
  .home #download-poket-image-container {
    display: none;
  }
  .home .download-poket-app-right {
    padding: 0px 50px 0px 20px;
  }
}
@media screen and (min-width: 450px) and (max-width: 1044px) {
  .home .hero-image {
    display: none;
  }
}
.home #reg_form_description {
  width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 450px) {
  .home #reg_form_description {
    width: 100%;
  }
}

.privacy_policy {
  font-family: "Montserrat", sans-serif;
  padding: 40px;
  padding-top: 75px;
  margin-top: 90px;
  width: 100%;
  /*
  #TOC li {
      list-style: disc;
  }
  */
  /*
  ul.task-list {
      list-style: none;
  }
  */
}
.privacy_policy__container {
  width: 100%;
  display: flex;
}
@media (max-width: 850px) {
  .privacy_policy__container {
    flex-direction: column-reverse;
  }
}
.privacy_policy .policy_content {
  padding-top: 16px;
  width: 65%;
  margin-right: 5%;
}
@media (max-width: 850px) {
  .privacy_policy .policy_content {
    padding-top: 0px;
    width: 100%;
    margin-right: 0%;
  }
}
.privacy_policy .table_of_content {
  width: 30%;
  margin-top: 10px;
  position: fixed;
  right: 40px;
  bottom: 160px;
}
.privacy_policy .table_of_content__items {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.privacy_policy .table_of_content__active_item {
  font-weight: 600;
}
@media (max-width: 850px) {
  .privacy_policy .table_of_content {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
  }
}
.privacy_policy html {
  line-height: 1.5;
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #1a1a1a;
  background-color: #fdfdfd;
}
.privacy_policy body {
  margin: 0 auto;
  max-width: 36em;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}
@media (max-width: 600px) {
  .privacy_policy {
    padding: 15px;
    padding-top: 75px;
  }
  .privacy_policy h1 {
    font-size: 31px;
    font-weight: 600;
    line-height: 40.3px;
  }
  .privacy_policy h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 32.5px;
  }
  .privacy_policy p {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .privacy_policy h3 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 500;
    color: #002c3d;
    line-height: 25px;
  }
  .privacy_policy body {
    font-size: 0.9em;
    padding: 1em;
  }
}
@media print {
  .privacy_policy body {
    background-color: transparent;
    color: black;
    font-size: 12pt;
  }
  .privacy_policy p,
.privacy_policy h2,
.privacy_policy h3 {
    orphans: 3;
    widows: 3;
  }
  .privacy_policy h2,
.privacy_policy h3,
.privacy_policy h4 {
    page-break-after: avoid;
  }
}
.privacy_policy p {
  font-family: "Montserrat", sans-serif;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  color: #64748b;
  line-height: 36px;
}
.privacy_policy a {
  color: #1a1a1a;
}
.privacy_policy a:visited {
  color: #1a1a1a;
}
.privacy_policy img {
  max-width: 100%;
}
.privacy_policy h1,
.privacy_policy h2,
.privacy_policy h3,
.privacy_policy h4,
.privacy_policy h5,
.privacy_policy h6 {
  margin-top: 1.4em;
}
.privacy_policy h1 {
  font-size: 40px;
  margin-top: 20px;
  font-weight: 700;
  color: #02373b;
  line-height: 50px;
}
.privacy_policy h2 {
  font-size: 31px;
  margin-top: 40px;
  font-weight: 600;
  color: #002c3d;
  line-height: 40.3px;
}
.privacy_policy h3 {
  font-size: 24px;
  margin-top: 24px;
  font-weight: 500;
  color: #002c3d;
  line-height: 30px;
}
.privacy_policy h5,
.privacy_policy h6 {
  font-size: 1em;
  font-style: italic;
}
.privacy_policy h6 {
  font-weight: normal;
}
.privacy_policy ol,
.privacy_policy ul {
  padding-left: 1.5em;
  margin-top: 1em;
}
.privacy_policy li > ol,
.privacy_policy li > ul {
  margin-top: 0;
}
.privacy_policy blockquote {
  margin: 1em 0 1em 1.7em;
  padding-left: 1em;
  border-left: 2px solid #e6e6e6;
  color: #606060;
}
.privacy_policy code {
  /* font-family: Menlo, Monaco, 'Lucida Console', Consolas, monospace; */
  font-size: 85%;
  margin: 0;
}
.privacy_policy pre {
  margin: 1em 0;
  overflow: auto;
}
.privacy_policy pre code {
  padding: 0;
  overflow: visible;
}
.privacy_policy .sourceCode {
  background-color: transparent;
  overflow: visible;
}
.privacy_policy hr {
  background-color: #1a1a1a;
  border: none;
  height: 1px;
  margin: 1em 0;
}
.privacy_policy table {
  margin: 1em 0;
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  display: block;
  font-variant-numeric: lining-nums tabular-nums;
}
.privacy_policy table caption {
  margin-bottom: 0.75em;
}
.privacy_policy tbody {
  margin-top: 0.5em;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.privacy_policy th {
  border-top: 1px solid #1a1a1a;
  padding: 0.25em 0.5em 0.25em 0.5em;
}
.privacy_policy td {
  padding: 0.125em 0.5em 0.25em 0.5em;
}
.privacy_policy header {
  margin-bottom: 4em;
  text-align: center;
}
.privacy_policy #TOC a:not(:hover) {
  text-decoration: none;
}
.privacy_policy code {
  white-space: pre-wrap;
}
.privacy_policy span.smallcaps {
  font-variant: small-caps;
}
.privacy_policy span.underline {
  text-decoration: underline;
}
.privacy_policy div.column {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.privacy_policy div.hanging-indent {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.privacy_policy .display.math {
  display: block;
  text-align: center;
  margin: 0.5rem auto;
}

.terms_of_service {
  font-family: "Montserrat", sans-serif;
  padding: 40px;
  padding-top: 75px;
  margin-top: 90px;
  width: 100%;
  /*
  #TOC li {
      list-style: none;
  }
  */
  /*
  ul.task-list {
      list-style: none;
  }
  */
}
.terms_of_service__container {
  width: 100%;
  display: flex;
}
@media (max-width: 850px) {
  .terms_of_service__container {
    flex-direction: column-reverse;
  }
}
.terms_of_service .terms_content {
  padding-top: 16px;
  width: 65%;
  margin-right: 5%;
}
@media (max-width: 850px) {
  .terms_of_service .terms_content {
    padding-top: 0px;
    width: 100%;
    margin-right: 0%;
  }
}
.terms_of_service .table_of_content {
  width: 30%;
  margin-top: 10px;
  position: fixed;
  right: 40px;
  bottom: 160px;
}
.terms_of_service .table_of_content__items {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.terms_of_service .table_of_content__active_item {
  font-weight: 600;
}
@media (max-width: 850px) {
  .terms_of_service .table_of_content {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
  }
}
.terms_of_service html {
  line-height: 1.5;
  font-family: Georgia, serif;
  font-size: 20px;
  color: #1a1a1a;
  background-color: #fdfdfd;
}
.terms_of_service body {
  margin: 0 auto;
  max-width: 36em;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}
@media (max-width: 600px) {
  .terms_of_service {
    padding: 15px;
    padding-top: 75px;
  }
  .terms_of_service h1 {
    font-size: 31px;
    font-weight: 600;
    line-height: 40.3px;
  }
  .terms_of_service h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 32.5px;
  }
  .terms_of_service p {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .terms_of_service h3 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 500;
    color: #002c3d;
    line-height: 25px;
  }
  .terms_of_service body {
    font-size: 0.9em;
    padding: 1em;
  }
}
@media print {
  .terms_of_service body {
    background-color: transparent;
    color: black;
    font-size: 12pt;
  }
  .terms_of_service p,
.terms_of_service h2,
.terms_of_service h3 {
    orphans: 3;
    widows: 3;
  }
  .terms_of_service h2,
.terms_of_service h3,
.terms_of_service h4 {
    page-break-after: avoid;
  }
}
.terms_of_service p {
  font-family: "Montserrat", sans-serif;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  color: #64748b;
  line-height: 36px;
}
.terms_of_service a {
  color: #64748b;
}
.terms_of_service a:visited {
  color: #1a1a1a;
}
.terms_of_service img {
  max-width: 100%;
}
.terms_of_service h1,
.terms_of_service h2,
.terms_of_service h3,
.terms_of_service h4,
.terms_of_service h5,
.terms_of_service h6 {
  margin-top: 1.4em;
}
.terms_of_service h1 {
  font-size: 40px;
  margin-top: 20px;
  font-weight: 700;
  color: #02373b;
  line-height: 50px;
}
.terms_of_service h2 {
  font-size: 31px;
  margin-top: 40px;
  font-weight: 600;
  color: #002c3d;
  line-height: 40.3px;
}
.terms_of_service h3 {
  font-size: 24px;
  margin-top: 24px;
  font-weight: 500;
  color: #002c3d;
  line-height: 30px;
}
.terms_of_service h5,
.terms_of_service h6 {
  font-size: 1em;
  font-style: italic;
}
.terms_of_service h6 {
  font-weight: normal;
}
.terms_of_service ol,
.terms_of_service ul {
  padding-left: 1.5em;
  margin-top: 1em;
}
.terms_of_service li > ol,
.terms_of_service li > ul {
  margin-top: 0;
}
.terms_of_service blockquote {
  margin: 1em 0 1em 1.7em;
  padding-left: 1em;
  border-left: 2px solid #e6e6e6;
  color: #606060;
}
.terms_of_service code {
  /* font-family: Menlo, Monaco, 'Lucida Console', Consolas, monospace; */
  font-size: 85%;
  margin: 0;
}
.terms_of_service pre {
  margin: 1em 0;
  overflow: auto;
}
.terms_of_service pre code {
  padding: 0;
  overflow: visible;
}
.terms_of_service .sourceCode {
  background-color: transparent;
  overflow: visible;
}
.terms_of_service hr {
  background-color: #1a1a1a;
  border: none;
  height: 1px;
  margin: 1em 0;
}
.terms_of_service table {
  margin: 1em 0;
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  display: block;
  font-variant-numeric: lining-nums tabular-nums;
}
.terms_of_service table caption {
  margin-bottom: 0.75em;
}
.terms_of_service tbody {
  margin-top: 0.5em;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.terms_of_service th {
  border-top: 1px solid #1a1a1a;
  padding: 0.25em 0.5em 0.25em 0.5em;
}
.terms_of_service td {
  padding: 0.125em 0.5em 0.25em 0.5em;
}
.terms_of_service header {
  margin-bottom: 4em;
  text-align: center;
}
.terms_of_service #TOC a:not(:hover) {
  text-decoration: none;
}
.terms_of_service code {
  white-space: pre-wrap;
}
.terms_of_service span.smallcaps {
  font-variant: small-caps;
}
.terms_of_service span.underline {
  text-decoration: underline;
}
.terms_of_service div.column {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.terms_of_service div.hanging-indent {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.terms_of_service .display.math {
  display: block;
  text-align: center;
  margin: 0.5rem auto;
}

.faq {
  width: 610px;
  min-height: 100vh;
  max-width: 1100px;
  margin: 90px auto 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 450px) {
  .faq {
    width: 90%;
  }
}
.faq #search_input_container {
  align-self: center;
  width: 100%;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  background-color: transparent;
  justify-content: space-between;
}
@media (max-width: 450px) {
  .faq #search_input_container {
    width: 100%;
  }
}
.faq #search_input_container #search_input {
  background-color: white;
  border: 1px solid #EDF0F2;
  border-radius: 4px;
  height: 50px;
  align-self: center;
  width: 75%;
  padding: 8px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.faq #search_input_container #search_input input {
  text-indent: 7px;
  outline: none;
  border: 0px;
  width: 93%;
  margin-right: 3px;
  height: 100%;
}
.faq #search_input_container #get_int_touch {
  width: 120px;
  padding-left: 5px;
  padding-right: 5px;
  height: 50px;
  border-radius: 4px;
  border: 0px;
  background-color: #3B82F6;
  color: white;
}
.faq h2 {
  font-size: 14px;
}
.faq .accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.faq .faq-item-btn {
  border: 1px solid #EDF0F2;
  background-color: white;
  background-color: transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  min-height: 40px;
  color: #909090;
}
.faq .accordion-button::after {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 0.85rem;
  transition: transform 0.2s ease-in-out;
}
.faq .accordion-body {
  color: black;
  font-size: 15px;
  background-color: transparent;
  font-weight: 400;
}
.faq .active, .faq .accordion:hover {
  background-color: #ccc;
}
.faq .panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.contact {
  position: fixed;
  top: 0;
  z-index: 99;
  display: none;
}
.contact-bg {
  width: 100%;
  height: 100%;
  background: rgba(212, 212, 212, 0.9);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.contact-main {
  width: 430px;
  background-color: #fff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-main input {
  outline: none;
  text-indent: 10px;
  border-radius: 5px;
  border: 1px solid lightgray;
  height: 50px;
  width: 100%;
}
.contact-main #message_input {
  outline: none;
  text-indent: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
  min-height: 70px;
  max-height: 100px;
  width: 100%;
}
@media (max-width: 450px) {
  .contact-main {
    width: 90%;
  }
}
.contact-main h2 {
  text-align: left;
  margin: 0px 0px 25px;
  font-size: 25px;
  font-weight: 700;
  color: #002C3D;
}
.contact-main p {
  color: #10243e;
  font-weight: 300;
  line-height: 1.8em;
  margin-bottom: 15px;
  font-size: 15.3px;
}
.contact-main p span {
  color: #0099d6;
}
.contact-main #send_message {
  background-color: #0099D6;
  margin-top: 20px;
  height: 48px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  width: 100%;
  border: 0px;
}
.contact-main #cancel {
  background-color: transparent;
  margin-top: 20px;
  height: 48px;
  border: 1px solid lightgrey;
  border-radius: 5px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  width: 100%;
  width: 60%;
}

.u-color-blue {
  color: #0099D6;
}

.u-color-primary {
  color: #ff8b00 !important;
}

.u-bold-text {
  font-weight: 600;
}

* {
  font-family: "Montserrat", sans-serif !important;
}/*# sourceMappingURL=main.css.map */