/* GENERAL */

@font-face {
    font-family: "Bulletto Killa";
    font-display: swap;
    src: url(../fonts/Bulletto Killa.ttf) format("truetype");
}
@font-face {
    font-family: "Stem-Regular";
    font-display: swap;
    src: url(../fonts/stem/Stem-Regular.otf) format("truetype");
}
@font-face {
    font-family: "Stem-Medium";
    font-display: swap;
    src: url(../fonts/stem/Stem-Medium.otf) format("truetype");
}
@font-face {
    font-family: "Stem-Bold";
    font-display: swap;
    src: url(../fonts/stem/Stem-Bold.otf) format("truetype");
}

body {
    font-family: 'Stem-Regular', sans-serif;
    color: #060d20;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 500;
}
img {
    width: 100%;
}
ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    padding-bottom: 20px;
}
li {
    padding-bottom: 5px;
}
p {
    padding-bottom: 20px;
    margin-bottom: 0;
}
a, a:hover {
    text-decoration: none;
    color: #060d20;
}
.dark-section a:hover {
    color: #ffffff;
}
a.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in-out;
    margin-bottom: 20px;
    background-color: #30e539;
    padding: 7px 23px;
    border-radius: 20px;
    color: #060d20;
    font-family: 'Stem-Medium', sans-serif;
    letter-spacing: 0.5px;
    background-image: linear-gradient(to right, #30e539, #5bfc5f);
}
a.large-btn {
    padding: 7px 25px;
    font-family: 'Stem-Bold', sans-serif;
}
a.small-btn {
    padding: 4px 20px;
}
.last-btn {
    margin: 20px 0;
}
.last-btn .main-btn {
    margin: 0;
}
a.main-btn:hover {
    transition: all 300ms ease-in-out;
    background-color: #07df15;
    text-decoration: none;
    color: #060d20;
}
a.round-btn {
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 10px 22px 11px;
    margin-right: 10px;
    font-family: 'Stem-Medium', sans-serif;
}
a.arrow-btn {
    font-family: 'Stem-Bold', sans-serif;
    letter-spacing: 0.8px;
    transition: all 300ms ease-in-out;
}
a.arrow-btn svg {
    width: 15px;
    margin-left: 5px;
    transition: all 300ms ease-in-out;
    fill: #fff;
}
a.arrow-btn:not(.next-tab):hover {
    opacity: 0.8;
}
a.arrow-btn:not(.next-tab):hover svg {
    margin-left: 10px;
    transition: all 300ms ease-in-out;
    opacity: 0.8;
}

button:focus {
    outline: 0;
}
.extra-small-text {
    font-size: 12px;
}
.tiny-text {
    font-size: 14px;
}
.small-text {
    font-size: 16px;
}
.medium-text {
    font-size: 20px;
}
.large-text {
    font-size: 25px;
}
h1, h2, h3, h4, h5, h6, .h45, .h47 {
    font-family: 'Stem-Bold', sans-serif;
    padding-bottom: 20px;
    margin-bottom: 0;
}
h1 {
    font-size: 4rem;
}
h2 {
    font-size: 4.5rem;
}
h3 {
    font-size: 3.6rem;
}
h4 {
    font-size: 3.2rem;
}
.h45 {
    font-size: 2.7rem;
}
.h47 {
    font-size: 2.2rem;
}
h5 {
    font-size: 1.8rem;
}
h6 {
    font-size: 1.5rem;
}

@media (max-width: 767px) { 
    body{
        font-size: 16px;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2.5rem;
    }
    h4 {
        font-size: 2rem;
    }
    .h45 {
        font-size: 1.8rem;
    }
    .h47 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.6rem;
    }
    h6 {
        font-size: 1.3rem;
    }
    .medium-text {
        font-size: 18px;
    }
    .large-text {
        font-size: 20px;
    }
}
@media (max-width: 575px) { 
    a.round-btn {
        padding: 5px 16px 6px;
    }
}




