body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0D1A3A;
    background: #011F48;
    background-image: url(../img/bkintro.jpg);
    background-position: center center;
    top: 0;
    height: 2650px;
    line-height: 32px;
    overflow-x: hidden;
}

p {
    margin: 0;
    padding: 0;
}

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

img {
    max-width: 100%;
}

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

button {
    outline: none;
    cursor: pointer;
}

button:hover {
    text-decoration: underline;
}

/* Container */

.container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

/* Header */

.header__inner {
    align-items: center;
    padding-top: 32px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index:  5;
}

.nav {
    display: flex;
    margin-left: 64px;
}

.nav__item {
    margin-left: 32px;
    display: block;

    text-decoration: none;
    transition: 0.5s;
}

.nav__item:first-child {
    margin-left: 0;
}

.nav__item:hover {
    transform: rotate(25deg);
    transition: 0.5s;
}

/* Intro */
.intro-2{display: flex;align-items: center;justify-content: center;width: 100%;position: absolute;top: -64px;margin: 0 auto;left: auto;right: auto;z-index: -2px;transform: rotate(-24deg) translateX(640px);}
.intro-2>div:not(:last-child){margin: 0 0 0 0;}
.intro-2>div>figure{display: flex;align-items: center;justify-content: center;margin-left: 0;margin-bottom: 32px;width: 256px;transition: .3s;}
.intro-2>div>figure{height: 256px;width: 256px;transform: translateZ(1px);}
.intro-2>div>figure:hover{transform: scale(1.05);transition: .3s;}
.intro-2>div>figure img {transform: rotate(0);vertical-align: middle;}


.intro {
    margin-top: 90px;
}

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

.intro__title {
    font-weight: 800;
    font-size: 55px;
    line-height: 140%;

    color: #FFFFFF;
}

.intro__subtitle {
    width: 370px;
    margin-top: 25px;
    margin-bottom: 35px;

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 190%;

    color: #FFFFFF;
}

.into__btn {
    padding: 12px 30px;
    width: 210px;
    display: block;

    font-weight: 700;
    font-size: 16px;
    line-height: 190%;
    text-decoration: none;
    color: #FFFFFF;

    background-image: linear-gradient(75deg, #FDC830, #f3a135, #f19011, #f5af19); 
    background-size: 300% ;
    background-position: left;
    transition: 300ms background-position ease-in-out;
}

.into__btn:hover {
    background-position: right; 
}

.into__btn__text {
    margin-top: 30px;

    font-weight: 400;
    font-size: 16px;
    line-height: 190%;

    color: #FFFFFF;
}

/* About */

.about {
    margin-top: 120px;
}

.about__inner {
    height: auto;
    width: 1060px;

    background-image: url(../img/about__bk.png);
}

.about__text {
    display: flex;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 36px;
    padding-left: 80px;
    padding-right: 80px;
}

.swiper-container{
    width: 495px;
    overflow: hidden;
}

.about__title {
    margin-bottom: 20px;

    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 140%;
    color: #FFFFFF;
}

.about__subtitle {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 190%;

    color: #FFFFFF;
}

.about__subtitle, .about__title {
    margin-left: -50px;
}

.about__title {
    z-index: 10;
}

.about__subtitle {
    z-index: 10;
}

.about__blur {
    position: absolute;
    margin-left: -200px;
    z-index: -1;
}

/* Roadmap */

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

.roadmap__inner {
    display: flex;
    justify-content: space-between;
}

.roadmap__item {
    width: 378px;
    height: 299px;

    background: url(../img/roadmap-item.png);
}

.roadmap__item-r {
    width: 378px;
    height: 299px;

    background: url(../img/roadmap-item-r.png);
}

.roadmap__item:first-child, .roadmap__item-r:first-child {
    margin-bottom: 185px;
}

.roadmap__item-r:first-child {
    margin-top: 240px;
}

.roadmap__item__inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 27px;
}

.roadmap__inner__left {
    margin-left: 125px;
}

.roadmap__inner__right {
    margin-right: 125px;
}

.roadmap__item__date, .roadmap__item__date-r {
    margin-left: 40px;
    margin-bottom: 25px;

    font-weight: 700;
    font-size: 16px;
    line-height: 150%;

    text-align: left;

    color: #C6C6C6;
}

.roadmap__item__title {
    margin-bottom: 15px;

    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 180%;

    color: #FFFFFF
}

.roadmap__item__subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 190%;

    color: #FFFFFF;
}

.roadmap__line {
    position: absolute;
    z-index: -20;
    left: 50%;
    right: 50%;
}

.roadmap__blur {
    position: absolute;
    z-index: -10;
    top: 10px;
    left: 10px;
}

/* Footer */

.footer__inner {
    justify-content: center;
    display: flex;
    margin-top: 130px;
}

.footer__inner__text {
    margin-left: 20px;

    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    text-align: center;

    color: #FFFFFF;
}

.roadmap__item__date-r {
    margin-top: 12px;
    margin-bottom: 20px;
    margin-left: 0;
}

.roadmap__inner__adaptive {
    display: none;
}

.header__logo img{height:48px;filter:hue-rotate(128deg)}


.about__blur {
    background: none;
}

.intro__img{
    visibility: hidden;
}

.intro__img__adaptive {
    display: none;
}

#item {
    display: none;
}

.roadmap__item__date {
    margin-top: 5px;
}

.intro__title font{font-weight: normal}


.footer__inner__text font{font-weight:normal}

.roadmap__item__subtitle font{font-weight:normal;}

.into__btn{text-align:center;text-transform:uppercase;width:auto;filter:hue-rotate(180deg);border-radius:50px;}

