@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow Condensed", sans-serif;
  color: white;
}

.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.text-faded {
  opacity: 0.6;
}
a {
  text-decoration: none;
}
body {
  background-color: #000002;
  position: relative;
}
.sec-1 {
  padding-top: 150px;
}
.navbar {
  padding-top: 20px;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.navbar-brand img {
  width: 50px;
}
.nav-link {
  font-size: 20px;
}

.background {
  min-height: 100vh;
  /* background-image: url(../images/bg-1.png); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  position: relative;
}
.background::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0px;
}
.bg-1 {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}
.blur {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: -20px;
  background-color: rgb(0, 0, 0);
  height: 100px;
  filter: blur(20px);
}
.arrows {
  position: absolute;
  width: 100%;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: -10px;
}
.arrows img {
  width: 18px;
}
@media (max-width: 786px) {
  .blur {
    height: 20px;
  }
}
.main-heading {
  color: white;
  font-weight: 100;
  font-size: 40px;
}
.sub-heading {
  font-size: 150px;
  letter-spacing: 16px;
  line-height: 156px;
  text-align: center;
}
.side-heading {
  font-size: 20px;
}
.B1 {
 width: 150px;
    height: 45px;
    border-radius: 40px;
    font-size: 19px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
  color: white;
}
.line {
  display: flex;
  width: 1px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.212);
}
.line-2 {
  display: flex;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.212);
}
@media (max-width: 786px) {
  .sub-heading {
    font-size: 70px;
  }
}
.bot-heading {
  font-weight: 700;
  font-size: 60px;
}
.right-heading {
  font-weight: 600;
  font-size: 70px;
  color: white;
}
.paragraph {
  font-size: 19px;
  color: white;
}
.main-image img {
  width: 160px;
}
.image-heading {
  font-size: 70px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  color: white;
}
.image-paragraph {
  font-size: 20px;
  font-weight: 100;
}
.center-heading {
  color: white;
  display: flex;
  justify-content: center;
  font-size: 60px;
  font-weight: 600;
  display: flex;
}

.center-paragraph {
  color: white;
}
.road-text {
  transform: translateY(-200px);
}

@media (max-width: 991px) {
  .road-text {
    transform: translateY(0px);
  }
}
.road-box {
  background-color: rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  margin-bottom: 10px;
}
.card-1 {
  background-color: rgba(255, 255, 255, 0.267);
  width: 100%;
  border-radius: 15px;
  position: relative;
  height: 200px;
}
.card-1 img {
  position: absolute;
  top: -80px;
  width: 180px;
}
.loader2 {
  width: 100%;
  height: 100vh;
  background-color: #000b22;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* animation: goanim 5s  forwards ease-in ; */
}

/* @keyframes goanim {
  from {
    transform: scale(1) !important;
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
} */

.loader2 img {
  width: 70px;
  animation: inout 1s infinite;
}
@keyframes inout {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1);
  }
}

/* carousel css */

/* Hide the images by default */
.mySlides {
  display: flex;
  justify-content: center;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  position: relative;
}
.column::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 255, 0);
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
.pop{
  transition: .5s;
  cursor: pointer;
}
.pop:hover{
  transform: scale(1.2);
}