.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    transition-property: color;
    transition-duration: .5s
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffb852;
    border-radius: 70px;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: ease-out
}

.hvr-bounce-to-right:active,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:hover {
    color: #000
}

.hvr-bounce-to-right:active:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66)
}

.hvr-sweep-to-right {
    color: #fff;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    transition-property: color;
    transition-duration: .5s;
    background: #000
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, transparent 50%, #ffa728 0);
    background-size: 210% 100%;
    background-position: 100% 100%;
    height: 100%;
    width: 100%;
    transition: all 1s;
    border-radius: 100px
}

.hvr-sweep-to-right:active,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:hover {
    color: #000
}

.hvr-sweep-to-right:active:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:hover:before {
    background-position: 0 100%
}

.paper {
    color: #000;
    box-shadow: 0 0 1px transparent;
    transition-property: color;
    transition-duration: .5s;
    background: #fff8ee
}

.paper:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, transparent 50%, #000 0);
    background-size: 210% 100%;
    background-position: 100% 100%;
    height: 100%;
    width: 100%;
    transition: all 1s;
    border-radius: 100px
}

.paper:active,
.paper:focus,
.paper:hover {
    color: #fff;
    transition: all 1s
}

.paper:active:before,
.paper:focus:before,
.paper:hover:before {
    background-position: 0 100%
}

.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 1px transparent;
    transition-duration: .3s;
    transition-property: transform
}

.hvr-grow:active,
.hvr-grow:focus,
.hvr-grow:hover {
    transform: scale(1.1)
}

.hvr-shutter-in-vertical {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #000;
    border-radius: 15px;
    transition-property: color;
    transition-duration: .3s
}

.hvr-shutter-in-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transform: scaleY(1);
    transform-origin: 50%;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-out
}

.hvr-shutter-in-vertical:active,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:hover {
    color: #fff
}

.hvr-shutter-in-vertical:active:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:hover:before {
    transform: scaleY(0)
}

.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-duration: .3s;
    transition-property: box-shadow, transform
}

.hvr-grow-shadow:active,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:hover {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .5);
    transform: scale(1.1)
}

html {
    padding: 0;
    margin: 0
}

@font-face {
    font-family: Hanson;
    src: url("/fonts/Hanson Bold 700.woff2");
    font-display: swap
}

body {
    font-size: 16px;
    line-height: 1.1;
    font-family: var(--font-roboto-mono), monospace, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Hanson
}

p {
    margin: 0;
    letter-spacing: -.32px
}

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

* {
    box-sizing: border-box
}

.default-menu {
    font-size: 20px;
    padding: 20px 0;
    color: #000;
    text-transform: capitalize;
    cursor: pointer
}

.default-menu.active-menu {
    border-bottom: 2px solid #000
}

.swiper {
    height: 100%
}

.swiper,
.swiper-wrapper {
    width: 100%
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center
}

.project_input {
    padding-left: 20px;
    width: 316px;
    height: 44px
}

.project_input:after,
.project_input:before {
    display: none
}

.btc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    animation: jumpBoxHandler 3s infinite
}

@keyframes jumpBoxHandler {
    0% {
        transform: translate(-50%, -50%)
    }
    50% {
        transform: translate(-50%, -55%)
    }
    to {
        transform: translate(-50%, -50%)
    }
}

.shadowAnimation {
    animation: shadowChange 3s infinite
}

@keyframes shadowChange {
    0% {
        transform: scale(.8)
    }
    50% {
        transform: scale(1)
    }
    to {
        transform: scale(.8)
    }
}

.transactionLoading {
    animation: loading 3s linear infinite
}

@keyframes loading {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}