/*GENERAL*/
html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-twd {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    transition-duration: 0s;
}
.colored-text {
    background: -webkit-linear-gradient(0deg,#30e539,#5afc5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
section {
    padding: 150px 0;
}
.spacing {
    padding: 75px;
}
.semi-section {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.bgimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-color: #e9eefb;
}
.radial-bg {
    padding: 0;
    background: #050c1e;
    background: radial-gradient(at bottom left, #0b1028 , #040916);
    background: #01040c;
}
.vertical-bg {
    background: rgb(5,13,34);
    background: linear-gradient(145deg, rgba(5,13,34,1) 0%, rgba(6,21,52,1) 40%, rgba(5,8,21,1) 100%);
    background: #01040c;
}
.round-bottom {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}
.round-top {
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}
.dark-section * {
    color: #fff;
}
.white-bg {
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}
.top-overlay {
    margin-bottom: 60px;
    top: -1px;
}
.bottom-overlay {
    margin-top: 60px;
    bottom: -1px;
}
.text-narrow {
    max-width: 500px;
}
.heading-margin {
    margin-bottom: 60px;
}
.subheading {
    font-family: 'Stem-Medium', sans-serif;
    padding-left: 3px;
}
.section-heading {
    max-width: 670px;
    margin-bottom: 40px;
}
.narrow-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.wider-gap-two-cols  [class*="col-"] {
    padding: 0 50px;
}
.wider-gap-two-cols .row {
    margin: 0 -50px;
}

@media (min-width: 576px) {
    .semi-section {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .semi-section {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .semi-section {
        max-width: 480px;
    }
}
@media (min-width: 1200px) {
    .semi-section {
        max-width: 570px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
    .semi-section {
        max-width: 670px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
    .semi-section {
        max-width: 770px;
    }
}
@media (max-width: 991px) { 
    section {
        padding: 100px 0;
    }
    .semi-section {
        margin-right: auto;
        margin-left: auto;
    }
    .spacing {
        height: 50px;
    }
}
@media (max-width: 767px) { 
    .round-bottom {
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }
    .round-top {
        border-top-right-radius: 30px;
        border-top-left-radius: 30px;
    }
}
@media (max-width: 575px) { 
    .mobile-narrow {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .round-bottom {
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .round-top {
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
    }
}
@media (max-width: 575px) { 
    .mobile-narrow {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 425px) { 
    .mobile-narrow {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
}




/*BG LINES*/
.bg-lines-ready {
    position: relative;
    overflow: hidden;
}
.bg-line-cont img {
    pointer-events: none;
    position: absolute;
}
img.bg-line1 {
    top: -300px;
    right: -95px;
    width: 500px;
    z-index: -1;
}
img.bg-chip5 {
    width: 200px;
    top: 750px;
    right: 200px;
    z-index: -1;
}
img.bg-line2 {
    top: 0px;
    width: 500px;
    left: -220px;
}
img.bg-chip3 {
    top: 1700px;
    width: 150px;
    left: 110px;
}
img.bg-line4 {
    top: -100px;
    right: -100px;
    z-index: 0;
    width: 1150px;
}

@media only screen and (max-width: 1999px) {
    img.bg-line4 {
        right: -500px;
    }
}
@media only screen and (max-width: 1399px) {
    img.bg-line1 {
        right: -170px;
    }
    img.bg-chip5 {
        right: 130px;
    }
    img.bg-chip3 {
        top: 2000px;
        left: 150px;
    }
}
@media only screen and (max-width: 1199px) {
    img.bg-chip3 {
        top: 2200px;
        left: -20px;
    }
    img.bg-line4 {
        top: 250px;
        right: -100px;
        width: 650px;
    }
}
@media only screen and (max-width: 991px) {
    img.bg-line1 {
        top: -500px;
        right: -230px;
    }
    img.bg-chip5 {
        width: 150px;
        top: 500px;
        right: 160px;
    }
    img.bg-line2 {
        top: 300px;
        width: 500px;
        left: -320px;
    }
    img.bg-chip3 {
        top: 4000px;
        width: 150px;
        left: -20px;
    }
    img.bg-line4 {
        top: 750px;
    }
}
@media only screen and (max-width: 767px) {
    img.bg-line1 {
        top: -850px;
        right: -330px;
        width: 600px;
    }
    img.bg-chip5 {
        width: 150px;
        top: 430px;
        right: 120px;
    }
    img.bg-chip3 {
        display: none;
    }
    img.bg-line2 {
        top: 0px;
    }
    img.bg-line4 {
        width: 100%;
    }
}
@media only screen and (max-width: 575px) {
    img.bg-line1 {
        top: -850px;
        right: -400px;
        width: 800px;
    }
    img.bg-chip5 {
        display: none;
    }
}
@media only screen and (max-width: 450px) {
    img.bg-line1 {
        top: -650px;
    }
}



/*NAVBAR*/
nav.navbar {
    padding: 25px 15px 0;
}
.nav-content-wrapper {
    width: 100%;
    min-width: calc(100% + 40px);
    margin-left: -20px;
}
nav .nav-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    border-radius: 100px;
    transition: all 300ms ease-in-out;
}
.navbar-collapse {
    justify-content: center;
}
.navbar-nav {
    padding-bottom: 0;
}
.navbar-nav li {
    padding: 5px 0;
}
.navbar-expand-lg .nav-content .navbar-nav .nav-link {
    color: #fff;
    padding: 0px 18px;
    font-family: 'Stem-Medium', sans-serif;
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 250px;
}
nav .navbar-brand img {
    width: 66px;
}
nav #logo-white {
    display: none;
}

nav .nav-content .right-btns .btn-cont {
    display: flex;
    height: 100%;
    align-items: center;
}
nav .nav-content .right-btns .btn-cont a {
    color: #fff;
}
nav .nav-content .right-btns .btn-cont .divider {
    margin: 0 26px 0 23px;
    position: relative;
}
nav .nav-content .right-btns .btn-cont .divider:after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    top: -10px;
    bottom: 0;
}
nav .nav-content .right-btns .btn-cont .main-btn {
    margin-bottom: 0;
    color: #060d20;
}

.hanging .nav-content {
    background-color: #fff;
    transition: all 300ms ease-in-out;
    box-shadow: 0 4px 30px rgb(0 0 0 / 15%);
}
.hanging  .navbar-brand img {
    display: none;
}
.hanging .navbar-brand  #logo-white {
    display: inline-block;
}
.hanging.navbar-expand-lg .nav-content .navbar-nav .nav-link {
    color: #060d20;
}
.hanging .nav-content .right-btns .btn-cont a {
    color: #060d20;
}
.hanging .nav-content .right-btns .btn-cont .divider:after {
    background-color: #060d20;
}
.hanging .nav-content a {
    transition: all 300ms ease-in-out;
}
.hanging .nav-content a:hover {
    transition: all 300ms ease-in-out;
}
.hanging.navbar-expand-lg .nav-content .navbar-nav .nav-link:hover {
    background: -webkit-linear-gradient(0deg,#30e539,#5afc5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .navbar-brand {
        min-width: initial;
    }
    .navbar-expand-lg .navbar-collapse {
        display: none!important;
    }
}
@media only screen and (max-width: 991.98px) {
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    nav.navbar {
        position: absolute;
    }
}
@media (max-width: 575px) {
    nav .nav-content {
        padding-right: 0;
        padding-left: 0;
        max-width: 430px;
        margin: auto;
    }
}
@media only screen and (max-width: 425px) {
    nav .nav-content .right-btns .btn-cont a {
        display: none;
    }
    nav .nav-content .right-btns .btn-cont .wallet-connect {
        display: inline-block;
    }
    nav .nav-content .right-btns .btn-cont .divider {
        display: none;
    }
}





/*SLIDER*/
.slider {
    overflow: hidden;
}
.slider .slider-cont {
    padding-top: 200px;
    padding-bottom: calc(200px + 2.9vw);
    display: flex;
    align-items: center;
}
.slider .slider-cont .row {
    max-width: 100%;
}
.slider [class*="col-"] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slider .content p {
    max-width: 400px;
}







/*POKER TABLE*/

.slider-img-table {
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.table-cont .slider-img {
    padding: 25px;
}
.table-border {
    box-shadow: 0 0 15px #2b6cd4 inset;
    border-radius: 25vw;
    border: 3px solid transparent;
    position: relative;
    margin: 3vw 0;
}
.table-border.animation {
    animation: glow 7s forwards;
}
.table-border * {
    pointer-events: none;
}
#table-grid {
    padding: 3.5%;
}
#vibe-animation {
    position: absolute;
    width: 42%;
    top: 18%;
    left: 15%;
}
.nft-cont {
    width: 12%;
    position: absolute;
}
#nft-1 {
    top: -13%;
    left: 39%;
}
#nft-2 {
    top: -13%;
    left: 18%;
}
#nft-3 {
    bottom: 36%;
    left: -3%;
}
#nft-4 {
    bottom: -18%;
    left: 18%;
}
#nft-5 {
    bottom: -18%;
    left: 39%;
}
.playing-card {
    position: absolute;
    width: 6%;
}
.playing-chip {
    position: absolute;
    width: 5.3%;
}
.items-1 .card-back-1 {
    top: 12%;
    left: 38%;
    width: 4.5%;
    transform: rotate(20deg);
}
.items-1 .card-back-2 {
    top: 13%;
    left: 41%;
    width: 4.5%;
}
.items-1 .chip-500 {
    top: 9%;
    left: 43%;
    transform: rotate(135deg);
}
.items-1 .chip-club {
    top: 11%;
    left: 46.5%;
}
.items-2 .card-4 {
    bottom: 14%;
    left: 15.2%;
    width: 5.7%;
}
.items-2 .card-8 {
    bottom: 15%;
    left: 18%;
    width: 5.8%;
}
.items-2 .chip-500 {
    bottom: 14%;
    left: 12%;
}
.items-2 .chip-diamond {
    bottom: 15%;
    left: 20.5%;
}
.items-2 .chip-club {
    bottom: 9%;
    left: 22.5%;
}
.items-3 .card-6 {
    bottom: 15%;
    left: 39%;
    width: 5.5%;
}
.items-3 .card-q {
    bottom: 17%;
    left: 42%;
    width: 5.2%;
}
.items-3 .chip-heart {
    bottom: 18%;
    left: 45.8%;
}
.items-3 .chip-spade {
    bottom: 12%;
    left: 46.5%;
}
.items-3 .chip-bitcoin {
    bottom: 16%;
    left: 50%;
}


@keyframes glow {
    80% {
        border: 3px solid #062860;
        box-shadow: 
            0 0 4px #062860 inset, 
            0 0 4px #062860 inset, 
            0 0 4px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 50px #062860 inset, 
            0 0 50px #062860 inset, 
            0 0 70px #062860 inset, 
            0 0 130px #041e48 inset, 
            0 0 130px #041e48 inset;
    }
    100% {
        border: 3px solid #0c2f75;
        box-shadow: 
            0 0 4px #062860 inset, 
            0 0 4px #062860 inset, 
            0 0 4px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 20px #062860 inset, 
            0 0 50px #062860 inset, 
            0 0 50px #062860 inset, 
            0 0 70px #062860 inset, 
            0 0 130px #041e48 inset, 
            0 0 130px #041e48 inset;
    }
}


.slider-img-table {
    width: calc(85vw + 488px);
}
.slider-img {
    height: calc(34.35vw + 88.16px);
    width: auto;
}
.table-cont .slider-img {
    width: calc(102.728vw + 263.654px);
}


@media (min-width: 768px) {
    .slider-img-table {
        width: calc(85vw + 488px);
    }
}
@media (min-width: 992px) {
    .slider-img {
        height: calc(34.35vw + 54.96px);
    }
    .slider-img-table {
        width: calc(85vw + 125px);
    }
}
@media (min-width: 1200px) {
    .slider-img {
        height: calc(34.35vw + 65.27px);
    }
}
@media (min-width: 1400px) {
    .slider-img {
        height: calc(34.35vw + 76.72px);
    }
}
@media (min-width: 1600px) {
    .slider-img {
        height: calc(34.35vw + 88.16px);
    }
}


@media (max-width: 991px) {
    .slider .slider-cont .content {
        margin-bottom: 90px;
    }
    .table-border {
        border-radius: 50vw;
    }
}
@media (max-width: 767px) {
    .slider-img-table {
        width: calc(100vw + 540px);
        margin-left: calc(270px - 50vw);
    }
    #vibe-animation {
        left: 10%;
    }
    .table-border {
        border-radius: 50vw;
    }
    .slider .slider-cont {
        padding-top: 160px;
    }
    #nft-3 {
        left: -1%;
    }
}
@media (max-width: 575px) {
    .slider-img-table {
        width: calc(190vw);
        margin-left: 0;
    }
}






