* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: Inter, "Inter Fallback", system-ui, sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn {
    position: relative;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    border-radius: 30px;
    background-color: #0F5FFF;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

/* Banner */
main .hero-section {
  width: 100vw;
  min-height: 800px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  padding-bottom: 10vh;
  overflow: hidden;
}

main .banner {
    position: relative;
    display: flex;
    align-items: center;
}

main .activity-text-box {
    position: absolute;
    left: 0;
    z-index: 20;
    width: 520px;
}

main .activity-text-box h1 {
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    white-space: pre-line;
    color: #fff;
    line-height: 52px;
}

main .activity-text-box h4 {
    font-size: 22px;
    font-weight: 400;
    white-space: pre-line;
    color: hsla(0, 0%, 100%, .7);
    font-style: normal;
    line-height: 30px;
    margin-right: 20px;
    padding-bottom: 48px;
    margin-top: 20px;
}

main .activity-text-box p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 20px;
}

main .activity-text-box .action {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

main .activity-text-box .action span {
    width: 352px;
    padding: 16px;
    padding-left: 0;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 700;
}

main .activity-text-box .action .btn {
    padding: 16px 24px;
}

main .banner .video-box {
    position: relative;
    width: 100%;
    height: auto;
    cursor: pointer;
}

main .banner .video-box img {
    width: 100%;
    height: auto;
}

/* Coins List */
.coins-list {
    overflow: hidden;
    height: 36px;
    background-color: var(--color-primary, #0047ff);
}

.coins-list ul {
    display: flex;
    width: fit-content;
    gap: 50px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-white, #fff);
    line-height: 36px;
    list-style: none;
}

/* Perpetual Futures */
.inner {
    background: #0a0b0d;
    overflow-x: hidden;
}

.perpetual {
    position: relative;
    width: 1180px;
    padding: 50px 0 0;
    margin: auto;
}

.perpetual p {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-bottom: 19px;
}

.perpetual p:hover {
    color: rgba(255, 255, 255, 0.7);
}

.perpetual p img {
    filter: invert(1);
    margin-right: 16px;
    width: 16px;
    height: 14px;
}

.perpetual .list {
    position: relative;
    display: flex;
    gap: 24px;
    flex-flow: row nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.perpetual .list::after,
.perpetual .list::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: -50px;
    flex: 0 0 24px;
    filter: invert(1);
    background-image: url(../img/arrow-left.svg);
    background-size: cover;
    transform: translateY(-50%);
    opacity: 0.1;
}

.perpetual .list::after {
    left: auto;
    right: -50px;
    opacity: 1;
    background-image: url(../img/arrow-right.svg);
}

.perpetual .list .item {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 277px;
    height: 122px;
    flex: 0 0 277px;
    cursor: pointer;
    border: 2px solid #141519;
    border-radius: 10px;
    transition: border .1s linear;
}

.perpetual .list .item:hover {
    border: 2px solid #0F5FFF;
}

/* Trading */
.trading {
    box-sizing: border-box;
    width: 1180px;
    padding: 80px 0;
    margin: auto;
}

.trading h2 {
    width: 60%;
    margin-bottom: 40px;
    font-size: 60px;
    font-weight: 500;
    font-style: normal;
    line-height: 74px;
}

.trading h2 span {
    color: #0F5FFF;
}

.trading ul {
    display: flex;
    overflow: auto;
    width: 100%;
    min-width: 0;
    scrollbar-width: none;
    list-style: none;
    margin-bottom: 32px;
}

.trading ul li {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    line-height: 20px;
    cursor: pointer;
}

.trading ul li:not(:first-child) {
    margin-left: 16px;
}

.trading ul li.active {
    background: #23242B;
    border-radius: 22px;
    transition: background-color .3s;
}

.trading table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.trading table thead tr th {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    background: #FFFFFF;
    line-height: 20px;
    text-align: left;
    padding: 10px 20px;
}

.trading table thead tr th:last-child {
    text-align: right;
}

.trading table tbody tr td {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    padding: 17px 20px;
    transition: all 0.3s;
}

.trading table tbody tr:hover td {
    background: #141519;
}

.trading table tbody tr td .name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trading table tbody tr td .name img {
    width: 30px;
    border-radius: 50%;
}

.trading table tbody tr td span {
    color: rgba(255, 255, 255, 0.4);
}

.trading table tbody tr td s {
    color: #E2464A;
    text-decoration: none;
}

.trading table tbody tr td .chart {
    width: 70px;
}

.trading table tbody tr td:last-child {
    text-align: right;
}

.trading table tbody tr td .btn {
    display: inline-block;
    font-size: 12px;
    height: 32px;
    padding: 8px 24px !important;
}

.trading .btn-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.trading .btn-action .btn {
    font-size: 100%;
    padding: 16px 32px;
    text-align: center;
    box-sizing: border-box;
}

/* Products */
.products {
    position: relative;
    padding: 0 20px;
    margin: 80px auto 0;
}

.products .products-shape {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 10;
    width: 325px;
    height: 105px;
}

.products .products-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 80px;
    padding-bottom: 105px;
    background: #000;
    flex-direction: column;
    border-radius: 20px 20px 0;
}

.products h2 {
    margin-bottom: 40px;
    font-size: 60px;
    font-weight: 500;
    color: var(--color-white, #fff);
    font-style: normal;
    line-height: 74px;
}

.products h2 span {
    color: #0F5FFF;
}

.products .products-box {
    width: 1180px;
}

.products .products-box .products-box-top {
    display: flex;
    width: 100%;
    gap: 50px;
    margin-top: 80px;
    margin-bottom: 40px;
}

.products .products-box .products-box-top .products-box-top-left {
    display: flex;
    justify-content: space-between;
    width: 60%;
    flex-direction: column;
}

.products .products-box .products-box-top h4 {
    font-size: 40px;
    font-weight: 500;
    white-space: pre-wrap;
    color: var(--color-white, #fff);
    line-height: 1.3;
}

.products .products-box .products-box-top .num-cells {
    display: flex;
}

.products .products-box .products-box-top .num-cells .num-cell:not(:first-child) {
    margin-left: 60px;
}

.products .products-box .products-box-top .num-cells .num-cell h5 {
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white, #fff);
    line-height: 38px;
}

.products .products-box .products-box-top .num-cells .num-cell p {
    margin-top: 6px;
    opacity: .7;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white, #fff);
    line-height: 19px;
}

.products .products-box .products-box-top .products-box-top-right {
    position: relative;
    display: flex;
    overflow: hidden;
}

.products .products-box .products-box-top .products-box-top-right::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(90deg, transparent, #000);
}

.products .products-box .products-box-top .products-box-top-right .item {
    box-sizing: border-box;
    width: 460px;
    min-width: 460px;
    max-height: 320px;
    padding: 22px;
    overflow: hidden;
    background: #0a0b0d;
    border: 1px solid #141519;
    border-radius: 22px;
    margin-right: 20px;
}

.products .products-box .products-box-top .products-box-top-right .item .item-head {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    gap: 18px;
}

.products .products-box .products-box-top .products-box-top-right .item .item-head img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
}

.products .products-box .products-box-top .products-box-top-right .item .item-body {
    width: 100%;
    margin-top: 18px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.products .products-box .products-box-top .products-box-top-right .item .item-body .item-body-left {
    display: flex;
    width: 40%;
    justify-content: space-between;
    flex-direction: column;
}

.products .products-box .products-box-top .products-box-top-right .item .item-body .item-body-left h5 {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    color: #27ad75;
    line-height: 38px;
}

.products .products-box .products-box-top .products-box-top-right .item .item-body .item-body-left p {
    margin-top: 8px;
    font-size: 22px;
    color: hsla(0, 0%, 100%, .7);
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.products .products-box .products-box-top .products-box-top-right .item .item-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.products .products-box .products-box-top .products-box-top-right .item .item-footer span {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .7);
}

.products .products-box .products-box-top .products-box-top-right .item .item-footer span s {
    color: #fff;
    text-decoration: none;
}

.products .products-box .products-box-top .products-box-top-right .item .item-footer .btn {
    min-width: 120px;
    font-weight: 400;
    font-size: 20px;
    padding: 12px 16px;
    border-radius: 22px;
    background: hsla(0, 0%, 100%, .1);
}

.products .products-box .btn {
    display: inline-block;
    padding: 18px 32px;
    font-size: 100%;
    height: 52px;
}

.products .products-box .products-box-feature {
    width: 100%;
    padding-top: 80px;
    margin-top: 80px;
    border-top: 1px solid hsla(0, 0%, 100%, .1);
}

.products .products-box .products-box-feature .products-box-feature-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item {
    display: flex;
    align-items: flex-start;
    width: 32%;
    padding: 20px 0;
    flex-direction: column;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item .products-box-feature-item-img {
    width: 90px;
    height: 90px;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item h4 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    line-height: 52px;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item p {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: hsla(0, 0%, 100%, .5);
    word-break: break-word;
    line-height: 20px;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item p span {
    color: #fff;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item a {
    display: flex;
    height: 20px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    align-content: center;
    font-style: normal;
    line-height: 20px;
}

.products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item a img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* Feature */
.feature {
    position: relative;
    padding: 0 20px;
    width: 1180px;
    margin: 80px auto 0;
}

.feature h2 {
    margin-bottom: 40px;
    font-size: 60px;
    font-weight: 500;
    color: var(--color-white, #fff);
    font-style: normal;
    line-height: 74px;
    text-align: center;
}

.feature h2 span {
    color: #0F5FFF;
}

.feature .feature-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
    border-bottom: 1px solid #141519;
}

.feature .feature-list .feature-item {
    display: flex;
    align-items: center;
    width: 32%;
    margin-top: 80px;
    flex-direction: column;
}

.feature .feature-list .feature-item .feature-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid #141519;
    border-radius: 50%;
}

.feature .feature-list .feature-item .feature-item-img img {
    width: 36px;
    height: 42px;
    object-fit: contain;
}

.feature .feature-list .feature-item h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    font-style: normal;
    line-height: 28px;
}

.feature .feature-list .feature-item p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 20px;
}

/* Started */
.started {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 80px 0;
    border-bottom: 1px solid #141519;
}

.started .started-left {
    width: 40%;
}

.started .started-left h2 {
    text-align: left;
}

.started .started-left p {
    margin-top: 24px;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 28px;
}

.started .started-left .btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.started .started-right {
    flex: 1;
    margin-left: 66px;
}

.started .started-right .started-right-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 32px 24px;
    margin-bottom: 24px;
    background: #141519;
    border-radius: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s;
}

.started .started-right .started-right-item:hover {
    opacity: .7;
}

.started .started-right .started-right-item span {
    width: 80%;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    line-height: 28px;
}

.started .started-right .started-right-item img {
    width: 24px;
    height: 24px;
}

/* Blog */
.blog {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #141519;
    padding: 80px 0;
}

.blog h2 {
    text-align: left;
}

.blog .blog-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.blog .blog-list .blog-item {
    width: 32%;
    height: 395px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    z-index: 0;
}

.blog .blog-list .blog-item:hover img {
    transition: all .6s;
    transform: scale(1.08);
    overflow: hidden;
}

.blog .blog-list .blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all .6s;
    overflow: hidden;
}

.blog .blog-list .blog-item:nth-child(2) img {
    width: 100%;
    height: 70%;
}

.blog .blog-list .blog-item:last-child {
    border: 1px solid #23242B;
}

.blog .blog-list .blog-item:last-child span {
    position: relative;
    width: 100%;
    height: 50%;
}

.blog .blog-list .blog-item span {
    position: absolute;
    top: 0;
    font-weight: 500;
    font-size: 26px;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 32px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    z-index: 12;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .4));
}

