@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', cursive;
}
html{
    scroll-behavior: smooth;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
.text-center{
    text-align: center;
}
h2{
    font-size: 35px;
    color: #fff;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 700;
}
h3{
    font-size: 30px;
    color: #fff;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 600;
}
h4{
    font-size: 25px;
    color: #fff;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 600;
}
section{
    padding: 40px 0;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.bg-video-wrap video {
    width: 1280px;
    height: 100vh;
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
    object-fit: cover;
}
.bg-video-wrap .overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  background-size: 3px 3px;
  z-index: 2;
  overflow-y: scroll;
    scroll-behavior: smooth;
}
/* Navigation section all the css....*/
.navigation{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.navigation .row{
    justify-content: center;
}
.navigation ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.navigation ul li{
    display: inline-block;
}
.navigation ul li a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    text-align: center;
    transition: .4s;
}
.navigation ul li a:after {
  display:block;
  content: '';
  border-bottom: solid 3px #fff;  
  transform: scaleX(0);  
  transition: transform 300ms ease-in-out;
}
.navigation ul li a:hover:after { 
    transform: scaleX(1);
}
.navigation ul li a:after{ 
    transform-origin:  0% 50%; 
}

.navigation .icon{
    margin-left: 30px;
}
.navigation .icon .item{
    display: inline-block;
    padding: 15px 15px;
}
.navigation .icon span{
    color: #fff;
    font-size: 25px;
}
.navigation .icon span:hover{
    color: #FF5733;
}

/* Home Main all the css....*/
.main .section-1 .caption {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}
.main .section-1 .caption img{
    width: 250px;
}
.main .section-1 .caption h1{
    text-align: center;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    padding-bottom: 30px;
}
.main .section-1 .caption p{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
}
.main .section-1 .bouncing-arrow{
    text-align: center;
}
.main .section-1 .bouncing-arrow a{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    margin-top: 50px;
}
.main .section-1 .bouncing-arrow .fas{
    font-size: 70px;
    display: block;
}
.main .section-1 .bouncing-arrow .text{
    font-size: 14px;
}
.main .section-1 .bouncing-arrow a:hover{
    text-decoration: none;
    color: #fff;
}
.main .section-1 .bouncing-arrow a {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover .5s infinite  alternate;
}
.main .section-1 .bouncing-arrow a {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover .5s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* About section all the css....*/
.about-section{
    width: 100%;
    background-image: linear-gradient(to right, rgba(255,0,0,0), rgb(63 167 73));
    margin-top: 100px;
}
.about-section .column-img img{
    width: 350px;
    border-radius: 5px;
}
.about-section .heading{
    padding-bottom: 20px;
}
.about-section .column-content{
    padding-left: 40px;
}
.about-section .column-content p{
    color: #fff;
    font-size: 16px;
}
.about-section .column-content h4{
    color: #fff;
}

/* Character section all the css....*/
.character-section{
    width: 100%;
}
.character-section .sec-img img{
    width: 100%;
}

/* Roadmap section all the css....*/
.roadmap{
    width: 100%;
}
.roadmap .step{
    text-align: center;
    margin-top: 40px;
}
.roadmap p{
    color: #fff;
}
.roadmap .step .item{
    text-align: center;
    width: 700px;
    margin: 0 auto;
    border: 1px solid #f4bb0d;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    margin-bottom: 40px;
    padding: 20px 30px;
}
.roadmap .step .img-item{
    text-align: center;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.roadmap .step .img-item img{
    width: 100%;
    border-radius: 15px;
}
.roadmap .fas{
    font-size: 50px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.roadmap .step .item h5{
    background: #FF5733;
    padding: 14px 10px;
    border-radius: 7px;
    text-align: center;
    display: inline-block;
    width: 200px;
    font-size: 30px;
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 30px;
}
.roadmap .step .multi-img-item{
    width: 700px;
    margin: 0 auto;
}
.roadmap .step .multi-img-item .row{
    justify-content: center;
}
.roadmap .step .multi-img-item .row .column{
    width: 25%;
    margin-right: 40px;
}
.roadmap .step .multi-img-item .row img{
    width: 200px;
    border-radius: 15px;
}
.roadmap .step .item h3{
    color: #fff;
}
.roadmap .step .item p{
    color: #fff;
}

/* Purchase section all the css....*/
.purchase{
    width: 100%;
}
.purchase p{
    color: #fff;
}
.purchase .fas{
    font-size: 50px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.purchase .purchase-content{
    margin-top: 50px;
}

/* Team section all the css....*/
.team-section{
    width: 100%;
}
.team-section .heading h2{
    margin-bottom: 30px;
}
.team-section .row{
    justify-content: center;
}
.team-section .col-lg-4{
    width: 30%;
    margin-right: 20px;
}
.team-section .col-lg-4:last-child{
    margin-right: 0;
}
.team-section .column-content{
    border: 1px solid #fff;
    border-radius: 5px;
}
.team-section .column-content img{
    width: 100%;
}
.team-section .column-content .content{
    padding: 10px;
    text-align: center;
}
.team-section .column-content .content h2{
    font-size: 25px;
}
.team-section .column-content .content h3{
    font-size: 18px;
    background: #40A74A;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 7px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.team-section .column-content .content a{
    display: block;
}

.team-section .column-content .content .fab{
    font-size: 20px;
    color: #fff;
}
footer{
    width: 100%;
    background: #40A74A;
    padding: 100px 0;
    text-align: center;
    margin-top: 100px;
}
footer h3{
    font-size: 35px;
    text-align: center;
    color: #fff;
}
footer .social-icon{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 20px;
}
footer .social-icon .item{
    width: 50px;
    text-align: center;
}
footer .social-icon .item a{
    display: inline-block;
}
footer .social-icon .item .fab{
    font-size: 25px;
    color: #fff;
}
footer .copyright p{
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.toggle-bar{
    display: none;
}

@media only screen and (max-width: 768px){

.toggle-bar{
    text-align: right;
    display: block;
    padding: 10px;
}
.toggle-bar .toggle-icon {
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    margin-top: 10px;
    cursor: pointer;
}

.container{
    padding: 0 10px;
}  
.row{
    display: block;
}
.col-sm-12{
    width: 100%;
}
.navigation{
    padding-top: 0;
    text-align: center;
    display: none;
    text-align: center;
    background: rgba(0,0,0,0.6);
}
.navigation .icon{
    margin-left: 0;
}
.navigation .menu ul{
    width: 100%;
}
.navigation-bar-show{
	display: block;
}
.navigation li{
    display: block;
    width: 100%;
    border-bottom: 1px solid gray;
}
.navigation ul li a{
    width: 100%;
    padding: 15px 0;
}
.navigation ul li a:after {
  display:block;
  content: '';
  border-bottom: none;  
    
}
.main .section-1 .caption {
    padding-top: 20px;
    padding-bottom: 70px;
}
.main .section-1 .bouncing-arrow a{
    margin-top: 0;
}
.main .section-1 .caption h1{
    font-size: 28px;
    line-height: 1.5em;
}
.main .section-1 .caption p{
    font-size: 16px;
}

.about-section{
    margin-top: 30px;
}
.about-section .column-img{
    text-align: center;
}
.about-section .column-content{
    padding-left: 0;
}
section {
    padding: 20px 0;
}
.roadmap .step .item{
    width: 90%;
    padding: 10px;
}
.roadmap .step .item h5{
    width: 120px;
    padding: 7px 10px;
    padding-top: 20px;
}
.roadmap .step .multi-img-item{
    width: 100%;
}
.roadmap .step .multi-img-item .row{
    display: flex;
}
.roadmap .step .multi-img-item .row .column {
    width: 25%;
    margin-right: 25px;
}
.roadmap .step .multi-img-item .row img{
    width: 100px;
}
.purchase-content h2{
    font-size: 25px;
    line-height: 1.4em;
}
.team-section .col-lg-4{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}
footer{
    padding: 30px 0;
}
    
}








