@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap");

:root {
  --bgwhite: #e9ecfb;
  --white: #f8f9fe;
  --shadow: 0 12px 20px rgb(164 175 225 / 75%);
  --text-primary: hsl(231, 53%, 14%);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: hidden auto;
  background: var(--bgwhite);
  text-transform: capitalize;
  color: var(--text-primary) !important;
  font: 400 1.6rem "Barlow", sans-serif;
}

body.darkmode {
  --bgwhite: hsl(231, 53%, 14%);
  --white: #1e2447;
  --shadow: 0 8px 6px hsla(233, 55%, 6%, 0.35);
  --text-primary: hsl(0, 0%, 100%);
}

img {
  width: 100%;
}

h2 {
  margin-bottom: 0;
}

a {
  color: var(--text-primary);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-white);
}

p {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

.table,
table,
tr,
td,
th {
  color: var(--text-primary);
}
thead {
  background: linear-gradient(to right, #0cd9f4, #78cbff);
  color: #ffffff;
}

.yellow {
  font-weight: 600;
  color: #23d5f6;
}

/* ==========================
          header
========================== */
#header {
  top: 0;
  z-index: 1024;
  position: sticky;
  background: transparent;
  transition: all 0.3s ease;
}

#header.shadow {
  background: var(--white);
}

.darkmode #header.shadow {
  background: var(--white);
}

.nav-bar {
  display: flex;
  min-height: 10vh;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  max-width: 18rem;
}

.nav-links {
  gap: 2rem;
  display: flex;
  font-weight: 400;
}

.nav-links a {
  gap: 6px;
  z-index: 1;
  display: flex;
  font-weight: 500;
  font-size: 1.8rem;
  width: max-content;
  position: relative;
  align-items: center;
}

.nav-links a::before {
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -8px;
  transform: scale(0);
  position: absolute;
  transition: all 0.4s ease;
  background-color: var(--text-primary);
}

.nav-links a:hover::before {
  transform: scale(1);
  transform-origin: center;
}

.shadow .nav-links a::before {
  color: hsl(212, 92%, 58%);
}

/* dropdown menu */
.drop-wrap {
  position: relative;
}

.dropdown-menu {
  border: 0;
  width: max-content;
  position: absolute;
  border-radius: 4px;
  padding: 1.4rem 2rem;
  top: 2.5rem !important;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #0cd9f4, #78cbff);
}

