* {
    box-sizing: border-box;
   }
   .nav {
     height: 75px;
     width: 100%;
     background-color: #1177ca;
     position: fixed;
     z-index: 999999;
   }
   
   .nav > .nav-header {
     display: inline;
   }
   
   .nav > .nav-header > .nav-title {
     display: inline-block;
     font-size: 22px;
     color: #fff;
     font-weight: 550;
     font-family: Arial, Helvetica, sans-serif;
     padding: 10px 10px 10px 10px;
   }
   
   .nav > .nav-btn {
     display: none;
   }
   
   .nav > .nav-links {
     display: inline;
     float: right;
     font-size: 18px;
     margin-top: 20px;
   }
   .nav > .nav-links > ul li a{
     display: block;
     padding: 0 8px;
     color: #fff;
     line-height: 40px;
     font-size: 18px;
     text-decoration: none;
 
   }
   .nav > .nav-links > ul{
     padding: 0;
     margin-top: 5px;
     list-style: none;
     position: relative;
     
   }
   .nav > .nav-links > ul li{
     display: inline-block;
     background-color: #1177ca;
     padding-left: 0.5em;
     padding-right: 0.5em;
     
   }
   .nav > .nav-links > ul li:hover{
       background-color: #0b65af;
       border-radius: 5px;
   }
   
   .nav > #nav-check {
     display: none;
   }
 
  .nav .nav-links ul a.icon{
  margin-left: 80px;
  margin-right: 10px;
  }
 
  .nav .nav-links ul a i{
     background-color: #fff;
     border-radius: 50px;
     padding: 7px;
     margin-left: 5px;
  }
 
   
   @media (max-width:750px) {
     .nav > .nav-btn {
       display: inline-block;
       position: absolute;
       right: 0px;
       top: 0px;
     }
     .nav > .nav-btn > label {
       display: inline-block;
       width: 50px;
       height: 50px;
       padding: 13px;
     }
     .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
       background-color: rgba(0, 0, 0, 0.3);
     }
     .nav > .nav-btn > label > span {
       display: block;
       width: 25px;
       height: 10px;
       border-top: 2px solid #eee;
     }
     .nav > .nav-links {
       position: absolute;
       display: block;
       width: 100%;
       background-color: #333;
       height: 0px;
       transition: all 0.3s ease-in;
       overflow-y: hidden;
       top: 50px;
       left: 0px;
     }
     .nav > .nav-links > ul li a {
       display: block;
       width: 100%;
     }
 
     /*   */
 
 
     
       .nav > .nav-links > ul li{
         display: block;
         margin-bottom: 20px;
         padding: 0;
         background-color: #333;
          
       }
       .nav > .nav-links > ul li a{
           margin-left: 0%;
       }
       .nav .nav-links ul a.icon{
         margin-left: 33%;
       }
 
     /*   */
     .nav > #nav-check:not(:checked) ~ .nav-links {
       height: 0px;
     }
     .nav > #nav-check:checked ~ .nav-links {
       height: calc(100vh - 50px);
       overflow-y: auto;
     }
   }


   .video-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    @media(min-width: 600px) {
      height: 100vh;
    }
  }
  
  video {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }

  .video-container:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(black, .2);
    z-index: 1;
  }

  .section1-head {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1;
    font-family: Futura, Helvetica, sans-serif;
    font-size: 5vw;
    color: #FFFFFF;
    @media (max-width: 400px) {
      font-size: 22px;
    }
    @media (min-width: 1200px) {
      font-size: 75px;
    }
  }
  
  .callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
  }

  .support {
    position: fixed;
    bottom: 60px;
    right: 20px;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
    text-align: right;
    position: relative;
    z-index: 10;
}

.partner-coin-img{
    width: 195px;
    max-width: 100%;
    height: auto;
}

.roadMapDiv {
  width: 65%;
  margin: auto;
}

.roadMapItem {
  border-top: 2px dashed;
  border-color: blue !important;
  margin:0; padding: 30px;
  counter-increment: section;
  position: relative;
}

.roadMapItem:nth-child(even):before {
  right: 100%; 
  margin-right: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: blue;
  text-align:center;
  color: white;
  font-size: 110%;
}

.roadMapItem:nth-child(odd):before {
  left: 100%; 
  margin-left: -20px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 20px;
  width: 20px;
  background-color: blue;
  text-align:center;
  color: white;
  font-size: 110%;
}

.roadMapItem:nth-child(even) {
  border-left: 2px dashed;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-right: 30px; 
  padding-right: 0;
}

.roadMapItem:nth-child(odd) {
  border-right: 2px dashed;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: 30px; 
  padding-left: 0;
}

.roadMapItem:first-child {
  border-top: 0;
  border-top-right-radius:0;
  border-top-left-radius:0;
}

.roadMapItem:last-child {
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}