@font-face {
  font-family: 'Aboreto-Regular';
  src: url(../font/Aboreto-Regular.ttf);
}

@font-face {
  font-family: 'rompies-rompies-400';
  src: url(../font/rompies-rompies-400.ttf);

}

@font-face {
  font-family: 'Pacifico-Regular';
  src: url(../font/Pacifico-Regular.ttf);
}

@font-face {
  font-family: 'Michroma-Regular';
  src: url(../font/Michroma-Regular.ttf);
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Michroma-Regular';
  margin: 0;
  font-size: 30px;
  line-height: 1.6;
}

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

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






/*Intro*/
.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;

  background:
    url("../img/mask-a.svg") no-repeat,
    url("../img/h1-logo.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.intro-inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'rompies-rompies-400';
  color: #231278;
  font-size: 350px;
  font-weight: 500;
  text-transform: none;
  text-align: center;
  line-height: 1;
}

.intro-subtitle {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  color: azure;
}

/*Button*/

.custom-btn {
  font-family: 'Michroma-Regular';
  top: -5%;
  left: 35%;
  width: 280px;
  height: 49px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: table;
  box-shadow: inset 2px 2px 2px 0px rgba(97, 142, 194, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.btn-13 {
  background-color: #231278;
  background-image: linear-gradient(315deg, #231278 38%, black 66%);
  border: none;
  z-index: 1;
}

.btn-13:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background-color: #4dccc6;
  background-image: linear-gradient(315deg, #852a9e 38%, #0d0727 66%);
  box-shadow:
    -7px -7px 20px 0px #fff9,
    -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}

.btn-13:hover {
  color: #fff;
}

.btn-13:hover:after {
  top: 0;
  height: 100%;
}

.btn-13:active {
  top: 2px;
}


/*Header*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.header-fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.header-logo img {
  width: 100px;

  display: flex;
}

/*Navigation*/
.nav {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;

}

.nav-link {
  font-family: 'Michroma-Regular';
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  position: relative;
  color: #231278;
  text-decoration: none;
  transition: color 0.2s linear;
  background-image: linear-gradient(90deg, #852a9e, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  display: none;
  background-color: #231278;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}


.nav-link:hover {
  color: black;
}

.nav-link:hover:after,
.nav-link.active:after {
  display: block;
  opacity: 1;
}

.nav-link.active {
  color: black;
}

/*Section*/

.section {
  padding: 1px 0;

}


.section-suptitle {
  width: 100%;
  text-align: center;
  color: #231278;
  font-size: 120px;
  font-family: 'rompies-rompies-400';
  font-weight: 700;
}

.section-text {
  display: flex;
  width: 100%;
}

.column {
  flex-direction: column;
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
}

.section-p1 {
  width: 100%;
  max-width: 950px;
  text-align: center;
  font-size: 20px;
  color: black;
}

.section-p2 {
  font-size: 20px;
  width: 100%;
  text-align: center;
  padding-top: -150px;
  color: #852a9e;
}

.section-p-block1 {
  width: 100%;
  max-width: 950px;
  text-align: center;
  font-size: 18px;
  color: black;
}

.section-p-block2 {
  width: 100%;
  max-width: 950px;
  text-align: center;
  font-size: 25px;
  color: black;
}


/*Services*/

.services {
  display: flex;
  padding-left: 15%;
}

.services-item {
  flex: 1 1 0;
  padding-left: 50px;
  position: relative;
  line-height: 30px;
  padding-bottom: 60px;
}

.services-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.services-title {
  color: #4c4e4d;
  font-size: 20px;
}


.background-blue-item {
  position: absolute;
}

.luke-chesser {
  max-width: 100%;
}

/*Roadmap*/

.roadmap {
  padding: 130px;
  position: absolute;
  text-align: center;
  left: 15%;
}

.roadmap-title-h6 {
  letter-spacing: .2em;
  font-size: 15px;
  color: #852a9e;
}

.roadmap-title-h2 {
  font-size: inherit;
}

.roadmap-p1 {
  font-size: 16px;
}

/*Roadmap fix*/

.roadmap-fix {
  margin: 0px;
  padding: 289px;
  background: rgb(230, 230, 230);

  color: rgb(50, 50, 50);
  font-size: 22px;
  line-height: 1.6em;
}

.timeline {
  position: relative;
  width: 660px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80, 80, 80);
  background: -moz-linear-gradient(top,
      rgba(80, 80, 80, 0) 0%,
      rgb(80, 80, 80) 8%,
      rgb(80, 80, 80) 92%,
      rgba(80, 80, 80, 0) 100%);
  background: -webkit-gradient (linear,
      left top,
      left bottom,
      color-stop(0%, rgba(30, 87, 153, 1)),
      color-stop(100%, rgba(125, 185, 232, 1)));
  background: -webkit-linear-gradient(top,
      rgba(80, 80, 80, 0) 0%,
      rgb(80, 80, 80) 8%,
      rgb(80, 80, 80) 92%,
      rgba(80, 80, 80, 0) 100%);
  background: -o-linear-gradient(top,
      rgba(80, 80, 80, 0) 0%,
      rgb(80, 80, 80) 8%,
      rgb(80, 80, 80) 92%,
      rgba(80, 80, 80, 0) 100%);
  background: -ms-linear-gradient(top,
      rgba(80, 80, 80, 0) 0%,
      rgb(80, 80, 80) 8%,
      rgb(80, 80, 80) 92%,
      rgba(80, 80, 80, 0) 100%);
  background: linear-gradient(to bottom,
      rgba(80, 80, 80, 0) 0%,
      rgb(80, 80, 80) 8%,
      rgb(80, 80, 80) 92%,
      rgba(80, 80, 80, 0) 100%);

  z-index: 5;
}

.timeline li {
  padding: 1em 0;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.direction-l {
  position: relative;
  width: 300px;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  width: 300px;
  float: right;
}

.flag-wrapper {
  position: relative;
  display: inline-block;

  text-align: center;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(248, 248, 248);
  padding: 0px 0px;
  border-radius: 5px;
  color: #852a9e;
  font-weight: 600;
  text-align: left;
  font-size: 22px;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: 30px;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #231278;
  z-index: 10;
}

.direction-r .flag:before {
  left: -14px;
}

.direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248, 248, 248);
  border-width: 8px;
  pointer-events: none;
}

.direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248, 248, 248);
  border-width: 8px;
  pointer-events: none;
}

.time-wrapper {
  display: inline;

  line-height: 1em;
  font-size: 0.66666em;
  color: rgb(250, 80, 80);
  vertical-align: middle;
}

.direction-l .time-wrapper {
  float: left;
}

.direction-r .time-wrapper {
  float: right;
}

.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248, 248, 248);
  color: #231278;
}

