:root {
  --white: #ffffff;
  --dark-grey: #2b2b2b;
  --black: #000000;
  --brown: #ba5024;
}

@font-face {
    font-family: 'Oxygen';
    src: url('/assets/font/Oxygen-Bold.woff2') format('woff2'),
        url('/assets/font/Oxygen-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url('/assets/font/Oxygen-Light.woff2') format('woff2'),
        url('/assets/font/Oxygen-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url('/assets/font/Oxygen-Regular.woff2') format('woff2'),
        url('/assets/font/Oxygen-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
  outline: none !important;
  word-break: break-word;
  font-family: 'Oxygen', sans-serif;
  font-family: 'Shadows Into Light', cursive !important; 
  font-size: 20px;
}

@keyframes slideleft {
  from { background-position: 0%; }
  to { background-position: 90000%; }
}

body {
  background-image: url("/assets/images/background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
  background-attachment: fixed;
  min-height: 100vh;
  animation: slideleft 6000s infinite linear;
}
.logo {
  width: 100%;
  margin-bottom: -4%;
  z-index: 1;
}

#particles-js {
  position: fixed;
  height: 100%;
  top: 0;
  z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #e0e3dc;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 10px;
  text-shadow: 1px 2px 4px #000000;
}

.navbar-toggler {
  padding: 0 10px;
  outline: unset !important;
  box-shadow: unset !important;
}
.navbar-toggler svg {
  font-size: 30px;
  color: #e35f4d;
}
.navbar-nav {
  align-items: flex-end;
}

.space {
  /* height: 90vh; */
  margin-top: 75vh;
  color: white;
  margin-bottom: 100px;
}
.featured-image {
  width: 100%;
  margin-left: 80px;
}
.title {
  font-family: 'Shadows Into Light', cursive; 
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 2px 2px 4px #4595f3;
}
.content {
  font-size: 18px;
  text-align: justify;
}

.description {
  border-radius: 20px;
  padding: 30px 50px 30px 90px;
  color: white;
  border: 3px solid #400b4d;
  background: rgb(2,0,36);
  background: linear-gradient(38deg, rgb(224 68 80) 0%, rgb(230 127 69) 50%, rgb(226 162 55) 100%);
  margin: 20px 0;
}

.roadmap-desc {
  border-radius: 20px;
  padding: 20px;
  color: white;
  border: 3px solid #400b4d;
  background: rgb(2,0,36);
  background: linear-gradient(38deg, rgb(224 68 80) 0%, rgb(230 127 69) 50%, rgb(226 162 55) 100%);
  margin: 20px 0;
}
.roadmap-1 {
  background: linear-gradient(38deg, #ee16ff 0%, #688cec 50%, #1cd7e6 100%);
}
.roadmap-2 {
  background: linear-gradient(38deg, #3ad84f 0%, #b8e847 50%, #f6eb51 100%);
}
.roadmap-3 {
  background: linear-gradient(38deg, #2b228b 0%, #ff7f80 50%, #ffa15f 100%);
}
.roadmap-4 {
  background: linear-gradient(38deg, #d346d2 0%, #f6c8a7 50%, #fff19e 100%);
}
.roadmap-5 {
  background: linear-gradient(38deg, #ee6f84 0%, #fea35d 50%, #fdc2d6 100%);
}
.roadmap-6 {
  background: linear-gradient(38deg, #840d81 0%, #bd0984 50%, #d20b8c 100%);
}
.roadmap-desc p {
  text-shadow: -4px -1px 4px #39434e;
}


p:last-child {
  margin-bottom: 0;
}


.slick-slide img {
  display: block;
  width: 100%;
  padding: 0;
}

.chevron-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1490px;
  }
}

@media (max-width: 768px) {
  .featured-image {
    margin-left: 0;
  }
  .description {
    padding: 30px;
  }
  .content {
    font-size: 16px;
  }

}

@media (max-width: 620px) {
  .featured-image {
    margin-left: 0;
  }
  .description {
    margin: 0;
    margin-bottom: 50px;
  }
  .featured-image {
    width: auto;
    height: 418px;
  }
  body {
    animation: slideleft 16000s infinite linear;
  }
 
}


::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #285070; 
}
::-webkit-scrollbar-thumb:hover {
  background: #FEC600; 
}
::-moz-selection { 
  color: white;
  background: #285070;
}
::selection {
  color: white;
  background: #285070;
}