
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #434857;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #189fef,#0f557f);
  border-radius: 5px;
}


.fs-15 {
  font-size: 15px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}

.justify {
  text-align: justify;
}

.c-blue {
  color: #189fef !important;
}
.cg-blue {
  background-color: #189fef !important;
}

.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: start;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  .text-start {
    text-align: center !important;
  }
}
