html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;800&display=swap');

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Orbitron', sans-serif;
}
ol, ul {
	list-style: none;
}
h2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 63px;
}

@media only screen and (max-width:768px) {
    h2 {
        font-size: 40px!important;
    }
}

p, span {
    font-family: 'Archivo', sans-serif;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.content-area {
    overflow: hidden;
}

.responsive {
    width: 100%;
    height: auto;
}

.container {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
    padding: 0 15px;
}

/* HEADER */
.header {

}

.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

.menu{
    width: 100%;
    padding: 40px 0;
}

.menu ul{
    display: flex;
    justify-content: center;
}

.menu ul li {
    margin-right: 125px;
    position: relative;
}

.menu ul li:last-child {
    margin-right: 0px;
}

@media only screen and (max-width: 1044px) {
    .menu ul li {
        margin-right: 75px;
        position: relative;
    }
}

.menu ul li:before {
    content: url('../images/star.svg');
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    transform: rotate(0deg);
    transition: 0.35s ease-in-out;
  }
  .burger-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #000;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger-line:nth-child(1) {
    top: 0;
  }
  .burger-line:nth-child(2), .burger-line:nth-child(3) {
    top: 0.5rem;
  }
  .burger-line:nth-child(4) {
    top: 1rem;
  }
  .burger.is-active .burger-line:nth-child(1), .burger.is-active .burger-line:nth-child(4) {
    top: 1.25rem;
    width: 0%;
    left: 50%;
  }
  .burger.is-active .burger-line:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger.is-active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  @media only screen and (max-width: 868px) {

    .header__flex  {
        padding-bottom: 30px;
        padding-top: 30px;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .header__flex.is-active  {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9;
        left: 0;
        padding: 30px;
        display: block;
    }

    .header__social {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        justify-content: flex-start;
    }

    .header__social.is-active {
        position: relative;
        transform: none;
        right: auto;
        left: 0;
        top: 0;
        justify-content: flex-start;
    }

    .burger {
      display: block;
      opacity: 1;
      visibility: visible;
    }
    .menu {
      width: 100%;
      max-height: 0rem;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transition: all 0.35s ease;
    }
    .menu.is-active {
      opacity: 1;
      visibility: visible;
      margin-top: 40px;
      margin-bottom: 60px;
    }
    .menu ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem 0;
    }

    .menu.is-active ul li {
        margin-bottom: 30px;
        padding-left: 35px;
    }

    .menu.is-active ul li:before {
        left: 0;
    }

    .menu.is-active ul li a{
        font-size: 24px;
    }

  }



.header__social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__social img{
    width: 21px;
    height: 21px;
}

.header__social a{
    margin-right: 28px;
}

.header__social a:last-child{
    margin-right: 0px;
}

.menu__link {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
    position: relative;
}

.menu__link:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 2px;
    bottom: -4px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.menu__link:hover,
.menu__link:visited {
    color: #000;
}

.menu__link:hover:after {
    background-color: #FFB930;
    width: 100%;
    opacity: 1;
    visibility: visible;

}

.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    position: relative;
    margin: 50px 0;
}

.main-logo {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}


.circle-logo {
    margin-top: -40px;

    transform: rotate(0deg);
    transition: transform 0.9s linear;
    animation: rotate 8s infinite linear;
}


@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

/* SLIDER */
section {
    padding: 50px 0!important;
}

.slider {
    padding: 50px 0!important;
    cursor: pointer;
    margin-left: calc(-110vw + 100%)!important;
    margin-right: calc(-110vw + 100%)!important;
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
    opacity: 0;
    visibility: hidden;

    transition: all .3s ease-in-out;
}

.slider:hover .swiper-button-next,
.slider:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.slider__item {
    border: 4px solid #000;
    border-radius: 11px;
    padding: 16px 20px;
    position: relative;
}

.slider__image {
    max-height: 382px;
}

.slider__item::after {
    content: 'SPECIAL ACCESS +';
    position: absolute;
    right: -9px;
    top: 40px;
    writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #000;
    background-color: #fff;
    padding: 4px 0;
}

.slider__item::before {
    content: 'BEYOND BOUNDARIES';
    position: absolute;
    left: -7px;
    bottom: 40px;
    writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 9px;
    line-height: 11px;
    color: #000;
    background-color: #fff;
    padding: 4px 0;
}


/* PLAYER */
.text-with-player__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 112px;
    align-items: center;
}

.text-with-player__content h2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 63px;
    padding-bottom: 53px;
    margin: 0px;
}

.text-with-player__content p {
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
    font-family: 'Archivo', sans-serif;
}

.text-with-player__content span {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    font-family: 'Archivo', sans-serif;
    padding-top: 25px;
}