.darkmode .dropdown-menu {
  background: linear-gradient(to right, #0cd9f4, #78cbff);
}

.dropdown-menu a {
  color: #fff;
  padding: 3px 0;
  font-size: 1.6rem;
}

.dropdown-menu a::before {
  display: none;
}

.btn-one {
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 6px;
  padding: 10px 3.4rem 12px;
  transition: all 0.4s ease;
  text-transform: capitalize;
  box-shadow: 3px 3px 50px hsla(0, 0%, 0%, 0.1);
  background: linear-gradient(to right, #0cd9f4, #78cbff);
}

.btn-one.yellow {
  background: linear-gradient(to right, #ff47bc, #d178ff);
}

.btn-one:hover {
  color: var(--white);
  transform: scale(1.08);
}

/* responsive menu toggler */
.nav-toggler {
  width: 4rem;
  height: 4rem;
  display: none;
  cursor: pointer;
  margin-left: 2rem;
  font-size: 2.6rem;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

@media screen and (max-width: 991.9px) {
  .nav-toggler {
    display: flex;
  }

  .btn-one.sm {
    display: none;
  }
}

/* responsive */
@media screen and (max-width: 991.9px) {
  .nav-links {
    top: 0;
    left: 0;
    width: 280px;
    padding: 4rem;
    height: 100vh;
    position: fixed;
    margin-left: -284px;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: #23d5f6;
  }

  .darkmode .nav-links {
    background: hsl(226 56% 35% / 1);
  }

  .nav-links a {
    color: #fff;
  }

  .nav-links.show {
    margin-left: 0;
  }

  .backdrop-filter {
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: hsl(216deg 77% 15% / 50%);
  }

  .backdrop-filter.show {
    opacity: 1;
    display: block;
  }
}

@media screen and (max-width: 375.9px) {
  .nav-links {
    max-width: 240px;
  }
}

/* ==========================
        hero section
========================== */
#hero {
  margin-top: -10vh;
  padding-top: 10vh;
  overflow: hidden;
  position: relative;
}

#particle-js {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

#hero .row {
  height: 100vh;
  align-items: center;
}

.hero-title,
.hero-title ~ p {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-weight: 300;
  margin-bottom: 2rem;
  text-transform: capitalize;
  font-size: calc(2.65rem + 2vw);
  font-family: "Open Sans", sans-serif;
}

.hero-title ~ p {
  margin-bottom: 4rem;
  font-size: calc(1.6rem + 0.4vw);
}

.hero-btn-wrap {
  z-index: 2;
  gap: 1.6rem;
  display: flex;
  position: relative;
  margin-bottom: 4rem;
}

.hero-astro {
  top: 5%;
  left: -10%;
  z-index: 1;
  max-width: calc(200px + 20vw);
  animation: float 8s infinite;
}

/* animation for astro */
@-webkit-keyframes float {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
}

@keyframes float {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

.hero-coins {
  bottom: 5%;
  right: -5%;
  z-index: 1;
  max-width: calc(180px + 20vw);
}

/* responsive hero */
@media all and (max-width: 991.9px) {
  .hero-astro {
    top: -3%;
    left: -25vw;
  }

  .hero-coins {
    bottom: 8%;
  }
}

@media all and (max-width: 445.9px) {
  .hero-coins {
    display: none;
  }

  .hero-title,
  .hero-title ~ p {
    text-align: center;
  }

  .hero-btn-wrap {
    justify-content: center;
  }
}

/* ==========================
          statistics
========================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section .container {
  padding-bottom: 5rem;
}

.section.hidden {
  overflow: hidden;
}

.section-img {
  max-width: 65%;
  -webkit-filter: drop-shadow(0 0 16px hsla(215, 75%, 67%, 0.7));
  filter: drop-shadow(0 0 16px hsla(215, 75%, 67%, 0.7));
}

.section-title {
  margin-bottom: 2rem;
  font-size: calc(2.6rem + 1vw);
}

.section-title ~ p {
  margin-bottom: 6rem;
  font-size: calc(1.8rem + 0.4vw);
}

.card {
  gap: 2rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  flex-direction: row;
  align-items: center;
  border-radius: 1.2rem;
  background: var(--white);
  transition: all 300ms ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.darkmode .card {
  background: hsl(231, 41%, 20%);
}

.card:hover {
  transform: scale(1.05);
  border-color: #23d5f6;
}

.card .icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  font-size: 2.6rem;
  border-radius: 50%;
  align-items: center;
  color: #ffffff;
  justify-content: center;
  transition: all 300ms ease;
  background: #23d5f6;
  border: 2px solid #23d5f6;
}

.card:hover .icon {
  background: transparent;
  color: #23d5f6;
}

.card h2 {
  margin-bottom: 2px;
  color: #23d5f6;
  font-size: calc(1.8rem + 0.6vw);
}

.card p {
  font-size: calc(1.5rem + 0.2vw);
}

/* responsive statistics */
@media all and (max-width: 991.9px) {
  .section-title,
  .section-title ~ p {
    text-align: center;
  }

  .section-img {
    max-width: 40%;
    margin: 0 auto 4rem;
  }
}

/* ==========================
          revenue
========================== */
.revenue-list {
  margin-bottom: 0;
}

.revenue-list > li {
  gap: 3rem;
  display: flex;
  align-items: center;
}

.revenue-list > li:not(:last-child) {
  margin-bottom: 6rem;
}

.revenue-list .icon {
  width: 5rem;
  height: 5rem;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  background: #23d5f6;
}

.revenue-list .icon i {
  transform: rotate(-45deg);
}

.rev-card {
  align-items: normal;
  margin-bottom: 40px;
  flex-direction: column;
}

.rev-card:hover {
  transform: scale(1);
}

.rev-card .btn-one {
  cursor: pointer;
  justify-content: center;
}

.rev-card .btn-one:hover {
  transform: scale(1.02);
}

#revenue .section-img {
  margin: 0 auto;
}

/* responsive revenue image */
@media all and (max-width: 991.9px) {
  #revenue .section-img {
    max-width: 65%;
  }
}

/* ==========================
        card sm
========================== */
.card-sm {
  gap: 4px;
  align-items: center;
  flex-direction: column;
}

/* ==========================
        btc convert
========================== */
.convert-bar {
  display: flex;
  align-items: center;
  font-size: calc(1.8rem + 0.2vw);
}

.convert-bar > * {
  border: 0;
  color: #fff;
}

.convert-bar label {
  display: grid;
  padding: 0 2rem;
  min-height: 7rem;
  place-items: center;
  background: #07b5d8;
  border-radius: 8px 0 0 8px;
}

.darkmode .convert-bar label {
  background: #3c4472;
}

.convert-bar input {
  width: 100%;
  padding: 0 2rem;
  min-height: 7rem;
  text-align: right;
  background: #23d5f6;
  border-radius: 0 8px 8px 0;
}

.darkmode .convert-bar input {
  background: #2d345d;
}

.convert-bar input::placeholder {
  color: hsla(0, 0%, 100%, 0.65);
}

.convert-bar label:focus-visible,
.convert-bar input:focus-visible {
  outline: 0;
}

#price-chart .chart-dark {
  display: none;
}