/*PHONE SECTION*/
.phone-cont {
    padding-right: 80px;
}
.phone-cont .phone-img {
    width: 81.237%;
}
.phone-cont .notification-cont {
    position: absolute;
    top: 14%;
    width: 100%;
    left: calc(62% - 50px);
}
.notification-item {
    padding: 11px 20px 12px 12px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 15%);
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    width: 34.077%;
    transition: all 300ms ease-in-out;
    transition: margin-top 225ms ease-in-out;
    margin-bottom: 20px;
    animation: showNotification 300ms forwards;
}
.notification-item.fixed-notification {
    background-color: #e6fee8;
}
.notification-item.removing {
    animation-direction: reverse;
}
.notification-item.shifted-item {
    margin-left: 30px;
}
.notification-item:hover, .notification-item:focus {
    cursor: pointer;
    box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}
.notification-item .main-content .header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.notification-item .main-content .header img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.notification-item .main-content .header p {
    font-family: 'Stem-Medium', sans-serif;
}
.notification-item .main-content .message-header {
    padding-bottom: 3px;
    letter-spacing: 0.5px;
    font-family: 'Stem-Medium', sans-serif;
}
.notification-item .main-content .message-body {
    font-family: 'Stem-Medium', sans-serif;
    line-height: 1.2;
}

