*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
    
  }
  body{
    padding-top: 80px;
    background: url('../assets/img/textured-dark-vignette-black-background.jpg');
    background-attachment: fixed;
  }
 /* .main{
  background-color: red;
 } */
 
 /* Text related css */

.text-justify{
    text-align: justify;
}
.txt-clr-title{
  color: #e0e0e0;
}
.txt-clr-desc{
  color: #c6a5d0;
}
/*  */
.main h1{
    color:#ead4a5;
}
.main h2{
    color:#ead4a5;
}
.uplogo{
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: red;
}

.color-subheading{
    color: rgb(159 201 224)
}

.linear-grad{
    color: linear-gradient(90deg, rgba(34,30,107,1) 0%, rgba(32,102,116,1) 100%);

}

/* lightbox */

.row > .column {
    padding: 0 8px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .column {
    float: left;
    width: 25%;
  }
  /* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    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;
  }
  
  img {
    margin-bottom: -4px;
  }
  
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  
  .fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 80px;
    right: 5px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.navbar2 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(20, 19, 19);
}

/* bootstrap 4 carausel histroy and milestone page */
.carousel {
  max-width: 100%;
  margin: 0 auto;
}
.carousel-cell {
  width: 100%;
  height: 300px; /* Adjust height as needed */
}
.carousel-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.carousel-item.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* scroll to top button */
@media screen and (min-width: 630px) {
  
  .scrollup{
   position: fixed;
   margin-right: 0px;
     top: 90vh;
     right: 14px;
     background-color: lightcyan;
     padding: 5px;
     border-radius: 10px;
     z-index: 10;
   }
 }
 @media screen and (max-width: 630px) {
   
   .scrollup{
     position: fixed;
     margin-right: 0px;
     top: 90vh;
     right: 11px;
     background-color: lightcyan;
     padding: 0px;
     border-radius: 10px;
     z-index: 11;
  }
}
.navbar-logog {
  width: 20%; /* Adjust as needed */
  max-width: 50px; /* Limits the max size of the logo */
  height: auto;
}

@media (max-width: 576px) { /* Adjust the breakpoint if necessary */
  .navbar-logog {
      width: 99%; /* Adjust the size for mobile devices */
      max-width: 30px;
  }
}
@media (min-width: 576px) { /* Adjust the breakpoint if necessary */
  .navbar-logog {
      /* width: 30px; 
      max-width: 30px; */
      display: none;
  }
}

@media (max-width: 576px) { /* Adjust the breakpoint if necessary */
  .slider-div {
      margin-top: 30px;
  }
}

