@import url("https://fonts.googleapis.com/css2?family=Outfit");

* {
  font-family: "Outfit";
}

body {
  margin: 0px;
  padding-top: 0px;
  background-color: #000000;
  font-family: "Outfit", sans-serif;
  overflow: overlay;
}

/*----------------scroll bar--------------------*/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #00000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #54595d;
}

/*-------------------------------------------*/

.navBar {
  position: fixed;
  margin: 0px;
  z-index: 1;

  height: 60px;
  width: 100%;
  top: 0;
  background-color: white;

  filter: drop-shadow(0px 3px 10px #bcbcc549);
}

.logo {
  width: 140px;
  height: 100%;
}

.navbarItem {
  text-decoration: none;
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.timeline {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
}

.timeline .timeline-item {
  position: relative;
}

.timeline .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .timeline-item:after {
  background-color: hsl(0, 0%, 90%);
  left: -38px;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
}

.navbarItem:hover {
  opacity: 0.7;
}

.button {
  padding-left: 15px;
  padding-right: 15px;
  border: 0;
  color: white;
  background-color: #516bfc;
  border-radius: 7px;
}

.background {
  position: fixed;
  left: 0;
  right: 0;
  z-index: -9999;
  display: block;
  background-image: url("graphicElem1.svg");
  --blurVal: 150px;

  filter: blur(var(--blurVal));
  -webkit-filter: blur(var(--blurVal));
  -moz-filter: blur(var(--blurVal));
  -o-filter: blur(var(--blurVal));
  -ms-filter: blur(var(--blurVal));

  /*filter: none;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

.fa:hover {
  opacity: 0.7;
}

@media (min-aspect-ratio: 106/59) {
  .backgroundAnim {
    width: 100%;
  }
}

@media (max-aspect-ratio: 106/59) {
  .backgroundAnim {
    height: 100%;
  }
}

@media (min-width: 576px) {
  /* CUSTOM WIDTHS */
  .w-sm-10 {
    width: 10% !important;
  }

  .w-sm-15 {
    width: 15% !important;
  }

  .w-sm-20 {
    width: 20% !important;
  }
}

/* MD breakpoint*/
@media (min-width: 768px) {
  /* CUSTOM WIDTHS */
  .w-md-10 {
    width: 10% !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }
}

/* LG breakpoint */
@media (min-width: 992px) {
  /* CUSTOM WIDTHS */
  .w-lg-10 {
    width: 10% !important;
  }

  .w-lg-15 {
    width: 15% !important;
  }

  .w-lg-20 {
    width: 20% !important;
  }
}