@keyframes showNotification {
    0% { 
        opacity: 0; 
        -webkit-transform: translate3d(0,40px,0) scale3d(0.1,0.6,1); 
        transform: translate3d(0,40px,0) scale3d(0.1,0.6,1); 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translate3d(0,0,0) scale3d(1,1,1); 
        transform: translate3d(0,0,0) scale3d(1,1,1); 
    }
}


@media (max-width: 1399px) {
    .phone-cont {
        padding-right: 0;
        min-width: 900px;
        margin-left: calc(50vw - 900px);
    }
    .notification-item {
        min-width: 250px;
        margin-left: calc(34.077% - 250px);
    }
    .notification-item.shifted-item {
        margin-left: calc(34.077% - 220px);
    }
}
@media (max-width: 1199px) {
    .phone-cont {
        min-width: 750px;
        margin-left: calc(50vw - 750px);
    }
}
@media (max-width: 991px) {
    .phone-cont {
        min-width: initial;
        margin-left: initial;
    }
    .phone-cont .phone-img {
        width: 120%;
        margin-left: -41%;
    }
    .phone-cont .notification-cont {
        top: 17%;
        left: 50%;
        transform: scale(1.3);
    }
}
@media (max-width: 767px) {
    .phone-cont .notification-cont {
        left: 60%;
        transform: scale(1.2);
    }
}
@media (max-width: 575px) {
    .phone-cont .phone-img {
        width: 160%;
        margin-left: -73%;
    }
    .phone-cont .notification-cont {
        left: 55%;
        transform: scale(1);
    }
}



