* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #f0a925 #ffffff;
    /* Chrome, Edge, and Safari */
}

* *::-webkit-scrollbar {
    width: 12px;
}

* *::-webkit-scrollbar-track {
    background: #fafafa;
}

* *::-webkit-scrollbar-thumb {
    background-color: #f0a925;
    border-radius: 8px;
    border: 3px solid #fafafa;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background: #232325;
    overflow-x: hidden;
}

body.active {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.active {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.shadow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.shadow.active {
    z-index: 10;
    display: block;
}

.container {
    max-width: 1270px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

.nav_toggle {
    height: 50px;
    width: 50px;
    z-index: 200;
    cursor: pointer;
    display: none;
    padding: 10px;
    margin-left: 20px;
    border-radius: 5px;
    background: #232325;
}

.nav_toggle-item {
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    background-color: #fff;
    -webkit-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.nav_toggle-item:before,
.nav_toggle-item:after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    background-color: #fff;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.nav_toggle-item:before {
    top: -8px;
}

.nav_toggle-item:after {
    bottom: -8px;
}

.nav_toggle.active .nav_toggle-item {
    background: transparent;
}

.nav_toggle.active .nav_toggle-item::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(45deg) translate3D(3px, -5px, 0);
    transform: rotate(45deg) translate3D(3px, -5px, 0);
}

.nav_toggle.active .nav_toggle-item::after {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg) translate3D(3px, 6px, 0);
    transform: rotate(-45deg) translate3D(3px, 6px, 0);
}

.text {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
}

.text b {
    padding: 3px 7px;
    background: linear-gradient(
        207.04deg,
        #ffd580 16.9%,
        #f0a925 67.83%,
        #ffe56f 120.38%,
        #f6b547 172.12%
    );
    -webkit-box-decoration-break: clone;
    border-radius: 6px;
    font-weight: bold;
}

.text strong {
    font-weight: 600;
}

.uppertitle {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 25px;
    color: #ffd580;
}

.undertitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #ffffff;
    margin-bottom: 15px;
}

.btn {
    display: table;
    padding: 5px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn:hover::before,
.btn:hover::after {
    width: 10px;
    height: 60%;
}

.btn:hover span::before {
    -webkit-transform: skewX(45deg) translateX(200%);
    transform: skewX(45deg) translateX(200%);
}

.btn::before,
.btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ffd580;
    width: 30px;
    height: 10px;
    border-radius: 8px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.btn::after {
    top: initial;
    bottom: 0;
}

.btn span {
    display: table;
    padding: 15px 25px;
    background: rgba(40, 39, 41, 0.76);
    border: 0.5px solid #f0a925;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 50px;
    z-index: 1;
    position: relative;
}

.btn span::before,
.btn span::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ffd580;
    border-radius: 8px;
}

.btn span::before {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    width: 50%;
    bottom: -1px;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgba(255, 255, 255, 0.15)),
        to(transparent)
    );
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    -webkit-transform: skewX(35deg) translateX(0);
    transform: skewX(35deg) translateX(0);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.circle {
    pointer-events: none;
    width: 320px;
    height: 320px;
    background: #ffd580;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    position: absolute;
}