@media (max-width:1100px) {

    .header__inner{justify-content: space-between;}

    .intro-2{display: none;}

    .intro__img{visibility: visible;padding-left: 64px;}

    .into__btn span{display: none;}

    body {
        height: 2570px;
    }

    .container {
        max-width: 960px;
    }

    .about__subtitle, .about__title {
        width: 445px;
        margin-left: -80px;
    }

    .about__inner {
        width: 960px;
        height: 431px;
        background-image: url(../img/about__bk-1.png);
    }

    .about__text {
        padding-top: 28px;
    }

    .about__text {
        padding-left: 60px;
    }

    .roadmap {
        margin-top: 100px;
    }

    .roadmap__inner__left {
        margin-left: 70px;
    }

    .roadmap__inner__right {
        margin-right: 70px;
    }

    .footer__inner {
        margin-top: 100px;
    }
}

@media (max-width:1000px) {



    body {
        background-image: url(../img/bkintro-1.jpg);
    }

    .container {
        max-width: 728px;
    }

    .slider {
        display: none;
    }

    .about__inner {
        width: 728px;
        height: 320px;
        background-image: url(../img/about__bk-2.png);
    }

    .intro__title {
        font-size: 40px;
    }

    .intro {
        margin-top: 60px;
    }

    .about {
        margin-top: 80px;
    }

    .intro__subtitle {
        width: 280px;
        margin-right: 15px;
    }

    .about__title {
        text-align: center;
    }

    .about__right {
        display: block;
        padding-top: 45px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about__text {
        padding-right: 70px;
        padding-left: 70px;
    }

    .about__subtitle {
        text-align: center;
    }

    .about__subtitle {
        width: 623px;
    }

    .about__subtitle, .about__title {
        margin-left: 0;
    }

    .about__text {
        padding: 0;
    }

    .about__title {
        width: auto;
    }

    .about__blur {
        margin-top: 25px;
        margin-left: -80px;
    }

    .roadmap__inner__left {
        margin-left: 0;
    }
    
    .roadmap__inner__right {
        margin-right: 0;
    }

    .roadmap__item-r:first-child {
        margin-top: 300px;
    }

    .roadmap__item:first-child, .roadmap__item-r:first-child {
        margin-bottom: 310px;
    }

    body {
        height: 2450px;
    }

    .roadmap__inner__adaptive {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .roadmap__inner__left {
        display: none;
    }
    
    .roadmap__inner__right {
        display: none;
    }

    .roadmap__item:first-child, .roadmap__item-r:first-child {
        margin-bottom: 20px;
    } 

    .roadmap__item {
        margin-bottom: 20px;
    }

    .roadmap__item-r {
        margin-bottom: 20px;
    }

    .footer__inner {
        margin-top: 50px;
    }

    .about {
        margin-top: 60px;
    }

    .roadmap {
        margin-top: 70px;
    }

    #item {
        display: block;
    }

    #item-1 {
        display: none;
    }
}

@media (max-width:780px) {

    .container {
        max-width: 440px;
    }

    .intro__inner {
        display: block;
        justify-content: center;
    }

    .intro__img {
        display: none;
    }

    .intro__img__adaptive {
        display: block;
    }

    .intro {
        margin-top: 40px;
    }

    .intro__title, .intro__subtitle, .into__btn__text, .into__btn {
        text-align: center;
    }

    .intro__subtitle {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .intro__img__adaptive {
        margin-bottom: 30px;
    }

    .into__btn {
        display: block;
        width: 250px;
        margin-left: auto;
        margin-right: auto;

        font-size: 15px;
    }

    .intro__title {
        font-size: 30px;
    }

    .intro__subtitle {
        width: 320px;

        font-size: 14px;
    }

    body {
        height: 2590px;

        background-image: url(../img/bkintro-2.jpg);
    }

    .about__inner {
        width: 440px;
        height: 286px;
        background: url(../img/about__bk-4.png);
    }
    
    .about__title {
        margin-bottom: 15px;

        font-size: 25px;
    }

    .about__subtitle {
        font-size: 14px;
    }

    .about__subtitle {
        width: 380px;
    }

    .about__right {
        padding-top: 35px;
    }

    .roadmap {
        margin-top: 90px;
    }

    .roadmap__item__date, .roadmap__item__title, .roadmap__item__subtitle {
        font-size: 14px;
    }

    .roadmap__item__title {
        width: 240px;
    }

    .roadmap__item-r {
        background: url(../img/roadmap-item-r-1.png);
    }

    .roadmap__item-r {
        height: 258px;
    }
    
    .roadmap__item {
        height: 260px;    

        background: url(../img/roadmap-item-1.png);
    }

    .footer__inner {
        display: block;
    }

    .footer__inner__text {
        font-size: 14px;
    }
    
    .footer__logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    
    .footer__inner__text {
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .roadmap__item__inner {
        padding-left: 50px;
    }

    .roadmap__item__date-r {
        font-size: 14px;
    }

    .roadmap__item__date {
        padding-top: 12px;
    }
        
    .roadmap__item__date {
        margin-top: 0px;
        margin-bottom: 15px;
    }

    
}

@media (max-width:480px) {

    .container {
        max-width: 320px;
    }

    .about__inner {
        width: 320px;
        height: 358px;

        background: url(../img/about__bk-5.png);
    }

    .about__subtitle {
        width: 280px;
    }

    .roadmap__item {
        width: 320px;
        height: 299px;

        background: url(../img/roadmap-item-2.png);
    }

    
    .roadmap__item-r {
        width: 320px;
        height: 299px;

        background: url(../img/roadmap-item-r-3.png);
    }

    .roadmap__item__inner {
        padding-top: 25px;
    }

    body {
        height: 2725px
    }

    .roadmap__item__date {
        margin-left: 0;
    }

    .roadmap__item__date-r {
        margin-top: 15px;
        margin-bottom: 15px;
    }

}