/* Partners */
.partners {
    padding: 20px 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #141519;
}

.partners h2 {
    text-align: center;
}

.partners .partners-list {
    display: flex;
    gap: 40px;
    margin-top: 70px;
}

.partners .partners-list .partners-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    cursor: pointer;
}

.partners .partners-list .partners-item img {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    object-fit: cover;
}

.partners .partners-list .partners-item .desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.partners .partners-list .partners-item .desc p {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 28px;
    gap: 12px;
}

.partners .partners-list .partners-item .desc p span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 20px;
}

.partners .partners-list .partners-item .desc img {
    width: 24px;
    height: 24px;
}

/* Join */
.join {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 125px;
    padding: 120px 0;
    border-bottom: 1px solid #141519;
}

.join .join-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.join .join-content h2 {
    font-weight: 700;
    text-align: left;
}

.join .join-content .join-action {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.join .join-content .join-action p {
    width: 352px;
    padding: 16px;
    padding-left: 0;
    line-height: 1.5;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.join .join-content .join-action .btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.join img {
    width: 342px;
    height: 280px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 66px;
    color: #fff;
}

footer .left-side {
    width: 16%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

footer .left-side img {
    width: 120px;
    height: 40px;
}

footer .left-side .social {
    display: flex;
    flex-wrap: wrap;
    margin-top: 46px;
}

footer .left-side .social a {
    display: flex;
    width: 24px;
    height: 24px;
    margin-right: 16px;
    margin-bottom: 20px;
    filter: invert(100%);
}

footer .left-side .social a img {
    width: 24px;
    height: 24px;
}

footer .left-side p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}

footer .right-side {
    display: flex;
    flex-direction: column;
    width: 76%;
    color: #000;
}

footer .right-side p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

footer .right-side p:first-of-type {
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

footer .right-side p:last-of-type {
    margin-top: 20px;
}

.modal-content {
    background: #23242B;
}

.form-control {
    color: #fff;
    background: #000;
    border-color: #23242B;
}

.form-control:focus {
    color: #fff;
    background: #000;
    border-color: #0F5FFF;
}

.modal-body {
    padding-bottom: 0;
}

.modal-header {
    border-bottom: 1px solid #000;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer {
    justify-content: center;
    border-color: #000;
}

.modal-footer .btn {
    padding: 15px 25px;
}

@media screen and (max-width: 992px) {
    header .btn {
        font-weight: 500;
        background-color: #0A0B0D;
        filter: invert(100%);
    }

    main .banner {
        flex-direction: column;
    }

    main .activity-text-box {
        position: relative;
        order: 2;
        width: 100%;
        padding: 0 20px;
    }

    main .activity-text-box h1 {
        font-size: 30px;
        font-weight: 500;
        line-height: 36px;
        font-style: normal;
        box-sizing: border-box;
    }

    main .activity-text-box h4 {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        font-style: normal;
        line-height: 18px;
        padding: 0 0 40px;
    }

    main .activity-text-box p {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        line-height: 18px;
    }

    main .activity-text-box .action {
        flex-direction: column;
        padding-bottom: 40px;
    }

    main .activity-text-box .action span {
        width: 100%;
        padding: 16px 20px;
    }

    main .banner .video-box {
        width: 100%;
        height: 280px;
        object-fit: contain;
        cursor: pointer;
    }

    main .banner .video-box img {
        position: relative;
        left: -80px;
        width: 100%;
        height: 280px;
        object-fit: contain;
    }

    main .activity-text-box .action .btn {
        width: 100%;
        text-align: center;
    }

    .perpetual {
        padding: 50px 20px 0;
    }

    .trading {
        padding: 80px 20px;
    }

    .trading h2,
    .products h2,
    .feature h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .trading .btn-action {
        justify-content: flex-start;
    }

    .products h2 {
        text-align: left;
    }

    .products .products-inner {
        padding: 40px 20px 105px;
        align-items: flex-start;
        overflow: hidden;
    }

    .products .products-box {
        width: auto;
    }

    .products .products-box .products-box-top {
        flex-direction: column;
        margin-top: 0;
    }

    .products .products-box .products-box-top h4 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .products .products-box .products-box-top .num-cells .num-cell h5 {
        margin-bottom: 4px;
        font-size: 24px;
        line-height: 28px;
    }

    .products .products-box .products-box-top .num-cells .num-cell p {
        margin-top: 0;
        font-size: 13px;
        font-weight: 400;
        line-height: 16px;
    }

    .products .products-box .products-box-top .products-box-top-right .item:last-child {
        display: none;
    }

    .products .products-box a.btn {
        width: 100%;
        text-align: center;
    }

    .products .products-box .products-box-feature .products-box-feature-inner {
        flex-direction: column;
    }

    .products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item {
        width: 100%;
        align-items: center;
    }

    .products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item .products-box-feature-item-img {
        width: 60px;
        height: 60px;
    }

    .products .products-box .products-box-feature .products-box-feature-inner .products-box-feature-item p {
        text-align: center;
    }

    .feature {
        width: 100%;
    }

    .feature .feature-list {
        flex-direction: column;
    }

    .feature .feature-list .feature-item {
        width: 100%;
        margin-top: 30px;
    }

    .started {
        flex-direction: column;
    }

    .started .started-left {
        width: 100%;
    }

    .started .started-left p {
        margin: 16px 0;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        line-height: 18px;
    }

    .started .started-left h2 {
        margin-bottom: 20px;
    }

    .started .started-left .btn {
        display: none;
    }

    .started .started-right {
        margin: 0;
    }

    .started .started-right .started-right-item {
        padding: 16px 24px;
        margin-bottom: 12px;
        border-radius: 15px;
    }

    .started .started-right .started-right-item span {
        font-size: 14px;
        line-height: 18px;
    }

    .blog .blog-list {
        flex-direction: column;
    }

    .blog .blog-list .blog-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .partners h2 {
        font-size: 38px;
    }

    .partners .partners-list {
        flex-direction: column;
    }

    .partners .partners-list .partners-item .desc {
        flex-direction: column;
        align-items: flex-start;
    }

    .join {
        flex-direction: column;
    }

    .join img {
        width: 200px;
        height: 164px;
    }

    .join .join-content {
        order: 2;
    }

    .join .join-content h2 {
        font-size: 28px;
        font-weight: 500;
        text-align: center;
    }

    .join .join-content .join-action {
        flex-direction: column;
    }

    .join .join-content .join-action p {
        width: 100%;
    }

    .join .join-content .join-action .btn {
        width: 100%;
        text-align: center;
    }

    footer {
        padding-top: 40px;
        padding-bottom: 20px;
        flex-direction: column;
    }

    footer .left-side .social {
        order: 3;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    footer .left-side {
        width: 100%;
    }

    footer .left-side img {
        width: 75px;
        height: 24px;
    }

    footer .right-side {
        width: 100%;
    }
}