.darkmode #price-chart .chart-light {
  display: none;
}

.darkmode #price-chart .chart-dark {
  display: block;
}

/* ==========================
        btc convert
========================== */
.chart-card {
  border: none;
  min-height: 20rem;
  box-shadow: none;
  background: transparent;
}

.darkmode .chart-card {
  background: transparent;
}

.chart-card:hover {
  transform: scale(1);
}

/* ==========================
        btc convert
========================== */
.partner-card {
  min-height: 15rem;
  flex-direction: column;
  justify-content: center;
}

.partner-card .absolute {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.owl-carousel .owl-stage-outer {
  padding: 5rem 0;
}

.owl-nav {
  top: 47%;
  width: 97.5%;
  display: flex;
  position: absolute;
  transform: translateY(-50%);
  justify-content: space-between;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 4rem;
  height: 4rem;
  display: flex;
  font-size: 3rem;
  position: relative;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #23d5f6 !important;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  margin-top: -5px;
  font-size: 2.8rem;
  color: hsl(231, 53%, 14%);
}

.owl-nav .owl-prev {
  left: 16px;
}

.owl-nav .owl-next {
  right: 26px;
}

/* ==========================
            blog
========================== */
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
}

.blog-card:hover {
  transform: scale(1);
}

.blog-card_img {
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-card_by {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: 300;
  font-size: 0.5rem;
}

.blog-card_by__icon {
  width: 3rem;
  margin-right: 1rem;
}

.blog-card_heading {
  margin: 1rem 0rem;
  font-weight: bold;
  font-size: 2rem;
}

.blog-card_description {
  margin: 1rem 0rem;
  color: var(--color-white);
}

.categories {
  width: 100%;
  display: flex;
}

.blog-card_category {
  background-color: #72eaff;
  border-radius: 1.6rem;
  padding: 5px 1.7rem 6px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.blog-card_category > a {
  color: #1e2447;
}

.blog-card-btn {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 6px;
  padding: 10px 3.4rem 12px;
  transition: all 0.4s ease;
  text-transform: capitalize;
  box-shadow: 3px 3px 50px hsla(0, 0%, 0%, 0.1);
  background: linear-gradient(to right, #0cd9f4, #78cbff);
  text-align: center;
}

.blog-card-btn:hover {
  color: var(--white);
  transform: scale(1.02);
}

/* ==========================
          feature
========================== */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid transparent;
  transition: all 300ms ease;
}

.feature:hover {
  border-color: #23d5f6;
}

.feature > .icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  font-size: 2.6rem;
  border-radius: 50%;
  align-items: center;
  color: #ffffff;
  justify-content: center;
  transition: all 300ms ease;
  background: #23d5f6;
  border: 2px solid #23d5f6;
  margin-bottom: 1rem;
}

.feature:hover .icon {
  background: transparent;
  color: #23d5f6;
}

.feature > p {
  font-size: 2.6rem;
}

/* ==========================
          earn
========================== */
.card-lg {
  gap: 6px;
  padding: 3rem;
  align-items: flex-start;
  flex-direction: column;
}

.card-lg:hover {
  transform: scale(1.03);
}

.card-lg .bx {
  opacity: 0.5;
  font-size: 8rem;
}

/* ==========================
          review
========================== */
#review .card-lg {
  gap: 1.6rem;
  min-height: 20rem;
  justify-content: center;
}

