@charset "UTF-8";

@font-face {
    font-display: swap;
  font-family: "chill";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/chill.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "RedHatDisplay";
  font-style: normal;
  font-weight: 700; 
  src: url("../fonts/RedHatDisplay-Bold.woff2") format("woff2"), url("../fonts/RedHatDisplay-Bold.ttf") format("truetype");
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body,
ul,
ol,
p,
dl,
dd,
figure,
blockquote,
pre {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font: inherit;
    margin: 0;
}

ul, ol {
    padding: 0;
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

td,
th {
    padding: 0;
    text-align: left;
    font-weight: normal;
}

a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

img,
audio,
canvas,
iframe,
svg,
video {
    max-width: 100%;
 
    height: auto;
    vertical-align: middle;
 
}

iframe {
    border: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

input,
textarea,
button,
optgroup,
select {
    margin: 0;
    font-family: inherit;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}


a,
button,
input,
label,
select,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}


body,
input,
textarea,
button,
select {
    -webkit-font-smoothing: antialiased;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

*::-webkit-input-placeholder {
    opacity: 1;
}

*::-moz-placeholder {
    opacity: 1;
}

*:-ms-input-placeholder {
    opacity: 1;
}

*::-ms-input-placeholder {
    opacity: 1;
}

*::placeholder {
    opacity: 1;
}

body {
    width: 100%;
    height: auto;
    min-height: 100dvh;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    background-color: #0C0618;
    position: relative;
    color: #fff;
}

.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100dvh;
}

.header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #000;
}

input {
    border: 0;
    outline: 0;
    border-radius: 0;
}

button {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #fff;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

@media (hover: none) and (pointer: coarse) {
    .no-scroll {
        margin-right: 0;
    }
}

textarea:focus {
    outline: none;
}

._container {
    width: 100%;
    max-width: 1500px;
    padding-left: 120px;
    padding-right: 120px;
    margin: 0 auto;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.btn:active {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}




@media (min-width: 768px) {
    .br-tab {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .br-desc {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (max-width: 480px) {
    .br-desc {
        display: none;
    }

    .br-tab {
        display: none;
    }
}


.tooltip {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: fixed;
    background: #fff;
    color: #000;
    padding: 5px;
    border-radius: 3px;
    padding-left: 18px;
    padding-right: 18px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
    white-space: nowrap;
    border-radius: 100px;
    font-weight: 800;
    font-style: italic;
    font-size: 17px;
    font-family: Helvetica, sans-serif;
}

@media (max-width: 500px) {
    .tooltip {
        font-size: 16px;
    }
}

.tooltip.active {
    opacity: 1;
}

.main {
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/1920.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bn-number {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 24px;
    padding-right: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 100px;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 26px;
    color: #000;
    position: absolute;
    left: 120px;
    top: 30%;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    background: rgba(132, 0, 255, 0.25);
    border: 1px solid #fff;
}

.main-container {
    width: 100%;
    max-width: 95%;
    padding-top: 25px;
    margin-left: auto;
    margin-right: auto;
    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;
}

.mi-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    max-width: 1055px;
    width: 100%;
    aspect-ratio: 1055/273;
    background-image: url("../img/mi.png");
}

.side-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-image: url("../img/side.png");
    width: 100%;
    max-width: 402px;
    aspect-ratio: 402/672;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.text-ch {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    font-style: italic;
    font-weight: 400;
    max-width: 621px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 400;
    font-size: 60px;
    text-align: center;
    margin-bottom: 0;
    font-family: "bangers", Arial, Helvetica, sans-serif;
}

.buy-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    z-index: 0;
    background-image: url("../img/buy.png");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 382/205;
    margin-bottom: 20px;
}

.buy-btn:hover {
    scale: 1.06;
}

.bottom-container {
    width: 100%;
    max-width: 95%;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 30px;
    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;
}

.soc-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    margin-bottom: 22px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    row-gap: 20px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    position: absolute;
    right: 120px;
    top: 50px;
}

.soc-btns a {
    width: 40px;
    aspect-ratio: 1/1;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.soc-btns a:hover {
    scale: 1.06;
}

@media (max-width: 650px) {
    .soc-btns a:hover {
        scale: initial;
    }
}

.soc-btns a:active {
    top: 2px;
}

@media (max-width: 650px) {
    .soc-btns a:active {
        top: initial;
    }
}

.df-icon {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 27px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url("../img/df.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 15px;
}


.swiper {
    width: 100%;
}

.swiper-controls {
    width: 100%;
    height: 50px;
    position: relative;
}

.swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    left: initial !important;
    right: initial !important;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin-left: 0;
    margin-right: 0;
    opacity: 0.2;
    background: red;
}

.swiper-pagination-bullet-active {
    background: red;
    opacity: 1;
}

.swiper-button-next::after, .swiper-button-prev::after {
    content: "";
}

.swiper-button-next {
    content: "";
    position: absolute;
    background-image: url("../img/10.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    aspect-ratio: 1/1;
    height: auto;
    right: 20px;
    left: initial;
    z-index: 15;
    margin-top: initial;
    margin-bottom: initial;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.swiper-button-prev {
    content: "";
    position: absolute;
    background-image: url("../img/10.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    aspect-ratio: 1/1;
    height: auto;
    left: 20px;
    right: initial;
    z-index: 15;
    margin-top: initial;
    margin-bottom: initial;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.first-section {
    margin-top: 50px;
    width: 100%;
    aspect-ratio: 1500/800;
    background-image: url("../img/fs2.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.first-section .soc-btns .bb-btn,
.footer .soc-btns .bb-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    max-width: 156px;
    width: 91px !important;
    height: auto;
    background-image: url("../img/bb.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    aspect-ratio: 91/44;
}

.second-section {
    width: 100%;
}

.ss-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ss-left {
    font-family: "RedHatDisplay", Arial;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    color: #fff;
}

.ss-right {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.get-started-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 156px;
    width: 156px;
    height: auto;
    aspect-ratio: 156/60;
    background-image: url("../img/get-st.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.ss-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.ss-bottom__left p {
    margin-bottom: 25px;
}

.ss-bottom__right {
    width: 345px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.hf-color {
    color: #D09BFF;
}

.mobile {
    display: none;
}

.ss-bottom__right img {
    border-radius: 17px;
    overflow: hidden;
    -o-object-fit: contain;
    object-fit: contain;
}

.hw-section {
    padding-top: 150px;
    background-image: url("../img/el-01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: visible;
}

.hw-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.df-header {
    font-family: "RedHatDisplay", Arial;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 40px;
}

.mnp-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.mnp-item {
    background: #120925;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    height: 410px;
    border: 1px solid transparent;
    padding-top: 50px;
}

.mnp-item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 40px;
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    background-image: url("../img/fh.svg");
}

.mnp-item__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.mnp-item__text {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.hw-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.hw-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 60px;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.hw-icon--one {
    background-image: url("../img/cta.svg");
}

.hw-icon--two {
    background-image: url("../img/flash.svg");
}

.mnp-item:hover {
    border: 1px solid #842DFF;
}

.mnp-item--one {
    width: 40%;
    padding-top: 30px;
}

.mnp-item--two {
    width: 30%;
}

.mnp-item--three {
    width: 30%;
}

.mnp-item--one .mnp-item__title {
    text-align: left;
}

.mnp-item--one .mnp-item__text {
    text-align: left;
}

.roadmap-section {
    margin-top: 150px;
    position: relative;
}

.rm-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 635px;
    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;
    row-gap: 48px;
}

.rm-item {
    background: #120925;
    width: 100%;
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    position: relative;
    padding-right: 120px;
}

.rm-item-number {
    width: 60px;
    height: 60px;
    background-color: rgba(132, 45, 255, 0.4470588235);
    border: 1px solid #842DFF;
    border-radius: 200px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rm-item__title {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.rm-item__ul li {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.rm-item__ul {
    list-style: initial;
    padding-left: 20px;
    margin-bottom: 10px;
}

.roadmap-section .get-started-btn {
    background-image: url("../img/doc.png");
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 350/106;
    width: 320px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.footer {
    margin-top: 100px;
    margin-bottom: 40px;
}

.footer .soc-btns {
    position: relative;
    left: initial;
    top: initial;
    right: initial;
    bottom: initial;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.llf {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 50%;
    height: auto;
    aspect-ratio: 732/1708;
    background-image: url("../img/llf.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.rrf {
    content: "";
    position: absolute;
    top: 65%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 50%;
    height: auto;
    aspect-ratio: 732/1708;
    background-image: url("../img/rrf.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.docs-page .first-section {
    background-image: url("../img/dox.png");
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1500/700;
    margin-top: 0;
}

.text-section ul li {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.gh-box {
    max-width: 840px;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.rm-item__ul li {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    margin-bottom: 7px;
}

.text-section ul {
    list-style: initial;
    padding-left: 40px;
}

.gh-box {
    margin-bottom: 40px;
}

.gh-box p {
    margin-bottom: 20px;
}

.text-section {
    margin-bottom: 0;
}

.text-section {
    top: -100px;
    position: relative;
}

.cv-box {
    border: 1px solid #842DFF;
    border-radius: 30px;
    width: 100%;
    margin-bottom: 70px;
    padding: 32px;
    background-color: rgba(132, 45, 255, 0.0666666667);
}

.cv-box--title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #d09bff;
    text-align: left;
    margin-bottom: 20px;
}

.cont,
.cont p,
.docs-page ul li {
    font-weight: 400;
    font-size: 16px !important;
    color: #fff;
    margin-bottom: 7px;
    margin-top: 7px;
}

.concl-box .concl-box {
    max-width: 850px;
    font-size: 48px;
    margin-top: 15px;
}




@media (max-width: 1250px) {
    .first-section .soc-btns {
        right: 40px;
        padding-left: 0;
        padding-right: 0;
        top: 20px;
    }

    ._container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .first-section {
        position: relative;
    }
}

@media (max-width: 1100px) {
    .first-section .soc-btns {
        right: 40px;
        padding-left: 0;
        padding-right: 0;
        top: 0;
    }

    .first-section {
        margin-top: 30px;
    }

    .bn-number {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 30px;
        max-height: 30px;
        top: initial;
    }
}

@media (max-width: 650px) {
    .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .soc-btns {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .soc-btns a {
        width: 33px;
    }

    .bn-number {
        height: auto;
        font-size: 20px;
    }

    .df-icon {
        width: 17px;
    }

    .text-ch {
        text-align: center;
        max-width: 90%;
        font-size: 14px;
    }

    .main-container {
        width: 100%;
        max-width: initial;
        padding-top: 15px;
        padding-bottom: 0;
    }

    .buy-btn {
        position: fixed;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 30px;
        margin-bottom: 0;
        width: 180px;
    }

    .buy-btn:hover {
        scale: 1.06;
    }

    .side-bg {
        max-width: 300px;
    }

    .bottom-container {
        bottom: 20px;
    }

    .mi-block {
        width: 100%;
        max-width: 90%;
    }

    .first-section .soc-btns .bb-btn, .footer .soc-btns .bb-btn {
        max-width: 156px;
        width: 76px !important;
    }

    .first-section {
        aspect-ratio: 350/540;
        background-image: url("../img/360.png");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .bn-number {
        font-size: 13px;
        bottom: 100px;
    }

    .ss-left,
  .df-header {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .ss-bottom {
        -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;
        row-gap: 30px;
    }

    .ss-bottom__right {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .ss-bottom__left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .ss-bottom__left p {
        font-size: 16px;
    }

    .ss-right {
        display: none;
    }

    .ss-top {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .ss-bottom__right {
        width: 100%;
    }

    .hw-icon {
        width: 45px;
        max-width: 45px;
    }

    ._container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hw-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 15px;
    }

    .hw-top {
        margin-bottom: 20px;
    }

    .hw-section .df-header {
        margin-bottom: 0;
        text-align: left;
    }

    .mnp-item--one,
  .mnp-item--two,
  .mnp-item--three {
        width: 100%;
    }

    .mnp-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .mnp-item__title {
        font-size: 22px;
    }

    .mnp-item {
        padding: 15px;
        border-radius: 14px;
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .mnp-item--one {
        margin-top: 45px;
    }

    .roadmap-section {
        margin-top: 80px;
    }

    .hw-section {
        padding-top: 40px;
    }

    .hw-section .hw-top {
        margin-bottom: 0;
    }

    .rm-item__ul li {
        font-size: 16px;
    }

    .rm-item-number {
        width: 60px;
        height: 60px;
        background-color: rgba(132, 45, 255, 0.4470588235);
        border: 1px solid #842DFF;
        border-radius: 200px;
        position: absolute;
        top: 20%;
    }

    .roadmap-section .get-started-btn {
        margin-top: 50px;
        width: 272px;
        max-width: 272px;
    }

    .footer {
        margin-top: 50px;
    }

    .gh-box p {
        font-size: 16px;
    }

    .cont, .cont p, .docs-page ul li {
        font-size: 14px;
    }

    .cv-box--title {
        font-size: 24px;
    }

    .cv-box {
        border-radius: 20px;
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .text-section {
        top: 0;
    }

    .concl-text {
        font-size: 16px;
    }

    .rm-item-number {
        width: 45px;
        height: 45px;
        right: 20px;
    }

    .docs-page .first-section {
        margin-top: 40px;
    }

    .docs-page .first-section .soc-btns {
        top: -20px;
    }

    .text-section ul {
        list-style: initial;
        padding-left: 25px;
    }
}

a {
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

a:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}