.desc {
  margin: 1em 0.75em 0 0;
  color: black;
  font-size: 16px;
  line-height: 1.5em;
}

.li-item-1 {
  line-height: 1;
  text-align: initial;
  padding: 10px;
}

.li-item-2 {
  list-style-image: linear-gradient(#2f86ff 0, #2f32ff 50%, #a914ff 50%);
}

.direction-r .desc {
  margin: 1em 0 0 0.75em;
}

/* ================ Timeline Media Queries ================ */

@media screen and (max-width: 660px) {
  .timeline {
    width: 100%;
    padding: 4em 0 1em 0;
  }

  .timeline li {
    padding: 2em 0;
  }

  .direction-l,
  .direction-r {
    float: none;
    width: 100%;

    text-align: center;
  }

  .flag-wrapper {
    text-align: center;
  }

  .flag {
    background: rgb(255, 255, 255);
    z-index: 15;
  }

  .direction-l .flag:before,
  .direction-r .flag:before {
    position: absolute;
    top: -30px;
    left: 50%;
    content: " ";
    display: block;
    width: 12px;
    height: 12px;
    margin-left: -9px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid rgb(255, 80, 80);
    z-index: 10;
  }

  .direction-l .flag:after,
  .direction-r .flag:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -8px;
    height: 0;
    width: 0;
    margin-left: -8px;
    border: solid transparent;
    border-bottom-color: rgb(255, 255, 255);
    border-width: 8px;
    pointer-events: none;
  }

  .time-wrapper {
    display: block;
    position: relative;
    margin: 4px 0 0 0;
    z-index: 14;
  }

  .direction-l .time-wrapper {
    float: none;
  }

  .direction-r .time-wrapper {
    float: none;
  }

  .desc {
    position: relative;
    margin: 1em 0 0 0;
    padding: 1em;
    background: rgb(245, 245, 245);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);

    z-index: 15;
  }

  .direction-l .desc,
  .direction-r .desc {
    position: relative;
    margin: 1em 1em 0 1em;
    padding: 1em;

    z-index: 15;
  }
}

@media screen and (min-width: 400px ?? max-width: 660px) {

  .direction-l .desc,
  .direction-r .desc {
    margin: 1em 4em 0 4em;
  }
}



/*Footer*/


.footer {
  padding-top: 50px;

}

.footer-col-first {
  width: 40%;
}

.footer-col-second {
  width: 40%;
}



.footer-inner {
  padding-bottom: 65px;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
}

.footer-text {
  margin-bottom: 30px;
  font-size: 15px;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social-header {
  font-size: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid;

}

.footer-social-header b {
  font-size: 15px;
}

.footer-social-content {
  padding-top: 15px;
  font-size: 15px;
}

.footer-social-content a {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.footer-tittle {
  text-transform: uppercase;
  font-size: 15px;
  margin: 30px 0;
}

/*Subscribe*/

.subscribe {
  width: 100%;
  max-width: 380px;
  display: flex;
}

.subscribe-input {
  height: 40px;
  padding: 12px;
  border: 1px solid 300;
  line-height: 1.1;
  font-size: 15px;
  font-weight: 300;
  font-family: 'Michroma-Regular';
  border-right: 0;
}

.subscribe-input:focus {
  outline: 0;
  border-color: #852a9e;
}

.subscribe-btn {
  height: 40px;
  background-color: #852a9e;
  border: 0;
  padding: 12px 30px;
  cursor: pointer;
  font-family: 'Michroma-Regular';
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  transition: background .2s linear;
}

.subscribe-btn:hover {
  background-color: #5b1a6d;
}

.subscribe-btn:focus {
  outline: 0;
}


/*Blogs*/

.blogs-item {
  display: flex;
  margin-bottom: 30px;
}

.blogs-img {
  width: 120px;
  height: 80px;
}

.blogs-content {
  padding: 8px;
  font-size: 15px;
}

.blogs-tittle {
  
  text-transform: uppercase;
  text-decoration: none;
}

.blogs-tittle:hover {
  text-decoration: underline;
}

.blogs-date {
  font-size: 12px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}