@media all and (min-width: 1000px) {
  #review .owl-next {
    right: -10px;
  }

  #review .owl-prev {
    left: 2px;
  }
}

@media all and (max-width: 999.99px) {
  #earn .owl-next,
  #review .owl-next {
    right: -1%;
  }

  #earn .owl-prev,
  #review .owl-prev {
    left: -1%;
  }
}

/* ==========================
          contact
========================== */
#contact {
  color: #fff;
  padding: 20rem 0 4rem;
  background: url("../img/footer-bgc.svg") left top no-repeat;
  background-size: cover;
  margin-left: -1px;
}

.contact-list a {
  gap: 1.6rem;
  display: flex;
  color: #fff;
  align-items: center;
}

.contact-list .icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  border-radius: 6px;
  align-items: center;
  transform: rotate(45deg);
  justify-content: center;
  background: hsl(231, 31%, 34%);
}

.contact-list .icon i {
  transform: rotate(-45deg);
}

.contact-form {
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  border: 0;
  outline: 0;
  width: 100%;
  margin-bottom: 2rem;
  padding: 2rem 0 1rem;
  background: transparent;
  transition: all 300ms ease;
  color: hsl(257, 33%, 90%);
  border-bottom: 2px solid hsla(257, 32%, 85%, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d4cde6;
}

.footer-link a {
  display: block;
  color: #d4cde6;
  margin-bottom: 10px;
}

.footer-link i[class^="fa"] {
  min-width: 20px;
}

@media all and (max-width: 991.9px) {
  .contact-form {
    margin-top: 5rem;
  }
}

/* ==========================
      theme toggler
========================== */
.theme-toggler {
  width: 7.5rem;
  height: 3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 99rem;
  background: hsl(231, 31%, 34%);
}

.theme-toggler .round {
  top: 0;
  right: 0;
  width: 4rem;
  height: 3rem;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 99rem;
  justify-content: center;
  transition: all 300ms ease;
  background: hsl(193deg 25% 16% / 35%);
}

.theme-toggler .round img {
  max-width: 2rem;
}

.theme-toggler .round.active {
  right: initial;
}

/* ==========================
          copyright
========================== */
.copyright {
  text-align: center;
  margin-top: 8rem;
}

.copyright .green {
  font-weight: 500;
  color: hsl(134, 96%, 37%);
}

/* ==========================
          page
========================== */
.page-title {
  margin-top: -10vh;
  background: url("../img/page-title-bgc.svg") center bottom no-repeat;
  background-size: cover;
  padding: 15rem 0 5rem 0;
  text-transform: capitalize;
}

.darkmode .page-title {
  background: url("../img/page-title-bg-darkc.svg") center bottom no-repeat;
  background-size: cover;
}

.page-title .title {
  color: #fff;
  text-align: center;
  font-size: calc(2.6rem + 1vw);
}

.page-para {
  color: var(--text-primary);
  font-size: calc(1.5rem + 0.2vw);
}

.payment-proof-table {
  min-height: 50rem;
}

.payment-proof-table:hover {
  transform: scale(1);
}

/* ==========================
            faq
========================== */
.question-wrap {
  gap: 1.6rem;
  display: flex;
  margin-bottom: 4rem;
  flex-direction: column;
}

.question-wrap h2 {
  background: #23d5f6;
  color: #ffffff;
}

.darkmode .question-wrap h2 {
  background: #23d5f6;
  color: #ffffff;
}

.question-wrap p {
  background: #e9ecfb;
}

.darkmode .question-wrap p {
  background: #2d3459;
}

.question-wrap h2,
.question-wrap p {
  padding: 1.4rem 2rem;
}

/* ==========================
            login
========================== */
.form-wrap {
  gap: 3rem;
  display: flex;
  padding: 3rem 2rem;
  border-radius: 1.2rem;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 0 1rem hsla(233, 16%, 43%, 0.2);
}

.darkmode .form-wrap {
  background: #2d3459;
}

.form-wrap h2 {
  color: var(--text-primary);
}

.form-wrap .green-url {
  color: #fff;
  margin: 0 auto;
  font-weight: 500;
  padding: 6px 2rem;
  width: max-content;
  text-transform: none;
  border-radius: 99rem;
  background: #04ba2d;
}

.form-wrap .green-url i {
  color: hsl(134, 96%, 57%);
}

.form-wrap input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 8px 4px;
  background: transparent;
  border-bottom: 1px solid;
  color: var(--text-primary);
}