/* WALLET */
.wallet {
    /* background: #F8F8F8; */
    padding: 100px 0 140px!important;
    margin: 50px 0;
    background-image: url('../images/wallet2.png');
    position: relative;
    background-repeat: repeat-x;
    width: 100%;

    animation: scroll-anim 15s linear infinite;
}

.wallet__anima {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes scroll-animw {
	100% {
		background-position: 100% 0%;
	}
}

.wallet__content {
    width: 100%;
    margin: 0 auto;
    max-width: 570px;
}

.wallet__box {
    padding: 46px 60px;
    border: 4px solid #000000;
    border-radius: 20px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.wallet__box:after {
    content: 'PROTO DROP';
    position: absolute;
    left: 40px;
    top: -15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    background-color: #F8F8F8;
    padding: 0px 6px;
}

.wallet__box::before {
    content: 'LIMITED EDITION';
    position: absolute;
    left: -11px;
    bottom: 40px;
    writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: #000;
    padding: 6px 0;
    background-color: #F8F8F8;
}

.wallet__title {
    font-weight: 800;
    font-size: 50px;
    line-height: 63px;
    color: #0029FF;
    margin: 0px;
}

.wallet__date {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    color: #000;
    padding-top: 10px;
    font-family: 'Archivo', sans-serif;
}

.wallet__image {
    margin-top: 42px;
    display: block;
}

.wallet__flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 33px;
}

.wallet__item {
    text-align: center;
    margin-right: 70px;
}

.wallet__item:last-child {
    margin-right: 0px;
}

.wallet__item span {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
}

.wallet__item h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: #0029FF;
}

.wallet__button {
    background: #0029FF!important;
    border-radius: 10px!important;
    font-weight: 700!important;
    font-size: 25px!important;
    line-height: 25px!important;
    text-align: center!important;
    padding: 20px 108px!important;
    display: block!important;
    margin-top: 53px!important;
    color: #fff!important;
    text-decoration: none!important;
    font-family: 'Orbitron', sans-serif;
    /* border: 1px solid #0029FF; */

    transition: all .3s ease-in-out;
}

.wallet__button:hover {
    background-color: #021EB2!important;
    /* border: 1px solid #0029FF; */
    /* color: #0029FF!important; */
}

/* TEAM */
.team {
    padding-bottom: 0px!important;
    margin-bottom: -50px;
    overflow: hidden;
}


.teamswiper {
    margin-right: calc(-100vw + 100%)!important;
}

.team h2 {
    margin: 0px;
    padding-bottom: 52px;
}

.team__items {
    margin-bottom: 57px;
}

.team__item {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 34px;
}

.team__item-left {
    width: 30%;
}

.team__item-left .team__social {
    justify-content: center;
}

.team__item-right {
    width: 70%;
    padding-left: 37px;
}

.team__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #878787;
    margin: 0px;
    padding-top: 15px;
    
}

.team__slide, .team__item {
    background: #FFFFFF;
    border: 4px solid #000000;
    border-radius: 20px;
    padding: 40px;
}

.team__slide::before {
    content: 'BEYOND BOUNDARIES';
    position: absolute;
    left: -8px;
    top: 40px;
    writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #000;
    padding: 6px 0;
    background-color: #FFF;
}

.team__item::before {
    content: 'BEYOND BOUNDARIES';
    position: absolute;
    left: -8px;
    top: 40px;
    writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #000;
    padding: 6px 0;
    background-color: #FFF;
}

.team__image {
    background-color: #FF3042;
}

.team__name {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    padding-top: 24px;
}

.team__title {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Archivo', sans-serif;
    padding-top: 4px;
}

.team__social {
    display: flex;
    align-items: center;
    margin-top: 22px;
}

.team__social img {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 15px;
}

.team__social img:last-child {
    margin-right: 0px;
}

/* BANER */
.banner {
    padding: 0px!important;
}

.banner__content {
    background-color: #000;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 15px;
    background-image: url('../images/2.png');
    background-repeat: repeat-x;
    /* background-size: cover; */
    width: 100%;

    animation: scroll-anim 10s linear infinite;
}

@keyframes scroll-anim {
	100% {
		background-position: 100% 0%;
	}
}

.banner__title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__title h1 {
    color: #fff;
    font-weight: 800;
    font-size: 90px;
    line-height: 113px;
    text-align: center;
}

.banner__title img {
    width: 100px;
    height: 100px;
    margin: 0 45px;
}

.banner__image img {
    display: block;
}

/* BANNER JOIN */
.banner-join {
    padding: 80px 0!important;
    background-color: #0029FF;
    margin-bottom: 50px;
}

.banner-join__button {
    color: #0029FF!important;
}

.banner-join__button:hover {
    color: #fff!important;
}