/*INFO CARD*/
/*.card-section {
    overflow: hidden;
}
*/
.card-section [class*="col-"] {
    padding: 0 35px;
}
.card-section .row {
    margin: 0 -35px;
}
.info-card {
    position: relative;
    height: 100%;
}
.info-card:hover, .info-card:focus {
    cursor: pointer;
}
.info-card .content {
    padding: 25px 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
    position: relative;
    background-color: #e7f2f0;
    border-radius: 20px;
}
.info-card .content .img-cont {
    align-self: flex-end;
}
.info-card .content .text-cont {
    padding-bottom: 15px;
}
.info-card p {
    max-width: 80%;
}
.info-card .well-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #5afc5f;
    background: linear-gradient(27deg, #30e539 0%, #5afc5f 100%);
    border-radius: 23px;
    z-index: 1;
    transition: all 125ms ease;
}
.info-card .well-bg.active {
    transform: rotate(3deg);
}
.info-card .content .centered-cont {
    text-align: center;
    padding: 40px 20px;
}
.info-card .content .centered-cont img {
    max-width: 120px;
    margin-bottom: 50px;
}
.info-card .content .centered-cont h5 {
    max-width: initial;
    padding-bottom: 30px;
}
.info-card .content .centered-cont p {
    max-width: initial;
}