.form-wrap input:focus {
  border-color: #ea932b;
}

.darkmode .form-wrap input::placeholder {
  color: hsl(0, 0%, 80%);
}

.form-wrap .btn-one {
  border: 0;
  width: 100%;
  border-radius: 99rem;
  justify-content: center;
}

.form-wrap .btn-one:hover {
  transform: scale(1.02);
}

.link-sm {
  font-weight: 600;
}

.scroll-to-top {
  opacity: 0;
  bottom: 5vh;
  right: 5vw;
  width: 5rem;
  height: 5rem;
  z-index: 1024;
  display: none;
  color: #fff;
  position: fixed;
  cursor: pointer;
  font-size: 2.2rem;
  border-radius: 50%;
  place-items: center;
  transition: all 300ms ease;
  background: hsl(238, 72%, 65%);
  border: 4px solid hsl(238, 72%, 65%);
}

.scroll-to-top:hover {
  background: var(--white);
  color: hsl(238, 72%, 65%);
  box-shadow: rgb(101 106 230) 0px 0px 7px 1px;
}

.darkmode .scroll-to-top:hover {
  color: #fff;
}

.scroll-to-top.active {
  opacity: 1;
  display: grid;
}

/* ===========================
        custom dropdown 
============================= */
.drop-menu,
[id^="check-drop"] {
  display: none;
}

.drop-wrap {
  position: relative;
}

.check-drop-btn {
  gap: 5px;
  display: flex;
  cursor: pointer;
  align-items: center;
}

.drop-menu {
  top: 0;
  left: 0;
  z-index: 2;
  padding: 18px;
  border-radius: 6px;
  position: absolute;
  transition: all 300ms ease;
  background: hsl(238deg 72% 65%);
}

.drop-menu a {
  color: #fff;
  font-size: 95%;
}

.drop-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.drop-menu a::before {
  display: none;
}

[id^="check-drop"]:checked ~ .drop-menu {
  display: block;
  animation: swipe 0.4s forwards;
}

.drop-down i {
  font-size: 14px;
}

@keyframes swipe {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(40px);
  }
}

.pagesec {
  background: var(--white);
  color: var(--text-primary) !important;
  box-shadow: var(--shadow);
  padding: 3rem;
  overflow: hidden;
}

.pagesec.darkmode {
  background: hsl(231, 41%, 20%);
  --shadow: 0 8px 6px hsla(233, 55%, 6%, 0.35);
  --text-primary: hsl(0, 0%, 100%);
}

.blog-details {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
}

.blog-details > .blog-thumb {
  border-radius: 2rem;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.24);
  margin-bottom: 2rem;
}

.blog-content {
  padding: 3rem 0;
}

.blog-content > h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.blog-content > p {
  margin-bottom: 1.6rem;
}

.blog-details > .tags {
  display: flex;
  flex-wrap: wrap;
}

.blog-details > .tags a {
  padding: 1rem 3rem;
  border: 2px solid #23d5f6;
  margin-right: 10px;
  transition: 0.5s all ease;
}

.blog-details > .tags a:hover {
  color: #ffffff;
  background-color: #23d5f6;
  border: 2px solid #23d5f6;
}

.gt_white_content {
  background-color: var(--white) !important;
}

.gt_white_content a {
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
  padding: 5px 0 !important;
  border-bottom: 1px solid #e7e7e7 !important;
  white-space: nowrap !important;
}
