*{
  box-sizing: border-box;
  margin:0;
  padding: 0;
}
html{
  overflow-x: hidden;
}
body{
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.navbar {
  font-family: 'Bebas Neue', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);/* This is to ensure that the navbar stays on top of other elements */
}

.nav .nav-item .nav-link:hover {
  transition: ease-in-out 0.4s;
  color:black!important;
}

/*To change the Bootstrap navbar toggler into an 'X' when opened*/
.navbar-toggler {
  border: none;
  background: transparent !important;
}

.toggler-bar {
  width: 28px;
  height: 2px;
  background-color: black;
  display: block;
  transition: all 0.3s;
  margin: 4px 0;
}

/* Rotate first bar */
.navbar-toggler[aria-expanded="true"] .top-bar {
  transform: translateY(8px) rotate(45deg);
}

/* Fade out the second bar */
.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

/* Rotate third bar */
.navbar-toggler[aria-expanded="true"] .bottom-bar {
  transform: translateY(-5px) rotate(-45deg);
}
.dropdown-item:hover{
  color: white;
  background-color: black;
}
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background :linear-gradient(black,lightgray);
  opacity: 80%;
  font-family: 'Bebas Neue', sans-serif;
}
/*TimeLine*/
.timelinee{
  height: 1px ;
   width: 100%; 
   background-color:lightgray;
}
.box{
  position: relative;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid lightgray;
overflow: hidden;
-webkit-transition: background 0.5s linear;
-moz-transition: background 0.5s linear;
-ms-transition: background 0.5s linear;
-o-transition: background 0.5s linear;
transition: background 0.5s linear;
}
.box-overlay{
  display: flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: black;
  /* background: -moz-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
  background: -webkit-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
  background: linear-gradient(to right, #d92cf9 0%, #b636ff 100%); */
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d92cf9', endColorstr='#b636ff', GradientType=1); */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.box:hover .box-overlay{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  top: 0;
}
.image-container{
  position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
-webkit-transition: background 0.5s linear;
-moz-transition: background 0.5s linear;
-ms-transition: background 0.5s linear;
-o-transition: background 0.5s linear;
transition: background 0.5s linear;
}
.image-overlay{
  display: flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: slategray;
  opacity: 60%;
  color:whitesmoke;
  font-size: 50px;
  /* background: -moz-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
  background: -webkit-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
  background: linear-gradient(to right, #d92cf9 0%, #b636ff 100%); */
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d92cf9', endColorstr='#b636ff', GradientType=1); */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.image-container:hover .image-overlay{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  top: 0;
}
.timeline{
  margin: 20px 0px;
  position: absolute;
  height: 90%;
  width: 1px;
  left: 50%;
  top: 1%;
  background-color: gray;
}
#circle{
  position: absolute;
  left: 33.4%;
  margin: 20px 0px;
}
/*Footer*/
.gt-text {
  color:gray;
}

.ft-content span {
  background-color: black !important;
  height: 40px;
  width: 40px;
  font-size: 18px;
  cursor: default;
}

.qk-text {
  font-size: 20px;
}

.site-map li {
  transition: transform 0.3s ease-in-out;
}

.site-map li span,
.site-map li a {
  transition: 0.3s;
}

.site-map li:hover span,
.site-map li:hover a {
  color: black;
}

.site-map li:hover {
  transform: scale(1.01, 1.2) translate(1%, 6%);
}

@media screen and (max-width: 768px) {
   .timeline {
          left: 0;
          transform: none; /* Reset the left positioning for smaller screens */
      }
      #circle {
          left: -16.6%;
          transform: none; /* Reset the left positioning for smaller screens */
      }
      
  
}
@media screen and (max-width: 576px) {
  .timeline {
      display: none;
     }
     #circle{
        display: none;
     }
     
 
}
