:root {
    --bg: #000;
}

@-webkit-keyframes hoverGradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes hoverGradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

a,
button,
input {
    font-family: "Montserrat", sans-serif;
}

button {
    outline: none;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

main {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    padding-top: 32px;
    z-index: 9999999;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__inner {
    display: contents;
}

.header__link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0;
    text-decoration: none;
}

.header__link:not(:first-child) {
    margin-left: 54px;
}

.header__social {
    text-decoration: none;
}

.header__social:not(:first-child) {
    margin-left: 20px;
}

.header__social img {
    width: 20px;
}

.home {
    position: relative;
    width: 100%;
    height: 780px;
    padding-top: 60px;
    overflow: hidden;
}

.home__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home__content {
    padding-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.home__title {
    max-width: 588px;
    font-size: 72px;
    font-weight: 900;
    line-height: 79px;
    letter-spacing: 0;
}

.home__title span {
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#00cda0), color-stop(50.5%, #00b3ff), to(#fe00f8));
    background: linear-gradient(90deg, #00cda0 0%, #00b3ff 50.5%, #fe00f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.home__description {
    max-width: 530px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.home__btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 180px;
    height: 64px;
    margin-top: 32px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    border-radius: 80px;
    background: -webkit-gradient(linear, left top, right top, from(#00cda0), color-stop(50.5%, #00b3ff), to(#fe00f8));
    background: linear-gradient(90deg, #00cda0 0%, #00b3ff 50.5%, #fe00f8 100%);
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home__btn:before {
    content: "BUY $DRDGN";
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 80px;
    background-color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home__img {
    position: absolute;
    right: -150px;
    top: -50px;
    width: 950px;
}

.home__lines {
    width: 100%;
    position: absolute;
    left: 0;
    top: 600px;
    z-index: 9;
}

.home__line {
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right top, from(#00cda0), color-stop(50.5%, #00b3ff), to(#fe00f8));
    background: linear-gradient(90deg, #00cda0 0%, #00b3ff 50.5%, #fe00f8 100%);
    padding: 4px 0;
}

.home__line:first-child {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.home__line:last-child {
    margin-top: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.home__line:before {
    background: #1d0a37;
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: calc(100% - 8px);
}

.home__line-row {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home__line:first-child .home__line-row {
    -webkit-animation: scrolling-1 1100s linear infinite;
    animation: scrolling-1 1100s linear infinite;
}

.home__line:last-child .home__line-row {
    -webkit-animation: scrolling-2 1100s linear infinite;
    animation: scrolling-2 1100s linear infinite;
}

@-webkit-keyframes scrolling-1 {
    0% {
        -webkit-transform: translateX(-27000.5px);
        transform: translateX(-27000.5px);
    }
    100% {
        -webkit-transform: translateX(28781.5px);
        transform: translateX(28781.5px);
    }
}

@keyframes scrolling-1 {
    0% {
        -webkit-transform: translateX(-27000.5px);
        transform: translateX(-27000.5px);
    }
    100% {
        -webkit-transform: translateX(28781.5px);
        transform: translateX(28781.5px);
    }
}

@-webkit-keyframes scrolling-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-28781.5px);
        transform: translateX(-28781.5px);
    }
}

@keyframes scrolling-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-28781.5px);
        transform: translateX(-28781.5px);
    }
}

.home__line-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0;
}

.home__line-text:not(:first-child) {
    margin-left: 97.73px;
}

.about {
    margin-top: -95px;
    position: relative;
    height: 713px;
    background-color: #1d0a37;
}

.about__main-img {
    position: absolute;
    left: 50px;
    top: 25px;
    width: 1085px;
}

.about__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.about__content {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.about__title {
    font-size: 45px;
    font-weight: 900;
    line-height: 68px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about__items {
    width: 588px;
    margin-top: 32px;
}

.about__item {
    width: 100%;
    height: 88px;
    padding: 24px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1019607843);
}

.about__item:not(:first-child) {
    margin-top: 12px;
}

.about__item-title {
    color: #fff;
    min-width: 172px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about__item-text {
    margin-left: 24px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
}

.about__btn {
    position: absolute;
    width: 282px;
    height: 56px;
    margin-top: 32px;
    padding: 0 24px;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99;
}

.about__btn-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about__btn-center p {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
}

.tokenomics {
    position: relative;
    width: 100%;
    padding-top: 0px;
    background-color: #000;
}

.tokenomics__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tokenomics__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tokenomics__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tokenomics__header-tag {
    width: 342px;
    height: 56px;
    margin-top: 16px;
    border-radius: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1d0a37;
    border: 2px solid #8d49ee;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
}

.tokenomics__header-tag span {
    margin-left: 12px;
    font-size: 20px;
    font-weight: 600;
}

.tokenomics__content {
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tokenomics__main {
    position: relative;
}

.tokenomics__main-money {
    position: absolute;
    left: -330px;
    top: -200px;
    width: 1140px;
}

.tokenomics__diagram {
    position: relative;
    width: 588px;
    margin-top: 40px;
    z-index: 999;
}

.tokenomics__main-tag {
    position: relative;
    width: 530px;
    height: 56px;
    margin-top: 420px;
    margin-left: -15px;
    padding: 0 24px;
    border-radius: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #1d0a37;
    border: 2px solid #8d49ee;
    z-index: 9;
}

.tokenomics__main-tag-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tokenomics__main-tag-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tokenomics__main-tag-right-textarea {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.tokenomics__main-tag-msg {
    position: absolute;
    right: 0;
    bottom: -50px;
    padding: 6px 16px;
    border-radius: 30px;
    display: block;
    background-color: #1d0a37;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tokenomics__main-tag-msg_active {
    opacity: 1;
}

.tokenomics__main-tag-address {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
}

.tokenomics__main-tag-copy {
    margin-left: 16px;
    margin-bottom: -3px;
    cursor: pointer;
}

.articles {
    position: relative;
    height: auto;
    padding-top: 92px;
    margin-bottom:80px;
}

.articles__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.articles__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.articles__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.articles__header-tag {
    width: 454px;
    height: 56px;
    margin-top: 16px;
    border-radius: 80px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(43.89%, rgba(205, 16, 118, 0.14)), to(rgba(0, 255, 186, 0)));
    background: linear-gradient(180deg, rgba(205, 16, 118, 0.14) 43.89%, rgba(0, 205, 186, 0) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #7f003f
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.articles__header-tag span {
    margin-left: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
}

.articles__cards {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.articles .swiper {
    margin-top: 56px;
    width: 100%;
}

.articles .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.articles__card {
    height: 178px;
    padding: 24px;
    border-radius: 12px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(43.89%, rgba(0, 255, 186, 0.14)), to(rgba(0, 255, 186, 0)));
    background: linear-gradient(180deg, rgba(205, 16, 118, 0.14) 43.89%, rgba(0, 255, 186, 0) 100%);
    color: #fff;
    text-decoration: none;
    border: 2px solid #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.articles__card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.articles__card-img {
    width: 56px;
    height: 56px;
    -o-object-fit: cover;
    object-fit: cover;
}

.articles__card-header-content {
    margin-left: 16px;
}

.articles__card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.articles__card-subtitle {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
}

.articles__card-subtitle span {
    display: block;
    width: 4px;
    height: 4px;
    margin: 0 8px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.articles__card-footer {
    margin-top: 20px;
}

.articles__card-footer-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
}

.articles__card-footer-info {
    width: 100%;
    margin-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.articles__card-footer-item {
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0;
}

.articles__lines {
    width: 100%;
    height: 350px;
    padding-top: 100px;
    position: absolute;
    left: 0;
    top: 670px;
    z-index: 9;
    overflow: hidden;
}

.articles__line {
    width: 100%;
    height: 80px;
    overflow: hidden;
    background: #062d24;
    border-top: 4px solid #2bd7b0;
    border-bottom: 4px solid #2bd7b0;
}

.articles__line:first-child {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.articles__line:last-child {
    margin-top: -70px;
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
}

.articles__line-row {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.articles__line:first-child .articles__line-row {
    -webkit-animation: scrolling-1 1100s linear infinite;
    animation: scrolling-1 1100s linear infinite;
}

.articles__line:last-child .articles__line-row {
    -webkit-animation: scrolling-2 1100s linear infinite;
    animation: scrolling-2 1100s linear infinite;
}

@keyframes scrolling-1 {
    0% {
        -webkit-transform: translateX(-27000.5px);
        transform: translateX(-27000.5px);
    }
    100% {
        -webkit-transform: translateX(28781.5px);
        transform: translateX(28781.5px);
    }
}

@keyframes scrolling-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-28781.5px);
        transform: translateX(-28781.5px);
    }
}

.articles__line-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0;
}

.articles__line-text img {
    margin-left: 12px;
}

.articles__line-text:not(:first-child) {
    margin-left: 97.73px;
}

.roadmap {
    
    margin-top: 80px;
}

.roadmap__title {
    text-align: center;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    letter-spacing: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}

.roadmap__map {
    margin-top: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.roadmap__map-cards {
    width: 50%;
    max-width: 486px;
}

.roadmap__map-cards:last-child {
    margin-top: 180px;
}

.roadmap__map-card {
    width: 100%;
    height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.roadmap__map-card:not(:first-child) {
    margin-top: 182px;
}

.roadmap__map-card-img {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
}

.roadmap__map-card-content {
    max-width: 282px;
    margin-left: 24px;
}

.roadmap__map-card-date {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
}

.roadmap__map-card-title {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0;
}

.roadmap__map-card-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

.roadmap__map-line__mobile {
    display: none;
}

.banner {
    height: 620px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.banner__desktop-img {
    margin-left: -300px;
    margin-top: -70px;
    width: calc(100%+ 300px);
    -o-object-fit: cover;
    object-fit: cover;
}

.banner__mobile-img {
    display: none;
}

.footer {
    width: 100%;
    height: 40px;
    margin-top: 24px;
    margin-bottom: 14px;
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__text {
    max-width: 164px;
    margin-left: -20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
}

.footer__socials {
    margin-left: -70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__social {
    text-decoration: none;
}

.footer__social:not(:first-child) {
    margin-left: 20px;
}

@media (max-width: 650px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
    .header {
        height: 60px;
        padding-top: 16px;
    }
    .header__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header__inner {
        display: none;
        position: fixed;
        z-index: 11;
        top: 0;
        left: 0;
        height: 100dvh;
        width: 100vw;
        padding-top: 124px;
    }
    .header__inner__active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #000000;
    }
    .header__inner::before {
        content: url("../../images/background-blur.svg");
        position: absolute;
        top: 100%;
        translate: 0 -344px;
        z-index: -1;
    }
    .header__logo {
        position: fixed;
        z-index: 12;
		
    }
    .header .hamburger {
        display: block;
        height: 13px;
        width: 20px;
        position: relative;
        z-index: 12;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-transition: height 0.2s ease-in-out;
        transition: height 0.2s ease-in-out;
    }
    .header .hamburger .line {
        display: block;
        height: 1.6px;
        width: 100%;
        border-radius: 10px;
        background: #fff;
    }
    .header .hamburger .line1 {
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transition: -webkit-transform 0.4s ease-in-out;
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    }
    .header .hamburger .line2 {
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        transition: -webkit-transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    }
    .header .hamburger .line3 {
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transition: -webkit-transform 0.4s ease-in-out;
        transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    }
    .header .hamburger__active {
        height: 15.2px;
    }
    .header .hamburger__active .line1 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .header .hamburger__active .line2 {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    .header .hamburger__active .line3 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .header__links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header__link {
        font-size: 24px;
        font-weight: 600;
        line-height: 29px;
    }
    .header__link:not(.header__link:first-child) {
        margin-left: 0;
        margin-top: 72px;
    }
    .header__socials {
        position: absolute;
        bottom: 32px;
    }
    .header__social {
        display: inline-block;
    }
    .header__social:not(.header__social:first-child) {
        margin-left: 24px;
    }
    .header__social img {
        width: 32px;
    }
    .home {
        padding-top: 104px;
    }
    .home__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home__content {
        width: 100%;
        padding-top: 0;
    }
    .home__title {
        font-size: 40px;
        line-height: 110%;
    }
    .home__description {
        margin-top: 12px;
        font-size: 14px;
        line-height: 150%;
        max-width: 290px;
    }
    .home__btn {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        margin-top: 24px;
        height: 50px;
    }
    .home__img {
        position: relative;
        width: 567px;
        top: -35px;
        left: -156px;
        right: 0;
        z-index: -1;
    }
    .home__lines {
        top: 653px;
    }
    .home__line {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
        height: 58px;
        width: calc(100%+ 32px);
        margin-left: -16px;
    }
    .home__line:first-child {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .home__line:last-child {
        margin-top: 0px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .home__line-text {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0%;
    }
    .home__line-text:not(:first-child) {
        margin-left: 50px;
    }
    .about {
        height: auto;
        overflow: hidden;
    }
    .about__main-img {
        position: relative;
        width: 350px;
        margin-top: 13px;
    }
    .about__content {
        margin-top: 90px;
    }
    .about__title {
        font-size: 32px;
        font-weight: 900;
        line-height: 39px;
        letter-spacing: 0%;
        text-align: center;
    }
    .about__items {
        margin-top: 24px;
        width: 100%;
    }
    .about__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        padding: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .about__item:not(:first-child) {
        margin-top: 12px;
    }
    .about__item-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0%;
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 0 15.5px 0;
        margin: 0;
        display: block;
        height: auto;
    }
    .about__item-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 140%;
        letter-spacing: 0%;
        margin: 15.5px 0 0;
        margin-top: 16px;
    }
    .about__btn {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-top: 26px;
    }
    .tokenomics {
        padding-top: -60px;
    }
    .tokenomics__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tokenomics__header-tag {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        max-width: 288px;
        padding: 10px 18px;
        height: auto;
        margin-top: 10px;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        gap: 0;
    }
    .tokenomics__header-tag span {
        margin-left: 2px;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
    }
    .tokenomics__title {
        font-size: 32px;
        font-weight: 900;
        line-height: 39px;
        letter-spacing: 0%;
    }
    .tokenomics__content {
        margin-top: 32px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tokenomics__main-money {
        position: static;
        width: 800px;
        margin-left: -218px;
        margin-top: -118px;
    }
    .tokenomics__main-tag {
        width: 100%;
        height: auto;
        padding: 12px 22px;
        max-width: 343px;
        margin-top: -132px;
        margin-left: 0;
        position: relative;
        z-index: 1;
        top: 0;
        left: 0;
    }
    .tokenomics__main-tag-title {
        font-size: 10px;
        font-weight: 400;
        line-height: 17px;
    }
    .tokenomics__main-tag-address {
        font-size: 10px;
        font-weight: 600;
        line-height: 17px;
    }
    .tokenomics__main-tag-copy {
        margin-bottom: 0;
    }
    .tokenomics__diagram {
        position: static;
        width: 100%;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-top: 0;
    }
    .articles {
        overflow: hidden;
        padding-top: 61px;
         padding-top: 25px;
    }
    .articles__header {
        width: 100%;
    }
    .articles__header-tag {
        margin-top: 12px;
        padding: 10px 18px;
        width: 100%;
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
    }
    .articles__header-tag span {
        margin: 8px 0 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.59px;
    }
    .articles__title {
        font-size: 32px;
        font-weight: 900;
        line-height: 39px;
    }
    .articles .swiper {
        margin-top: 0;
        width: 100% !important;
    }
    .articles .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 0;
    }
    .articles .swiper-pagination {
        margin-top: 9px;
        position: static;
    }
    .articles .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background-color: #062d24;
        opacity: 1;
        border-radius: 35px;
        -webkit-transition: width 0.123s ease-in;
        transition: width 0.123s ease-in;
    }
    .articles .swiper-pagination-bullet-active {
        width: 24px;
        background-color: #2bd7b0;
    }
    .articles__cards {
        margin-top: 32px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .articles__card {
        padding: 20px 18px;
        height: auto;
    }
    .articles__card-img {
        width: 40px;
        height: 40px;
    }
    .articles__card-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
    }
    .articles__card-subtitle {
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
    }
    .articles__card-footer-item {
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
    }
    .articles__lines {
        position: absolute;
        width: calc(100%+ 32px);
        margin-left: -16px;
        padding-top: 103px;
    }
    .articles__line {
        width: calc(100%+ 32px);
        height: 56px;
    }
    .articles__line:first-child {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .articles__line:last-child {
        margin-top: -62px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .articles__line-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 17px;
    }
    .articles__line-text img {
        width: 85.5px;
    }
    .articles__line-text:not(:first-child) {
        margin-left: 50px;
    }
    .roadmap {
        z-index: 10;
        position: relative;
        margin-top: -78px;
    }
    .roadmap__title {
        font-size: 32px;
        font-weight: 900;
        line-height: 39px;
    }
    .roadmap__map {
        margin-top: 32px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        padding-left: 20px;
    }
    .roadmap__map-cards {
        display: contents;
    }
    .roadmap__map-cards:not(.roadmap__map-cards__first) .roadmap__map-card {
        margin-top: 40px;
    }
    .roadmap__map-cards.roadmap__map-cards__first .roadmap__map-card:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .roadmap__map-cards:not(.roadmap__map-cards__first) .roadmap__map-card:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .roadmap__map-card {
        height: 104px;
    }
    .roadmap__map-card:not(:first-child) {
        margin-top: 40px;
    }
    .roadmap__map-card-img {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }
    .roadmap__map-card-content {
        margin-left: 12px;
    }
    .roadmap__map-card-date {
        font-size: 14px;
        font-weight: 500;
        line-height: 17px;
    }
    .roadmap__map-card-title {
        margin-top: 8px;
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }
    .roadmap__map-card-text {
        margin-top: 8px;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
    }
    .roadmap__map-line {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 16px;
        position: absolute;
        left: -8px;
    }
    .roadmap__map-line:not(.roadmap__map-line__mobile) {
        display: none;
    }
    .roadmap__map-line__mobile {
        display: block;
    }
    .banner {
        height: auto;
    }
    .banner__desktop-img {
        display: none;
    }
    .banner__mobile-img {
        display: block;
        width: 100%;
        height: 90%;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: 38px;
    }
    .footer {
        height: auto;
        margin-top: 32px;
        padding-bottom: 25px;
    }
    .footer__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 140%;
        max-width: 100%;
        opacity: 0.5;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .footer__socials {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 0;
        gap: 40px;
    }
    .footer__social:not(:first-child) {
        margin-left: 0;
    }
    .footer__social img {
        width: 32px;
    }
    .footer__up img {
        width: 56px;
    }
}

@media (hover: hover) {
    .home__btn:hover {
        background-size: 400% 400%;
        -webkit-animation: hoverGradient 2s infinite;
        animation: hoverGradient 2s infinite;
    }
    .home__btn:hover:before {
        opacity: 0;
    }
    .articles__card:hover {
        border: 2px solid #2bd7b0;
    }
}
section.wallets-and-exchanges {
   margin-left: 90px;
   margin-right: 90px;
  position: relative;
  display: grid;
  padding: 5rem 0rem 5rem;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  grid-template-areas: 'a b' 'c d';
  grid-column-gap: 3rem;
  grid-row-gap: 8rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
   }

  section.wallets-and-exchanges .text.wallets {
    grid-area: a;
    justify-self: flex-end; }
  section.wallets-and-exchanges .icons.wallets {
    grid-area: b; }
  section.wallets-and-exchanges .icons.exchanges {
    grid-area: c; }
  section.wallets-and-exchanges .text.exchanges {
    grid-area: d; }
  section.wallets-and-exchanges .text {
   grid-area: text;
    font-size: 1.6rem;
    line-height: 3rem;
    color: #fff;
    max-width: 800px;
	margin: 0rem;


 }
    section.wallets-and-exchanges .text h4 {
      font-size: 3.5rem;
      line-height: 4.1rem;
      margin-bottom: 1.7rem;
      color: #23024D; }
  section.wallets-and-exchanges .medium-link {
    display: flex;
    align-items: center;
    color: #23024D; }
    section.wallets-and-exchanges .medium-link:active {
      color: #23024D; }
  section.wallets-and-exchanges svg {
    margin-left: 0.8rem; }
  section.wallets-and-exchanges .icons {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem; }
    section.wallets-and-exchanges .icons .icon-container {
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      height: 13rem;
        background: #1d0a37;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s; }
      section.wallets-and-exchanges .icons .icon-container:hover {
        transform: scale(1.07); }
    section.wallets-and-exchanges .icons img {
      max-height: 9rem;
      max-width: 90%;
      margin: auto; }
  @media screen and (max-width: 1100px) {
    section.wallets-and-exchanges .icons .icon-container {
      height: 20rem;
      } }
  @media screen and (max-width: 950px) {
    section.wallets-and-exchanges .text {
      font-size: 1.1em;
      line-height: 2.5rem; }
      section.wallets-and-exchanges .text h4 {
        font-size: 2.1em;
        line-height: 2.3rem;}
    section.wallets-and-exchanges .icons .icon-container {
      height: 20rem; } }
  @media screen and (max-width: 800px) {
    section.wallets-and-exchanges {
      grid-template-areas: 'a' 'b' 'd' 'c';
      grid-row-gap: 3.8rem;
      grid-template-columns: 1fr;
      padding: 1.1rem 1.6rem 1.6rem;
       margin-left: 10px;
   margin-right: 10px;
        margin-bottom:105px;
        margin-top:25px;
    }
      section.wallets-and-exchanges .icons .icon-container {
        height: 5.5rem; 
          width: 5.5rem;
          
      }
      section.wallets-and-exchanges .text {
        justify-self: flex-start !important;
        max-width: initial; } 
} 