@media (max-width: 1199px) {
    .card-section [class*="col-"] {
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .card-section .row {
        margin: 0 -15px;
    }
    .card-section [class*="col-"] {
        padding: 0 15px;
    }
}



/*DROP TABLE*/
.drop-table {
    background-color: #0a0e2b;
    border-radius: 40px;
    padding: 40px 40px 50px;
}
.table-nav {
    margin-bottom: 25px;
}
.table-nav a {
    transition: all 300ms ease-in-out;
    margin-bottom: 15px;
    display: inline-block;
}
.table-nav a:hover, .table-nav a:focus {
    background-color: #182167;
    transition: all 300ms ease-in-out;
    color: #fff;
}
.table-nav a.active, .table-nav a.active:hover, .table-nav a.active:focus {
    background-color: #131b53;
}
.drop-table .table-content {
    padding-right: 60px;
}
.drop-table .table-panel {
    display: none;
}
.drop-table .table-panel.active {
    display: block;
}
.drop-table .upper-content {
    min-height: 300px;
    padding-bottom: 100px;
}
.drop-table .lower-content {
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.drop-table .lower-content p {
    font-family: 'Stem-Medium', sans-serif;
    padding-bottom: 0;
}
.drop-table .lower-content a {
    margin-top: 18px;
    display: inline-block;
    font-size: initial;
}

@media (max-width: 1199px) {
    .drop-table {
        margin: 0 -20px;
    }
}
@media (max-width: 991px) {
    .drop-table {
        margin: initial;
    }
}
@media (max-width: 767px) {
    .drop-table .table-content {
        padding-right: 40px;
    }
    .drop-table .upper-content {
        min-height: initial;
    }
}
@media (max-width: 575px) {
    .drop-table .upper-content {
        padding-bottom: 80px;
    }
    .drop-table {
        padding: 30px 30px 40px;
    }
}




/*NFT SECTION*/
.hidden-nft-text {
    display: none;
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.slider-track {
    display: flex;
    pointer-events: none;
}
.slider-track.transforming {
    transition: all 300ms ease-in-out;
}
.nft-images {
    position: relative;
    margin-bottom: 60px;
}
.nft-images .nft-image {
    margin-right: 12px;
    margin-left: 12px;
}
.nft-images .nft-image.nft-image-scale .nft-image-cont img {
    transform: scale(1.2);
}
.nft-images .nft-image .nft-image-cont {
    overflow: hidden;
    padding-bottom: 7.5%;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.nft-images .nft-image .nft-content {
    background-color: #090b1f;
    padding: 30px 25px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.nft-images .nft-image .nft-content h6 {
    padding-bottom: 5px;
    line-height: 1;
}
.nft-images .nft-image .nft-content .usdt-price {
    padding-bottom: 20px;
    line-height: 1;
}
.nft-images .nft-image .green-box {
    background-color: #30e539;
    border-radius: 10px;
    display: inline-flex;
    padding: 9px 12px;
}
.nft-images .nft-image .green-box img {
    height: 39px;
    width: auto;
    margin-right: 15px;
}
.nft-images .nft-image .green-box p {
    padding-bottom: 0;
    color: #090b1f;
    font-family: 'Stem-Bold', sans-serif;
    line-height: 1;
}


.nft-images .nft-item {
    width: 70%;
    opacity: 0;
    transition: all 300ms ease-in-out, z-index 0s;
    pointer-events: none;
}
.nft-images .nft-item.removing {
    animation: nftAnimation 300ms forwards;
    animation-direction: reverse;
}
.nft-images .nft-item.adding {
    animation: nftAnimation 300ms forwards;
}
.nft-images .nft-item img {
    border-radius: 40px;
}
.nft-images .nft-item.first-item, .nft-images .nft-item.second-item {
    opacity: 1;
    pointer-events: all;
}
.nft-images .nft-item:hover, .nft-images .nft-item:focus {
    cursor: pointer;
}
.nft-images .nft-item.first-item {
    z-index: 2;
    position: relative;
    transform: translateY(60px);
}
.nft-images .nft-item.second-item {
    z-index: 1;
    transform: translateX(-58%);
}
.nft-controller {
    display: flex;
    justify-content: flex-end;
}
.nft-controller .prev-btn {
    transform: scale(-1, 1);
}
.nft-controller svg {
    fill: #fff;
    width: 40px;
}
.slick-arrow {
    display: none!important;
}
.cotroller-btn {
    margin-left: 10px;
    transition: all 300ms ease-in-out;
}
.cotroller-btn:hover, .cotroller-btn:focus {
    cursor: pointer;
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}
@keyframes nftAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.2) rotateX(45deg);
        transform: scale(1.2) rotateX(45deg);
    }
    100% {
    }
}



/*ROADMAP*/
.roadmap-vertical {
    display: none;
}
.roadmap-vertical {
    max-width: 500px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .roadmap-vertical {
        display: block;
    }
    .roadmap-horizontal {
        display: none;
    }
}


/*WHITEPAPER*/
.whitepaper-section {
    position: relative;
    background: url(../images/bg/whitepaper-bg-three-rows.png);
    background-size: cover;
    background-position: center;
}
.whitepaper-section .section-spacing {
    display: flex;
    padding: 300px 0;
    justify-content: center;
}
.whitepaper-section .btn-cont {
    display: inline-block;
    padding: 67px 80px;
    background: linear-gradient(135deg, #30e539 0%, #30e539 25%, #5afc5f 75%, #5afc5f 100%);
    background-size: 200%;
    background-position: center;
    border-radius: 30px;
    position: relative;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: 5px 5px 10px 1px rgb(191 191 191 / 65%);
    box-shadow: 5px 5px 10px 1px rgb(191 191 191 / 65%);
    z-index: 2;
}
.whitepaper-section .btn-cont:hover {
    transition: all 300ms ease-in-out;
    background-position: right;
}
.whitepaper-section .btn-cont .folder-img {
    width: 140px;
    position: absolute;
    top: -100px;
    right: -35px;
    pointer-events: none;
}
.whitepaper-section .btn-cont h4 {
    padding-bottom: 0;
    letter-spacing: 1px;
}
.whitepaper-section .bg-cont img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}
.whitepaper-section .bg-cont img.left-bg {
    height: 90%;
}
.whitepaper-section .bg-cont img.right-bg {
    right: 0;
}
.wp-cube1 {
    position: absolute;
    bottom: 7%;
    width: 150px;
    left: calc(50% - 450px);
    pointer-events: none;
    z-index: 1;
}
.wp-cube2 {
    position: absolute;
    bottom: -10%;
    width: 220px;
    right: calc(50% - 500px);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1599px) {
    .whitepaper-section .section-spacing {
        padding: 200px 0;
    }
    .wp-cube2 {
        width: 160px;
        right: calc(50% - 450px);
    }
}
@media (max-width: 1399px) {
    .whitepaper-section .section-spacing {
        padding: 150px 0;
    }
}
@media (max-width: 1199px) {
    .whitepaper-section .bg-cont img.left-bg {
        height: 100%;
        left: -10%;
    }
    .whitepaper-section .bg-cont img.right-bg {
        right: -10%;
    }
}
@media (max-width: 991px) {
    .whitepaper-section .bg-cont img.left-bg {
        height: 100%;
        left: -10%;
    }
    .whitepaper-section .bg-cont img.right-bg {
        right: -10%;
    }
    .whitepaper-section .section-spacing a {
        text-align: center;
    }
    .whitepaper-section .btn-cont {
        width: 80%;
        padding: 35px 40px;
        border-radius: 20px;
    }
    .whitepaper-section .btn-cont .folder-img {
        width: 100px;
        top: -70px;
    }
    .wp-cube1 {
        display: none;
    }
    .wp-cube2 {
        display: none;
    }
}
@media (max-width: 575px) {
    .whitepaper-section {
        display: none;
    }
}



/*PLATFORMS*/
.platform-images {
    margin-bottom: 60px;
}
.platform-images img {
    max-width: 300px;
    display: block;
    margin-bottom: 20px;
}
.mobile-images img {
    max-width: 220px;
    margin-right: 20px;
}
.platform-phone {
    margin-top: -100px;
    margin-bottom: -13%;
}

@media (max-width: 1399px) {
    .platform-phone {
        margin-top: -50px;
    }
}
@media (max-width: 1199px) {
    .platform-phone {
        margin-top: 0;
    }
}
@media (max-width: 991px) {
    #second-section {
        overflow: hidden;
    }
    .platform-phone {
        width: 90.1%;
        margin-left: auto;
        margin-right: -10%;
    }
    .mobile-images {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .platform-phone {
        width: 103%;
        margin-right: -20%;
    }
    .platform-images {
        display: flex;
    }
    .platform-images img {
        max-width: initial;
        width: calc(50% - 10px);
        margin-right: 20px;
    }
    .mobile-images {
        display: flex;
    }
    .mobile-images img {
        max-width: initial;
        width: calc(50% - 10px);
    }
}
@media (max-width: 575px) {
    .platform-phone {
        width: 124%;
        margin-right: -32%;
    }
    .platform-images {
        display: block;
    }
    .platform-images img {
        width: 75%;
    }
}




/*SUBSCRIBE*/
.subscription-section {
    overflow: hidden;
}
.subscription {
    max-width: 1100px;
    border-radius: 30px;
    padding: 60px 100px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}
.subscription .content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.subscription .content h4 {
    padding-bottom: 30px;
}
.subscription .content p {
    padding-bottom: 30px;
}
.subscription .img-cont img {
    position: absolute;
}
.subscription .img-cont .img-cube {
    width: 200px;
    top: calc(50% - 100px);
    left: -85px;
}
.subscription .img-cont .img-chip {
    bottom: -100px;
    width: 250px;
    right: -100px;
}
.subscription .form-line {
    position: relative;
}
.subscription form {
    position: relative;
}
.subscription .form-line label {
    position: absolute;
    top: 50%;
    left: 20px;
    color: rgb(39, 56, 82);
    opacity: 0.3;
    transition: all 0.1s linear 0s;
    pointer-events: none;
    transform: translateY(-50%);
    white-space: nowrap;
}
.subscription .form-line label.active {
    top: 8px;
    font-size: 10px;
    color: #0a0e2b;
    opacity: 1;
    transition: all 0.1s linear 0s;
    transform: translateY(0px);
}
.subscription .form-line input {
    font-size: 16px;
    padding: 24px 20px 10px;
    border: 1px solid rgb(209, 216, 223);
    width: 100%;
    border-radius: 10px;
}
.subscription form .form-submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 5px;
}
.subscription form .form-submit input {
    height: 100%;
    border: 0;
    background-color: #2df93c;
    padding: 0 15px;
    border-radius: 5px;
    transition: all 300ms ease-in-out;
}
.subscription form .form-submit input:hover {
    transition: all 300ms ease-in-out;
    background-color: #07df15;
}

@media (max-width: 991px) {
    .subscription .img-cont .img-cube {
        width: 150px;
        top: calc(50% - 75px);
    }
    .subscription .img-cont .img-chip {
        bottom: -75px;
        width: 150px;
        right: -75px;
    }
}
@media (max-width: 767px) {
    .subscription .img-cont .img-cube {
        width: 80px;
        top: calc(50% - 40px);
        left: -55px;
    }
    .subscription .img-cont .img-chip {
        bottom: -50px;
        width: 100px;
        right: -50px;
    }
    .subscription {
        border-radius: 20px;
        padding: 30px 50px;
    }
}



/*FOOTER*/
footer .content {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding: 30px 0 60px;
}
footer .content .footer-logo {
    width: 70px;
    margin-bottom: 5px;
}
footer .content p {
    padding-bottom: 0;
    padding-left: 6px;
    line-height: 1.2;
}
footer .content .img-cont {
    display: flex;
}
footer .content .img-cont img {
    margin-left: 20px;
    width: 150px;
}


@media (max-width: 767px) {
    footer .content .img-cont {
        flex-direction: column;
    }
    footer .content .img-cont img {
        width: 100px;
        margin-bottom: 10px;
    }
    footer .content .footer-logo {
        margin-bottom: 10px;
    }
    footer .content .left-content {
        max-width: 200px;
    }
}




/*WP*/

.post, .page {
    margin: 0;
}
.form-error-cont {
    margin-top: 20px;
}
.sib_signup_box_inside_1 {
    display: flex;
    flex-direction: column-reverse;
}
.form-line-cont {
    position: relative;
    margin-bottom: 20px;
}
.sib_loader {
    position: absolute;
    z-index: 2;
    width: 20px;
    top: 35px;
    left: -25px;
}
span.jq-toast-loader.jq-toast-loaded {
    display: none;
}
.jq-toast-single {
    padding-right: 20px!important;
}
.close-jq-toast-single {
    color: #000000;
}