.banner-join__content {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-join h2 {
    padding-bottom: 23px;
    margin: 0px;
    color: #fff;
}

.banner-join p {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    padding-bottom: 70px;
    color: #fff;
}

.button {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 16px 42px;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: #0029FF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* border: 1px solid #fff; */

    transition: all .3s ease-in-out;
}

.button:hover {
    background-color: #021EB2;
    color: #fff;
}

.banner-join__button svg {
    margin-left: 32px;
    width: 36px;
    height: 36px;
}

.button:hover svg path {
    fill: #fff;
}

/* TIMELINE */
.timeline {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.timeline:after {
    content: '';
    background: linear-gradient(270deg, #FFFFFF 13.7%, rgba(255, 255, 255, 0) 97.94%);
    transform: matrix(1, 0, 0, -1, 0, 0);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 317px;
    height: 434px;
    z-index: 9;
}

.timeline::before {
    content: '';
    background: linear-gradient(270deg, #FFFFFF 13.7%, rgba(255, 255, 255, 0) 97.94%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%) matrix(1, 0, 0, -1, 0, 0) rotate(180deg);
    width: 317px;
    height: 434px;
    z-index: 9;
}

@media only screen and (max-width: 1100px) {

    .timeline::before, .timeline::after {
        display: none;
    }

    .banner__title h1 {
        font-weight: 800;
        font-size: 60px;
        line-height: 75px;
    }
    
}

.timeline__title {
    padding-bottom: 80px;
    margin: 0px;
    text-align: center;
}

.timeline__contentup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 90px;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}


.timeline__contentdown {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    display: flex;
    column-gap: 90px;
    justify-content: center;
    position: relative;
    margin-top: 110px;
}


.timeline__content--mobile {
    display: none;
}

.desktop-line {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 52%;
    transform: translateY(-52%);
}

@media only screen and  (max-width: 956px) {
    .desktop-line {
        top: 50%;
        transform: translateY(-50%);
    }   
}

.mobile-line {
    position: absolute;
    top: 64%;
    transform: translateY(-64%);
    left: 0;
    display: none;
}

@media only screen and  (max-width: 802px) {
    .mobile-line {
        top: 63%;
        transform: translateY(-63%);
    }   
}

@media only screen and  (max-width: 711px) {
    .mobile-line {
        top: 59%;
        transform: translateY(-59%);
    }   
}

 @media only screen and  (max-width: 402px) {
    .mobile-line {
        top: 64%;
        transform: translateY(-64%);
    }   
}

@media only screen and  (max-width: 401px) {
    .mobile-line {
        top: 61%;
        transform: translateY(-61%);
    }   
}



.timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.timeline__contentdown .timeline__item {
    max-width: 400px;
}

.timeline__number {
    font-weight: 800;
    font-size: 30px;
    line-height: 33px;
    color: #CDCDCD;
    margin-bottom: 50px;
    font-family: 'Archivo', sans-serif;
}

.timeline__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #2A2A2A;
    margin-top: 30px;
    margin-bottom: 4px;
    text-align: center;
    font-family: 'Archivo', sans-serif;
}

.timeline__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding-top: 22px;
    font-family: 'Archivo', sans-serif;
    color: #000;
    text-align: center;
}


.timeline__icon {
    width: 25px;
    height: 39px;
}

.timeline__date {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #CDCDCD;
    text-align: center;
    font-family: 'Archivo', sans-serif;
}

/* PARTNERS */
.partners {
    padding: 50px 0;
}

.partners h2 {
    margin: 0px;
    padding-bottom: 80px;
    text-align: center;
}

.partners__content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__content a {
    margin-right: 90px;
    display: block;
}

.partners__content a:last-child {
    margin-right: 0px;
}

/* FAQ */
.faq {
    margin-top: 50px;
    padding: 100px 0!important;
    background: #F8F8F8;
}

.faq h2 {
    margin: 0px;
    padding-bottom: 80px;
    text-align: center;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    width: 100%;
    max-width: 630px;
    margin: 0 auto 18px;
}

.faq__accordion:last-child {
    margin-bottom: 0px;
}

.accordion {
    background: rgba(255, 255, 255, 0.7);
    border: 4px solid #000000;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    padding: 24px 40px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.accordion svg {
    position: absolute;
    right: 40px;
}

.accordion h3 {
    padding-right: 20px;
}

.accordion.is-open {
    transition: all .3s ease-in-out;
    border-bottom: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.fq_active{
    border: 4px solid #000;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion.is-open svg {
    transform: rotate(180deg);
    transition: all .3s ease-in-out;
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    padding: 0px 40px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
}

.faq__content p {
    margin: 24px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

/* FOOTER */
footer {
    padding: 35px 0;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    max-width: 114px;    
}

.footer__button {
    background-color: #0029FF;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    padding: 12px 20px;
    /* border: 1px solid #0029FF; */

    transition: all .3s ease-in-out;
}

.footer__button:hover {
    background-color: #021EB2;
    /* color: #0029FF; */
}

.footer__button svg {
    width: 24px;
    height: 18px;
    margin-left: 17px;
}

.footer__button:hover svg path {
    fill: #fff;
}

.menu--footer {
    width: 100%;
    max-width: 700px;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    justify-content: center;
}

.menu--footer ul {
    align-items: center;
}

.menu--footer li {
    margin-right: 62px!important;
    display:flex;
}

.menu--footer li:last-child {
    margin: 0px!important;
}

.menu--footer .menu__link {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
}

.copyright {
    padding-bottom: 30px;
}

.copyright__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    font-family: 'Archivo', sans-serif;
}

.copyright__right {
    display: flex;
    align-items: center;
}

.copyright__right h6 {
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    margin-right: 16px;
    font-family: 'Archivo', sans-serif;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__social img {
    width: 20px;
    height: 20px;
}

.footer__social a {
    margin-right: 28px;
}

.footer__social a:last-child {
    margin-right: 0px;
}

.swiper-button-next, .swiper-button-prev {
    color: #000!important;
}

/* Responsive */

@media only screen and (min-width: 801px) and (max-width:868px){
    .menu--footer li {
        margin-right: 0px!important;
    }

    .menu--footer ul li::before {
        display: none;
    }
}

@media only screen and (max-width:868px){
    .footer__flex {
        flex-direction: column;
    }

    .menu--footer {
        max-height: 100%;
    }

    .menu--footer ul {
        flex-direction: row;
        padding: 40px 0;
    }

    .menu--footer li {
        margin-right: 42px!important;
    }
}

@media only screen and (max-width: 800px) {

    

    .header__logo {
        margin: 90px 0 20px 0;
    }

    .text-with-player__content {
        display: flex;
        flex-direction: column;
        align-items: inherit;
    }

    .text-with-player__col {
        margin-bottom: 30px;
    }

    .text-with-player__col:last-child {
        margin-bottom: 0px;
    }

    .banner__content {
        padding: 50px 15px;
    }
    .banner__title h1 {
        font-size: 32px;
    }

    .banner__title img {
        width: 50px;
        height: 50px;
        margin: 0 45px;
    }

    .timeline__content--desktop {
        display: none;
    }
    
    .timeline__content--mobile {
        display: block;
    }

    .desktop-line {
        display: none;
    }

    .mobile-line {
        display: block;
    }

    .wallet {
        padding-bottom: 43px!important;
        overflow: hidden;
    }

    .wallet__anima {
        width: auto;
        height: auto;
    }

    .wallet__item {
        margin-right: 24px;
    }

    .wallet__date {
        font-size: 24px;
        text-align: center;
        font-family: 'Archivo', sans-serif;
    }

    .wallet__title {
        font-size: 36px;
    }

    .wallet__item h4 {
        font-size: 22px;
    }

    .team__item {
        flex-direction: column;
    }

    .team__item-left, .team__item-right {
        width: 100%;
    }
    
}

@media only screen and (max-width: 658px) {

    .wallet__button {
        height: 60px;
        width: 300px;
        padding: 0px!important;
        display: flex!important;
    }

    .banner-join__button {
        font-size: 25px;
    }

    .menu--footer {
        display: flex;
    }

    .menu--footer ul {
        flex-direction: column;
        padding: 40px 0;
        align-items: center;
    }

    .teamswiper {
        margin-right: calc(-100vw + 50%)!important;
        margin-top: 23px;
    }

    .slider {
        margin-left: calc(-100vw + 50%)!important;
        margin-right: calc(-100vw + 50%)!important;
    }

    .team__item-right {
        padding-left: 0px;
    }

}

@media only screen and (max-width: 488px) {

    .menu--footer ul li:before {
        display: none;
    }

    .copyright__content {
        flex-direction: column;
    }

    .copyright__right {
        flex-direction: column;
    }

    .copyright__right h6 {
        margin: 0px;
        margin-bottom: 15px;
    }

    .footer__social a{
        margin: 0 14px
    }

    .footer__social a:last-child {
        margin: 0 14px;
    }

    .copyright__text {
        margin-bottom: 20px;
    }

    .menu--footer li {
        margin: 0px!important;
    }

    .partners__content {
        flex-direction: column;
    }

    .partners__content a {
        margin: 0px;
        margin-bottom: 30px;
    }

    .partners__content a:last-child {
        margin: 0px;
        margin-bottom: 0px;
    }

    .banner__title h1 {
        font-size: 24px;
    }

    .banner__title img {
        width: 40px;
        height: 40px;
        margin: 0 35px;
    }

    .text-with-player__content h2 {
        padding-bottom: 33px;
    }
    .accordion {
        text-align: left;
    }

}