.circle.center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.circle.left {
    top: 20%;
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.circle.right {
    bottom: 5%;
    right: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.triangle {
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 350px 0 350px 400px;
    border-color: transparent transparent transparent #232325;
    position: absolute;
}

.triangle.top {
    top: 0;
    left: 10%;
    border-width: 150px 300px 0 300px;
    border-color: #232325 transparent transparent transparent;
}

.triangle.bottom {
    bottom: 0;
    left: 10%;
    border-width: 0 300px 150px 300px;
    border-color: transparent transparent #232325 transparent;
}

.triangle.left {
    top: 0;
    left: 0;
}

.triangle.right {
    top: 10%;
    right: 0;
    border-width: 300px 250px 300px 0;
    border-color: transparent #232325 transparent transparent;
}

.title {
    display: table;
    margin: 0 auto 35px;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    text-transform: uppercase;
    color: #211f1f;
    text-shadow: white 1px 0px 0px, white 0.5403px 0.84147px 0px,
        white -0.41615px 0.9093px 0px, white -0.98999px 0.14112px 0px,
        white -0.65364px -0.7568px 0px, white 0.28366px -0.95892px 0px,
        white 0.96017px -0.27942px 0px;
    position: relative;
    z-index: 1;
}

.title::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 105%;
    height: 6px;
    background: #f0a925;
    -webkit-filter: blur(6px);
    filter: blur(6px);
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: line 3s infinite;
    animation: line 3s infinite;
}

@-webkit-keyframes line {
    0% {
        width: 20%;
    }
    25% {
        width: 70%;
    }
    50% {
        width: 105%;
    }
    75% {
        width: 70%;
    }
    100% {
        width: 20%;
    }
}

@keyframes line {
    0% {
        width: 20%;
    }
    25% {
        width: 70%;
    }
    50% {
        width: 105%;
    }
    75% {
        width: 70%;
    }
    100% {
        width: 20%;
    }
}

/* header */
.header {
    padding: 25px 0;
}

.header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.nav ul li a:hover {
    color: #ffd580;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.social a {
    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;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#ffd580),
        color-stop(67.71%, #f0a925)
    );
    background: linear-gradient(180deg, #ffd580 0%, #f0a925 67.71%);
    margin-left: 20px;
}

.social a:first-child {
    margin-left: 0;
}

/* main */
.main {
    padding: 70px 0;
}

.main .triangle {
    opacity: 0.76;
}

.main .circle {
    width: 300px;
    height: 300px;
}

.main_inner {
    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;
    position: relative;
}

.main_title {
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 30px;
}

.main_title span {
    background: linear-gradient(
        80.46deg,
        #ffd580 4.57%,
        #f0a925 16.91%,
        #ffe56f 29.26%,
        #f6b547 42.81%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.main_info {
    max-width: 650px;
}

.main_info .text {
    margin-bottom: 50px;
}

.main_img {
    display: block;
    max-width: 550px;
    position: relative;
}

.main_img .circle {
    z-index: -1;
}

.main_img img {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* join */
.join {
    padding: 50px 0;
    background: #211f1f;
    position: relative;
    z-index: 1;
}

.join_inner {
    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;
}

.join_inner .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 15px;
}

/* about */
.about {
    padding: 70px 0;
    position: relative;
}

.about_inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.about_slider {
    margin-top: 60px;
}

.about_slider .swiper-slide img {
    width: 100%;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-pagination {
    position: initial;
    margin-top: 35px;
}

.swiper-pagination-bullet {
    background: #232325;
    border: 1px solid #ffffff;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffd580;
}

/* benefits */
.benefits {
    padding: 70px 0;
    background: #211f1f;
    position: relative;
    overflow: hidden;
}

.benefits .circle {
    -webkit-transform: translateX(90%);
    transform: translateX(90%);
}

.benefits_inner {
    position: relative;
    margin-top: 80px;
}

.benefits_inner .text {
    margin-bottom: 60px;
    opacity: 0.8;
}

.benefits_inner .undertitle {
    position: relative;
}

.benefits_inner .undertitle::before {
    position: absolute;
    content: "";
    top: 12px;
    left: -43px;
    width: 26px;
    height: 3px;
    background: #f0a925;
}

/* perks */
.perks {
    padding: 70px 0;
}

.perks_inner {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.perks_item {
    text-align: center;
    background: #211f1f;
    border: 1px solid #f0a925;
    border-radius: 8px;
    margin-bottom: 35px;
    padding: 40px 35px;
    width: 38%;
}

.perks_item .text {
    margin-bottom: 0;
    font-size: 16px;
    opacity: 0.8;
}

/* roadmap */
.roadmap {
    padding: 70px 0 120px;
    background: #211f1f;
    position: relative;
}

.roadmap .circle {
    top: 50%;
}

.roadmap_inner {
    margin-top: 80px;
}

.roadmap_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.roadmap_item:nth-child(2) .roadmap_etap {
    color: #c8c49f;
}

.roadmap_item:nth-child(2) .text::before {
    background: #c8c49f;
}

.roadmap_item:nth-child(3) .roadmap_etap {
    color: #c0b17c;
}

.roadmap_item:nth-child(3) .text::before {
    background: #c0b17c;
}

.roadmap_item:nth-child(4) .roadmap_etap {
    color: #d3b25d;
}

.roadmap_item:nth-child(4) .text::before {
    background: #d3b25d;
}

.roadmap_item:nth-child(5) .roadmap_etap {
    color: #deb03a;
}

.roadmap_item:nth-child(5) .text::before {
    background: #deb03a;
}

.roadmap_item:nth-child(6) .roadmap_etap {
    color: #ecba3a;
}

.roadmap_item:nth-child(6) .text::before {
    background: #ecba3a;
}

.roadmap_item:nth-child(7) .roadmap_etap {
    color: #fdb930;
}

.roadmap_item:nth-child(7) .text::before {
    background: #fdb930;
}

.roadmap_item:nth-child(8) .roadmap_etap {
    color: #f0a925;
}

.roadmap_item:nth-child(8) .text::before {
    background: #f0a925;
}

.roadmap_item:last-child .text {
    padding-bottom: 0;
}

.roadmap_item .text {
    padding-bottom: 60px;
    padding-left: 90px;
    border-left: 2px solid #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    margin-bottom: 0;
}

.roadmap_item .text::before {
    position: absolute;
    content: "";
    top: 0;
    left: -21px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d1d1d1;
    border: 2px solid #ffffff;
}

.roadmap_etap {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: #d1d1d1;
    max-width: 480px;
    width: 100%;
}

/* team */
.team {
    padding: 70px 0;
    position: relative;
}

.team .circle {
    width: 100px;
    height: 100px;
    -webkit-filter: blur(130px);
    filter: blur(130px);
}

.team_inner {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.team_item {
    width: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 35px;
}

.team_img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    -webkit-box-shadow: 1px 6px 5px rgba(240, 169, 37, 0.44);
    box-shadow: 1px 6px 5px rgba(240, 169, 37, 0.44);
    margin-right: 15px;
}

.team_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.team_info .text {
    font-size: 16px;
    opacity: 0.8;
}

/* timeline */
.timeline {
    padding: 70px 0;
    position: relative;
}

.timeline_inner {
    margin-top: 80px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.timeline_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.timeline_item .roadmap_title {
    max-width: 110px;
    width: 100%;
    color: #ffd580;
}

.timeline_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 60px;
    padding-left: 70px;
    border-left: 1px solid #fff;
}

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

/* launch */
.launch {
    padding: 70px 0;
    background: #211f1f;
    z-index: 1;
    position: relative;
    text-align: center;
}

.launch .triangle.right {
    border-width: 140px 120px 140px 0;
}

.launch .btn {
    margin: 0 auto;
}

.launch .text {
    margin-bottom: 50px;
    position: relative;
}

/* faq */
.faq {
    padding: 70px 0;
    position: relative;
}

.faq .circle {
    width: 200px;
    height: 200px;
    -webkit-filter: blur(230px);
    filter: blur(230px);
}

.information {
    margin: 80px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px;
    background: #211f1f;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 8px;
}

.information_item {
    width: 38%;
    margin-bottom: 20px;
}

.information_item .undertitle {
    margin-bottom: 5px;
}

.information_item .text {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 16px;
}

.faq_inner {
    max-width: 1140px;
    margin: 80px auto 0;
}

.faq_item {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 213, 128, 0.76)),
        color-stop(72.4%, rgba(240, 169, 37, 0.76))
    );
    background: linear-gradient(
        180deg,
        rgba(255, 213, 128, 0.76) 0%,
        rgba(240, 169, 37, 0.76) 72.4%
    );
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq_top {
    padding: 20px 50px 20px 30px;
    position: relative;
    cursor: pointer;
}

.faq_top.active::before {
    top: 30px;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.faq_top .undertitle {
    margin-bottom: 0;
}

.faq_top::before {
    position: absolute;
    content: "";
    top: 26px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 2px solid #fff;
    width: 12px;
    height: 12px;
    border-top: 0;
    border-left: 0;
}

.faq_info {
    padding: 10px 30px;
    display: none;
}

/* footer */
.footer {
    position: relative;
    padding: 30px 0;
    background: #2e2928;
}

.footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_inner .social {
    margin-left: auto;
    margin-right: 45px;
}

/* media */
@media (max-width: 1500px) {
    .main_info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 30px;
    }
    .main_img {
        max-width: 450px;
    }
    .container {
        max-width: 1170px;
    }
    .benefits_inner {
        padding-left: 42px;
    }
}

@media (max-width: 1140px) {
    .team_item {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .main_img {
        max-width: 350px;
    }
    .main_title {
        font-size: 40px;
    }
    .title {
        font-size: 36px;
        line-height: 48px;
    }
    .roadmap_etap {
        font-size: 24px;
    }
    .undertitle {
        font-size: 20px;
    }
    .uppertitle {
        font-size: 28px;
    }
    .text {
        font-size: 18px;
        line-height: 28px;
    }
    .nav_toggle {
        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;
    }
    .nav {
        display: block;
        overflow: auto;
        padding: 35px 20px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 230px;
        z-index: 100;
        visibility: hidden;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateX(-700px);
        transform: translateX(-700px);
        background-color: #29292b;
    }
    .nav.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
    }
    .nav ul {
        display: block;
    }
    .nav ul li {
        margin-left: 0;
        margin-bottom: 25px;
    }
    .nav ul li a {
        font-size: 16px;
        display: table;
        padding: 10px 22px;
        background-color: #343435;
        color: #fff;
        min-width: 170px;
        -webkit-box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
        box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
    }
    .header .social {
        margin-left: auto;
    }
    .perks_item {
        width: 46%;
        margin-bottom: 20px;
    }
    .roadmap_etap {
        max-width: 340px;
        margin-right: 25px;
    }
    .roadmap_item .text {
        padding-left: 45px;
    }
    .information {
        margin-bottom: 40px;
    }
    .faq_inner {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .main_inner {
        display: block;
    }
    .main_info {
        margin-right: 0;
    }
    .main_img {
        margin-top: 40px;
    }
    .perks_item {
        width: 100%;
    }
    .perks_inner {
        margin-top: 0;
    }
    .team_inner {
        margin-top: 0;
    }
    .roadmap_inner {
        margin-top: 0;
        padding-left: 10px;
    }
    .roadmap_item {
        display: block;
        border-left: 2px solid #fff;
        position: relative;
        padding-left: 45px;
        padding-bottom: 70px;
    }
    .roadmap_item::before {
        position: absolute;
        content: "";
        top: 0;
        left: -21px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #d1d1d1;
        border: 2px solid #ffffff;
    }
    .roadmap_item .text {
        padding: 0;
        border-left: 0;
    }
    .roadmap_item .text::before {
        display: none;
    }
    .roadmap_item:nth-child(2)::before {
        background: #c8c49f;
    }
    .roadmap_item:nth-child(3)::before {
        background: #c0b17c;
    }
    .roadmap_item:nth-child(4)::before {
        background: #d3b25d;
    }
    .roadmap_item:nth-child(5)::before {
        background: #deb03a;
    }
    .roadmap_item:nth-child(6)::before {
        background: #fdb930;
    }
    .roadmap_item:last-child {
        padding-bottom: 0;
    }
    .roadmap_etap {
        margin-bottom: 15px;
    }
    .team_img {
        width: 160px;
        height: 160px;
    }
    .timeline_item .roadmap_title {
        max-width: 70px;
    }
    .timeline_info {
        padding-left: 30px;
        padding-bottom: 50px;
    }
    .launch .triangle.right {
        display: none;
    }
}

@media (max-width: 560px) {
    .logo img {
        width: 100px;
    }
    .social a {
        margin-left: 10px;
    }
    .main_title {
        font-size: 32px;
        line-height: 44px;
    }
    .uppertitle {
        font-size: 24px;
    }
    .title {
        font-size: 28px;
        line-height: 40px;
    }
    .text {
        font-size: 16px;
        line-height: 26px;
    }
    .join_inner {
        display: block;
    }
    .join_inner .btn {
        margin: 0 auto;
    }
    .join_inner .text {
        margin-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    .benefits_inner {
        margin-top: 0;
    }
    .team_item {
        display: block;
        text-align: center;
    }
    .team_img {
        margin: 0 auto 15px;
    }
    .information {
        padding: 45px 30px;
    }
    .information_item {
        width: 100%;
    }
    .information_item:last-child {
        margin-bottom: 0;
    }
    .faq_inner {
        margin-top: 60px;
    }
    .footer_inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer_inner .social {
        margin-right: 15px;
        margin-left: 0;
    }
    .footer_inner .text {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 25px;
    }
    .main,
    .about,
    .benefits,
    .perks,
    .roadmap,
    .team,
    .timeline,
    .launch,
    .faq {
        padding: 40px 0;
    }
    .circle {
        display: none;
    }
    .roadmap_etap {
        margin-right: 0;
    }
    .triangle {
        display: none;
    }
    .title {
        text-align: center;
    }
}

@media (max-width: 390px) {
    .footer_inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .footer_inner .social {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 25px;
    }
}
/*# sourceMappingURL=style.css.map */
