html, body {
    padding: 0;
    margin: 0;
    text-shadow: none !important;
    box-sizing: border-box;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #474747;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
.main-page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
}

a {
    text-decoration: none !important;
}

:root {
    --bg-gradient-white: linear-gradient(#484962, #1c1d36);
    --bg-gradient-white-border: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    --bg-gradient-yellow: linear-gradient(135deg, #ed4c00, #e81923);
    --bg-gradient-yellow-border: linear-gradient(135deg, #e81923, #ed4c00);
    --bg-gradient-yellow-alt: linear-gradient(305deg, #ed4c00, #e81923);
}

.hero-area {
    width: 100%;
    height: auto;
    padding-bottom: 52px;
    position: relative;
    z-index: 99;
    background: linear-gradient(0deg, #88aeff, transparent, transparent);
}

.hero-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: transparent url(../images/banner-bg.png) no-repeat bottom left;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.header {
    width: 100%;
    background: #ffffff;
    position: relative;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    transition: all 0.5s ease-in-out;
}

.header.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.16);
}

.header.sticky::after {
    max-width: 100%;
}

.navbar {
    width: 100%;
    position: relative;
    justify-content: space-between;
    padding: 8px 0;
    z-index: 102;
    transition: all 0.5s ease-in-out;
}

.navbar-brand {
    height: 74px;
}

.navbar-nav a.nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2a3342;
    padding: 0 15px !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav a.nav-link:hover, .navbar-nav a.nav-link.active {
    color: #e81923;
}

.navbar-brand img {
    height: 100%;
}

.navbar .navbar-collapse {
    flex-grow: 0;
}

.navbar .nav-right {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

button.common-btn {
    width: fit-content;
    height: 42px;
    background: #e81923;
    padding: 0 28px;
    border: 2px solid transparent;
    border-radius: 50px;
    outline: 0;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease-in-out;
}

button.common-btn.line {
    font-weight: 500;
    background: #e81923;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

button.common-btn.line:hover {
    background: transparent;
    border: 2px solid #e81923;
    color: #e81923;
}

.banner {
    margin: 40px 0 0 0;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.top-banner .banner-left {
    width: 94%;
    padding-left: 60px;
}

.banner-right {
    width: 88%;
}

.banner h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 130%;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.banner h2 span{
    font-weight: 300;
}

.banner h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 152%;
    margin-bottom: 15px;
}

@media (max-width: 1199.98px) {
    .navbar-brand {
        height: 68px;
    }

    .navbar-nav a.nav-link {
        font-size: 15px;
        line-height: 21px;
        padding: 0 12px !important;
    }

    .hero-area {
        padding-bottom: 40px;
    }

    .top-banner .banner-left {
        width: 96%;
        padding-left: 32px;
    }

    .banner h2 {
        font-size: 40px;
    }

    .banner h4 {
        font-size: 16px;
        line-height: 24px;
    }

    button.common-btn {
        height: 40px;
        padding: 0 20px;
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand {
        height: 60px;
    }

    .navbar-nav a.nav-link {
        font-size: 15px;
        line-height: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0 15px;
    }

    .navbar-nav a.nav-link:last-child {
        border-bottom: 0;
    }

    .navbar .navbar-collapse {
        width: 100%;
        margin: 7px auto 0 !important;
        position: relative;
    }

    .navbar-brand {
        order: 1
    }

    .navbar .nav-right {
        order: 2;
        flex-grow: 1;
        justify-content: flex-end;
        padding: 0 20px 0 0;
    }

    .navbar button.navbar-toggler {
        order: 3;
        font-size: 28px;
        padding: 0 !important;
        color: #e81923 !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar .navbar-collapse {
        order: 4
    }
}

@media (max-width: 910px) {
    .hero-area {
        padding-bottom: 32px;
    }

    .top-banner .banner-left {
        width: 100%;
        padding-left: 16px;
    }

    .banner h2 {
        font-size: 30px;
    }

    .banner h4 {
        font-size: 14.8px;
    }

    button.common-btn {
        height: 32px;
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .banner {
        margin: 0 !important;
    }

    .banner-right {
        padding: 20px 12px;
        width: 100%;
    }

    .hero-area {
        padding-bottom: 20px;
    }

    .top-banner .banner-left {
        text-align: center;
        padding-left: 0;
    }

    .banner h2 {
        font-size: 26px;
        margin: 30px 0 10px 0;
    }

    .banner h4 {
        font-size: 14px;
    }
}

.hero-area .token-frame {
    width: 100%;
    max-width: 880px;
    height: auto;
    background: var(--bg-gradient-white);
    border-radius: 4px;
    padding: 48px 80px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 110%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.hero-area .token-frame.fade-up {
    opacity: 1;
    top: 100%;
}

.hero-area .token-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    background: var(--bg-gradient-white-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.hero-area .token-frame h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.hero-area .token-frame .content {
    display: block;
    width: 100%;
    height: auto;
    background: var(--bg-gradient-yellow);
    border-radius: 4px;
    padding: 40px 48px;
    margin-bottom: 20px;
    position: relative;
}

.hero-area .token-frame .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 2px solid transparent;
    background: var(--bg-gradient-yellow-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.hero-area .token-frame .content .top-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hero-area .token-frame .content .top-row h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 0;
}

.hero-area .token-frame .content .progress {
    width: 100%;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    padding: 4px;
}

.hero-area .token-frame .content .progress .progress-bar {
    height: 24px;
    background: #d24400;
    border-radius: 4px;
    transition: all 1.5s ease-in-out;
}

.hero-area .token-frame .content .progress .progress-bar.null {
    width: 0 !important;
}

@media (max-width: 1199.98px) {
    .hero-area .token-frame {
        max-width: 750px;
        padding: 40px 65px;
    }

    .hero-area .token-frame h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero-area .token-frame .content {
        padding: 32px 40px;
        margin-bottom: 15px;
    }

    .hero-area .token-frame .content .progress {
        height: 28px;
        padding: 3px;
    }

    .hero-area .token-frame .content .progress .progress-bar {
        height: 22px;
    }
}

@media screen and (max-width: 768px) {
    .hero-area .token-frame {
        max-width: calc(100% - 30px);
        padding: 20px 10px;
    }

    .hero-area .token-frame h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-area .token-frame .content .top-row {
        margin-bottom: 6px;
    }

    .hero-area .token-frame .content .top-row h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-area .token-frame .content {
        padding: 20px 15px;
        margin-bottom: 10px;
    }

    .hero-area .token-frame .content .progress {
        height: 22px;
        padding: 2px 2px 0;
    }

    .hero-area .token-frame .content .progress .progress-bar {
        height: 18px;
    }
}

.rings-bg {
    width: 100%;
    background: transparent url(../images/rings-bg.png) repeat top center;
    background-size: cover;
}

.striped-bg {
    width: 100%;
    background: transparent url(../images/striped-bg.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0;
}

h3 {
    font-size: 48px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 15px;
}

h5 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

@media (max-width: 1199.98px) {
    h3 {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 12px;
    }

    h5 {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 12px;
    }

    p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    h5 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    p {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 10px;
    }
}

.owl-coins .owl-stage, .owl-eco .owl-stage {
    padding-top: 50px;
    display: flex;
    align-items: stretch;
    position: relative;
}

.owl-eco .owl-stage {
    padding-top: 80px;
}

.coin-card {
    width: 100%;
    height: 100%;
    background: #cadafd;
    background-size: contain;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    z-index: 10;
    transition: all 0.7s ease-in-out;
    border-bottom: 4px solid transparent;
}

.coin-card::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: var(--bg-gradient-white-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.3s ease-in-out;
}

.coin-card .glow {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.coin-card .glow::before {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e81923;
    filter: blur(50px);
    -webkit-filter: blur(50px);
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 0;
}

.coin-card .coin, .coin-card .coin2 {
    width: 94px;
    height: 94px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 0;
}

.coin-card .coin2 {
    width: 150px;
    height: 150px;
}

.coin-card .coin img, .coin-card .coin2 img {
    width: 100%;
    height: 100%;
}

.coin-card .card-body {
    padding: 0 40px 40px;
    text-align: center;
}

.coin-card h4 {
    font-size: 26px;
    line-height: 120%;
    font-weight: 600;
    color: #00215e;
    margin: 16px 0 8px 0;
    transition: all 0.3s ease-in-out;
}

.coin-card h5 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.coin-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

.owl-eco .coin-card {
    padding-top: 100px;
}

.owl-eco .coin-card:hover {
    background: var(--bg-gradient-yellow);
}

.owl-eco .coin-card:hover::before {
    background: var(--bg-gradient-yellow-border);
}

.owl-eco .coin-card .card-body {
    padding: 0 27px 27px;
}

.owl-eco .coin-card:hover h5, .owl-eco .coin-card:hover p {
    color: #161730;
}

@media (max-width: 1199.98px) {
    .coin-card {
        padding: 28px;
    }

    .coin-card .coin {
        width: 88px;
        height: 88px;
    }

    .coin-card .coin2 {
        width: 130px;
        height: 130px;
    }

    .coin-card .card-body {
        padding: 0 25px 25px;
    }

    .coin-card h4 {
        font-size: 22px;
        line-height: 32px;
        margin: 16px 0;
    }

    .coin-card h5 {
        font-size: 23px;
        line-height: 29px;
        margin-bottom: 12px;
    }

    .coin-card p {
        font-size: 15px;
        line-height: 21px;
    }

    .owl-eco .coin-card {
        padding-top: 80px;
    }

    .owl-eco .coin-card .card-body {
        padding: 0 22px 22px;
    }
}

@media screen and (max-width: 768px) {
    .coin-card {
        padding: 24px 20px;
    }

    .coin-card .coin {
        width: 95px;
        height: 95px;
    }

    .coin-card .coin2 {
        width: 130px;
        height: 130px;
    }

    .coin-card .card-body {
        padding: 0 15px 15px;
    }

    .coin-card h4 {
        font-size: 19px;
        line-height: 24px;
        margin: 12px 0;
    }

    .coin-card h5 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .coin-card p {
        font-size: 13px;
        line-height: 17px;
    }

    .owl-eco .coin-card {
        padding-top: 85px;
    }

    .owl-eco .coin-card .card-body {
        padding: 0 15px 15px;
    }
}

.token-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.token-row .token, .token-row .token-first {
    width: calc((100% - 48px) / 5);
    min-height: 136px;
    background: var(--bg-gradient-white);
    background-size: contain;
    border-radius: 4px;
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.token-row .token::before, .token-row .token-first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    background: var(--bg-gradient-white-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.3s ease-in-out;
}

.token-row .token h3, .token-row .token-first h3 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    color: #161730;
    margin-bottom: 0;
}

.token-row .token h4 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.token-row .token h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #e81923;
    margin-top: 10px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.token-row .token h6 {
    font-size: 14.8px;
    line-height: 18.3px;
    font-weight: 500;
    margin-bottom: 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.token-row .token-first {
    background: var(--bg-gradient-yellow);
}

.token-row .token-first::before {
    background: var(--bg-gradient-yellow-border) border-box;
}

.token-row .token:hover {
    background: linear-gradient(#fff, #fff);
}

.token-row .token:hover::before {
    background: var(--bg-gradient-yellow-border) border-box;
}

.token-row .token:hover h4, .token-row .token:hover h6 {
    color: #d24400;
}

.token-row .token:hover h5 {
    color: #474747;
}

@media (max-width: 1199.98px) {
    .token-row {
        gap: 10px;
    }

    .token-row .token, .token-row .token-first {
        width: calc((100% - 40px) / 5);
        min-height: 120px;
        padding: 0 10px;
    }

    .token-row .token h3, .token-row .token-first h3 {
        font-size: 27px;
        line-height: 33px;
    }

    .token-row .token h4 {
        font-size: 22px;
        line-height: 29px;
    }

    .token-row .token h5 {
        font-size: 16px;
        line-height: 21px;
        margin-top: 8px;
    }

    .token-row .token h6 {
        font-size: 13px;
        line-height: 16px;
    }
}

@media screen and (max-width: 768px) {
    .token-scroll {
        width: calc(100% + 30px);
        margin: 0 -15px;
        padding: 0 15px;
        overflow-y: hidden;
        overflow-x: scroll;
    }

    .token-row {
        width: max-content;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .token-row .token, .token-row .token-first {
        width: calc((100% - 90px) / 5);
        min-height: 120px;
        padding: 0 10px;
    }

    .token-row .token h3, .token-row .token-first h3 {
        font-size: 27px;
        line-height: 33px;
    }

    .token-row .token h4 {
        font-size: 22px;
        line-height: 29px;
    }

    .token-row .token h5 {
        font-size: 16px;
        line-height: 21px;
        margin-top: 8px;
    }

    .token-row .token h6 {
        font-size: 13px;
        line-height: 16px;
    }
}

.roadmap-row {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    position: relative;
    z-index: 20;
}

.roadmap-row .roadmap-box {
    width: calc(50% - 14px);
    height: 300px;
    background: var(--bg-gradient-white);
    border-radius: 4px;
    padding: 0px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.roadmap-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    background: var(--bg-gradient-white-border) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.roadmap-box .glow {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.roadmap-box .glow::before {
    content: '';
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e81923;
    filter: blur(45px);
    -webkit-filter: blur(45px);
    position: absolute;
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
}

.roadmap-box .glow .l-num {
    font-size: 160px;
    font-weight: 800;
    color: #515161;
    position: absolute;
    top: -40px;
    right: 10px;
    z-index: -1;
}

.roadmap-box .box-body {
    display: block;
    padding-right: 70px;
}

.roadmap-box .box-body h4 {
    font-size: 32px;
    font-weight: 800;
    line-height: 41px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.roadmap-box .box-body ul {
    padding-left: 25px;
    margin-bottom: 0;
}

.roadmap-box .box-body ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199.98px) {
    .roadmap-row {
        gap: 20px;
    }

    .roadmap-box .glow .l-num {
        font-size: 145px;
        z-index: -1;
    }

    .roadmap-row .roadmap-box {
        width: calc(50% - 10px);
        height: 270px;
        padding: 0px 40px;
    }

    .roadmap-box .box-body {
        padding-right: 50px;
    }

    .roadmap-box .box-body h4 {
        font-size: 27px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .roadmap-box .box-body ul li {
        font-size: 15px;
        line-height: 21px;
    }
}

@media screen and (max-width: 768px) {
    .roadmap-row {
        gap: 10px;
    }

    .roadmap-row .roadmap-box {
        width: 100%;
        height: auto;
        padding: 25px 15px;
    }

    .roadmap-box .box-body {
        padding-right: 0px;
    }

    .roadmap-box .box-body h4 {
        font-size: 22px;
        line-height: 29px;
        margin-bottom: 10px;
    }

    .roadmap-box .box-body ul li {
        font-size: 13px;
        line-height: 18px;
    }
}

.roadmap-box:hover {
    background: var(--bg-gradient-yellow-alt);
}

.roadmap-box:hover::before {
    background: var(--bg-gradient-yellow-border);
}

.roadmap-box:hover .glow .l-num {
    color: #e81923;
}

.roadmap-box:hover .box-body h4, .roadmap-box:hover .box-body ul li {
    color: #161730;
}

@keyframes right-move {
    0% {
        right: -22px;
    }
    90% {
        right: -2px;
    }
    100% {
        right: -17px;
    }
}

@keyframes down-move {
    0% {
        bottom: -8px;
    }
    90% {
        bottom: 11px;
    }
    100% {
        bottom: -3px;
    }
}

@keyframes left-move {
    0% {
        left: -22px;
    }
    90% {
        left: -2px;
    }
    100% {
        left: -17px;
    }
}

.roadmap-box .arrow {
    width: 64px;
    height: 40px;
    background: transparent url(../images/steps-arrow.svg) no-repeat left top;
    background-size: 100% 100%;
    position: absolute;
    z-index: -1;
    right: -28px;
    bottom: 60px;
}

.roadmap-box .arrow.right {
    animation: right-move 1s linear infinite;
}

.roadmap-box .arrow.down {
    transform: rotate(90deg);
    right: 70px;
    bottom: -14px;
    animation: down-move 1s linear infinite;
}

.roadmap-box .arrow.left {
    transform: rotate(180deg);
    right: auto;
    left: -28px;
    bottom: 60px;
    animation: left-move 1s linear infinite;
}

@media (max-width: 1199.98px) {
    .roadmap-box .arrow {
        width: 58px;
        height: 36px;
    }
}

@media screen and (max-width: 768px) {
    .roadmap-box .arrow {
        width: 35px;
        height: 22px;
    }

    .roadmap-box .arrow.right, .roadmap-box .arrow.down, .roadmap-box .arrow.left {
        transform: rotate(90deg);
        left: auto;
        right: 20px;
        bottom: -14px;
    }

    @keyframes right-move {
        0% {
            bottom: 0px;
        }
        90% {
            bottom: 5px;
        }
        100% {
            bottom: -5px;
        }
    }
    @keyframes down-move {
        0% {
            bottom: 0px;
        }
        90% {
            bottom: 5px;
        }
        100% {
            bottom: -5px;
        }
    }
    @keyframes left-move {
        0% {
            bottom: 0px;
        }
        90% {
            bottom: 5px;
        }
        100% {
            bottom: -5px;
        }
    }
}

/*.........................................................................................................*/

dl, ol, ul {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

li {
    list-style-type: none
}

.nav-top {
    width: 100%;
    padding: 6.4px 0;
    background-color: #e81923;
}

.nav-top .contact-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-top .contact-div .contact-ul li {
    display: inline-block;
    margin-right: 48px;
}

.nav-top .contact-div .contact-ul li:last-child {
    margin-right: 0;
}

.nav-top .contact-div .icon-ul li {
    display: inline-block;
    margin-left: 12px;
}

.nav-top .contact-div .icon-ul li:first-child {
    margin-left: 0;
}

.nav-top .contact-div ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
    transition: all 0.7s ease;
}

.nav-top .contact-div ul li a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2 !important;
}

.nav-top .contact-div ul li a span {
    margin-left: 6px;
}

.section {
    padding: 120px 0;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.heading-area {
    display: block;
    width: 48%;
    text-align: center;
    margin: 0 auto 52px;
}
.heading-area h3, .banner h2, h3{
    color: #00215e;
}

.section2-ul {
    display: flex;
    margin-top: 24px;
    width: 100%;
}

.section2-ul ul {
    margin-left: 44px;
}

.section2-ul ul:first-child {
    margin: 0;
}

.section2-ul ul li {
    display: flex;
    align-items: flex-start;
    color: #474747;
    margin-bottom: 12px;
}

.section2-ul ul li svg {
    overflow: visible;
    color: #ffffff;
    width: 34px;
    height: 34px;
    stroke-width: 3px;
    padding: 8px;
    margin-right: 12px;
    border-radius: 100px;
    background-color: #e81923;
}

.how-text {
    padding-right: 30px;
}

.coin-card img {
    overflow: visible;
    width: 100px !important;
    height: 100px !important;
    padding: 16px;
    border: 4px solid #ffffff !important;
    border-radius: 50%;
    background-color: #e81923;
    background: linear-gradient(180deg, #ff3640 20%, #c90009) !important;
}

.owl-dot:hover, .owl-dot:active, .owl-dot:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.owl-coins .owl-stage, .owl-eco .owl-stage {
    padding-top: 52px;
!important;
}

.coin-card:hover {
    transform: translateY(-16px);
    border-color: #e81923;
}

.faq-section {
    background: linear-gradient(180deg, rgba(136, 174, 255, 0.1), transparent, #afc8ff);
}

.accordion .card {
    border: none;
    border-radius: 0;
    flex-direction: column;
    padding: 0;
    background-color: transparent;
}

.accordion .card .my-faq {
    padding: 20px 24px;
    margin: 4px 8px;
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
}

.accordion .card .my-faq:first-child {
    margin-top: 0;
}

.accordion .card a.card-header {
    font-size: 16.4px;
    font-weight: 500;
    color: #474747;
    padding: 0;
    border: none;
    background-color: transparent;
}

.accordion .card a.card-header:hover {
    text-decoration: none;
}

.accordion .card a.card-header span {
    margin-right: 4px;
}

.accordion .card .card-body {
    padding: 16px 0 0 0;
    margin-top: 16px;
    border: none;
    border-top: 1px solid rgba(000, 000, 000, 0.16);
    background-color: transparent;
}

.accordion .card .card-body p {
    font-size: 15px;
    font-weight: 400;
    line-height: 152%;
    margin-bottom: 0;
    text-shadow: none;
    color: #6e6e6e;
}

.accordion .card .faq-ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion .card .faq-ul li {
    display: flex;
    justify-content: space-between;
    margin-left: 8px;
}

.accordion .card .faq-ul li:first-child {
    margin-left: 0;
}

.accordion .card .faq-ul li svg {
    width: 22px;
    height: 22px;
    color: #e81923;
    transition: all 0.7s ease;
}

.accordion .card .faq-ul li .collapsed svg {
    transform: rotate(-180deg);
}

.banner-img2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 74%;
    margin: 0 auto 68px auto;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.16);
}

.banner-img2 .banner-text2 {
    width: 56%;
    padding: 12px 24px 12px 52px;
}

.banner-img2 .banner-bg {
    width: 44%;
}

.banner-img2 .banner-bg img {
    width: 100%;
    height: 230px;
    -o-object-fit: fill;
    object-fit: fill;
    -o-object-position: center;
    object-position: center;
    border-radius: 0 20px 20px 0;
}

.banner-img2 .banner-bg .bg-img2 {
    display: none;
}

.banner-img2 h3, .banner-img2 p {
    color: #2a3342;
    line-height: 120%;
    text-shadow: none;
    margin-bottom: 16px;
}

.banner-img2 p {
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0 !important;
}

footer {
    position: relative;
    width: 100%;
    background-color: #afc8ff;
    z-index: 1;
}

.footer-clr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: #00215e;
    z-index: -1;
}

footer .f-logo {
    width: auto;
    height: 80px;
    margin-bottom: 20px;
}

footer p {
    font-weight: 300;
    color: #e8ecff;
}

footer .f-row {
    justify-content: space-between;
    align-items: flex-start;
}

footer .f-row .col-md-4 {
    max-width: 30%;
}

footer .h5 {
    font-weight: 500;
    color: #ffffff;
}

footer ul {
    margin-top: 24px;
    padding: 0;
}

footer ul li {
    font-size: 16px;
    font-weight: 300;
    color: #e8ecff;
    margin-bottom: 16px;
}

footer ul li svg {
    width: 22px;
    height: 22px;
    overflow: initial;
    margin-right: 12px;
}

footer ul li .icn-a {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    color: #e8ecff;
    transition: all 0.7s ease;
}

footer ul li .icn-a:hover {
    margin-left: 8px;
}

footer .newsletter-form {
    margin-top: 25px;
}

footer .newsletter-form input {
    border-radius: 50px 0 0 50px;
    height: 48px;
    outline: none !important;
    border: none;
    box-shadow: none !important;
}

footer .form-control {
    color: #474747 !important;
    border: none !important;
    background-color: #ffffff;
}

footer button {
    background-color: #e81923;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 0 50px 50px 0;
    transition: all 0.7s ease;
    outline: none;
    box-shadow: none;
}

footer button:focus, footer button:active, footer button:hover {
    outline: none;
    box-shadow: none;
}

footer .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1490196078);
}

footer .footer-bottom p {
    color: #e8ecff;
    margin-bottom: 0;
    font-size: 14px;
}

footer .footer-bottom p a {
    color: #e81923 !important;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

footer .social-icon-area {
    text-align: right;
}

footer .social-icon-area .social-icon a {
    padding-left: 20px;
    margin: 0;
}

footer .social-icon-area .social-icon a svg {
    width: 22px;
    height: 22px;
    overflow: initial;
    color: #ffffff;
    transition: all 0.7s ease;
}

footer .social-icon-area .social-icon a:active svg, footer .social-icon-area .social-icon a:hover svg {
    transform: translateY(-4px);
}

.about-card .coin-card {
    background: #dae5ff !important;
    border-radius: 0;
    transform: none !important;
    transition: none !important;
    border: none !important;
}
.about-card .coin-card h4 {
    font-size: 34.8px;
    line-height: 120%;
    margin: 8px 0 16px 0;
}
.about-card .coin-card::before {
    display: none !important;
}
.about-card .col-md-4:first-child .coin-card {
    border-radius: 20px 0 0 20px;
}
.about-card .col-md-4:last-child .coin-card{
    border-radius: 0 20px 20px 0;
}
.about-card .col-md-4:first-child .coin-card, .about-card .col-md-4:last-child .coin-card{
    background: #cadafd !important;
}


@media (max-width: 1199.98px) {
    .nav-top {
        padding: 8px 0;
    }

    .nav-top .contact-div .contact-ul li {
        margin-right: 40px;
    }

    .nav-top .contact-div .icon-ul li {
        margin-left: 10px;
    }

    .nav-top .contact-div ul li a svg {
        width: 16px;
        height: 16px;
    }

    .section {
        padding: 100px 0;
    }

    .heading-area {
        width: 52%;
        margin: 0 auto 44px;
    }

    .owl-coins .owl-stage, .owl-eco .owl-stage {
        padding-top: 44px;
    !important;
    }

    .section2-ul ul {
        margin-left: 28px;
    }

    .section2-ul ul li svg {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .how-text {
        padding-right: 20px;
    }

    .coin-card img {
        width: 88px !important;
        height: 88px !important;
        padding: 14px;
    }

    .accordion .card .my-faq {
        padding: 18px 20px;
    }

    .accordion .card a.card-header {
        font-size: 16px;
    }

    .accordion .card .card-body {
        padding-top: 12px;
        margin-top: 12px;
    }

    .accordion .card .card-body p {
        font-size: 14px;
    }

    .accordion .card .faq-ul li svg {
        width: 20px;
        height: 20px;
    }

    .banner-img2 .banner-text2 {
        padding: 12px 16px 12px 40px;
    }

    .banner-img2 .banner-bg img {
        height: 200px;
    }

    footer .f-logo {
        height: 68px;
    }

    footer p {
        font-size: 14px;
    }

    footer .f-row .col-md-4 {
        max-width: 33.3%;
    }

    footer .h5 {
        font-size: 22px;
    }

    footer ul li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    footer .footer-bottom {
        margin-top: 32px;
    }

    .banner-img2 {
        width: 80%;
        margin: 0 auto 56px auto;
    }

    .banner-img2 h3 {
        font-size: 32px;
    }
    .about-card .coin-card h4 {
        font-size: 26.8px;
        margin: 4px 0 12px 0;
    }
}

@media (max-width: 991.98px) {
    .nav-top {
        padding: 6px 0;
    }

    .nav-top .contact-div .contact-ul li {
        margin-right: 32px;
    }

    .nav-top .contact-div .icon-ul li {
        margin-left: 8px;
    }

    .section {
        padding: 80px 0;
    }

    p {
        font-size: 15px;
        line-height: 22.8px;
    }

    .heading-area {
        width: 64%;
        margin: 0 auto 36px;
    }

    .owl-coins .owl-stage, .owl-eco .owl-stage {
        padding-top: 36px;
    !important;
    }

    .section2-ul ul {
        margin-left: 20px;
    }

    .how-text {
        padding-right: 0;
    }

    .coin-card img {
        width: 74px !important;
        height: 74px !important;
        padding: 12px;
        border: 3px solid #ffffff !important;
    }

    .accordion .card .my-faq {
        padding: 16px 16px;
    }

    .accordion .card a.card-header {
        font-size: 15px;
    }

    .accordion .card {
        margin-top: 12px;
    }

    .banner-img2 {
        width: 88%;
        margin: 0 auto 48px auto;
    }

    .banner-img2 .banner-text2 {
        padding: 8px 12px 8px 24px;
    }

    footer .h5 {
        font-size: 20px;
    }

    footer ul {
        margin-top: 20px;
    }

    footer ul li svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    footer .footer-bottom {
        margin-top: 24px;
        padding: 16px 0;
    }

    footer .social-icon-area .social-icon a {
        padding-left: 12px;
    }

    footer .social-icon-area .social-icon a svg {
        width: 20px;
        height: 20px;
    }

    footer .f-logo {
        height: 60px;
    }

    .banner-img2 h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .banner-img2 .banner-bg img {
        height: 180px;
    }
    .about-card .coin-card h4 {
        font-size: 20.8px;
        margin: 2px 0 8px 0;
    }
}

@media (max-width: 880px) {
    .section {
        padding: 68px 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    footer .f-row .col-md-4 {
        padding: 0 8px;
    }

    footer button {
        padding: 12px;
    }
}

@media (max-width: 767.98px) {
    .about-card .col-md-4:first-child .coin-card {
        border-radius: 20px 20px 0 0;
    }
    .about-card .col-md-4:last-child .coin-card{
        border-radius: 0 0 20px 20px;
    }
    .nav-top {
        padding: 4px 0;
    }

    .nav-top .contact-div .contact-ul li {
        display: block;
        margin-right: 0;
    }

    .nav-top .contact-div .icon-ul li {
        margin-left: 6px;
    }

    .nav-top .contact-div ul li a {
        font-size: 12px;
    }

    .nav-top .contact-div ul li a svg {
        width: 15px;
        height: 15px;
    }

    .nav-top .contact-div ul li a span {
        margin-left: 3px;
    }

    .navbar .nav-right {
        padding: 0 12px 0 0;
    }

    .section {
        padding: 40px 0;
    }

    p {
        font-size: 14px;
        line-height: 22px;
    }

    .heading-area {
        width: 100%;
        margin: 0 auto 28px;
    }

    .owl-coins .owl-stage, .owl-eco .owl-stage {
        padding-top: 28px;
    !important;
    }

    .section2-ul {
        display: block;
    }

    .section2-ul ul {
        margin-left: 0;
    }

    .section2-ul ul li svg {
        width: 26px;
        height: 26px;
        stroke-width: 2.4px;
        margin-right: 6px;
    }

    .coin-card {
        padding: 24px 20px;
    }

    .coin-card img {
        width: 64px !important;
        height: 64px !important;
        padding: 10px;
    }

    .accordion .card {
        margin-top: 8px;
    }

    .accordion .card a.card-header {
        font-size: 14px;
    }

    .banner-img2 {
        display: block;
        width: 92%;
        margin: 0 auto 40px auto;
    }

    .banner-img2 .banner-bg img {
        height: auto;
        border-radius: 0 0 20px 20px;
    }

    .banner-img2 .banner-bg .bg-img1 {
        display: none;
    }

    .banner-img2 .banner-bg .bg-img2 {
        display: block;
    }

    .banner-img2 .banner-bg {
        width: 100%;
    }

    .banner-img2 .banner-text2 {
        width: 100%;
        text-align: center;
        padding: 24px 12px 4px 12px;
    }

    footer .f-row .col-md-4 {
        max-width: 100%;
    }

    footer .h5 {
        font-size: 18px;
        padding-top: 20px;
        margin-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    footer .form-control {
        font-size: 15px;
        padding: 6px 12px;
    }

    footer .footer-bottom {
        margin-top: 16px;
    }

    footer .social-icon-area {
        padding-top: 10px;
        text-align: left;
    }

    .banner-img2 h3 {
        font-size: 22px;
    }

    .footer-clr {
        height: 86%;
    }
}

