/* The sidebar menu */

.sidenav {
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
}

/* The navigation menu links */
.sidenav a {
  padding: 20px 0px 20px 0px;
  text-decoration: none;
  font-size: 25px;
  color: #f8f8f8;
  display: block;
}

.sidenav a.active {
  background-color: #ff530e; /* Aerospace Orange */
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  background-color: #023550; /* Prussian Blue */
}

.navbar-dark {
  /* background-color: #012436; */
  background-color: rgba(1, 36, 54, 0.8)
}

.nav-link {
  text-align: center;
  color: white; /* White icons */
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #ff530e;
  border-bottom: 2px solid #ff530e;
}

.material-symbols-outlined {
  font-size: 40px; /* Increased icon size */
}

/* Style page content */
.main {
  color: #f8f8f8;
}

body {
  background-color: #012436; /* Prussian Blue */
}

ol.breadcrumb {
  list-style: none;
  background-color: #023550;
  border-radius: 0px;
  border-bottom: 1px solid #fff;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  width: 100%;
  margin: auto;
}

.card{
  background-color: #012436;
  /* background-color: transparent; */
  color: #fff;
  /* border: none; */
}

.card-title {
  font-size: 1.5em;
}

.card-img-top {
  padding: 10px 10px 0px 10px;
}

.Date_Card {
  color: #ff530e;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2 {
  position: relative;
}
  
/* The actual timeline (the vertical ruler) */
.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #ff530e;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #ff530e;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid #012436;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #012436;
}

/* Add arrows to the right container (pointing left) */
.right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid #012436;
  border-width: 10px 10px 10px 0;
  border-color: transparent #012436 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-2::after {
  left: -14px;
}

* {
  box-sizing: border-box;
}

.btn-close {
  background-color: #fff;
}

/* .row { 
  display: -ms-flexbox; */ /* IE10 */
/*  display: flex;
  -ms-flex-wrap: wrap; */ /* IE10 */
/*  flex-wrap: wrap;
  padding: 0 4px;
} */

.modal {
  background-color: rgba(1, 1, 1, 0.8);
  color: #fff;
}

.modal-content {
  background-color: transparent;
  box-shadow: none;
}

/* .carousel-item {
  transition-property: opacity;
} */

.carousel .carousel-indicators button {
  width: 10px;
  height: 2px;
  margin: 2px;
}


/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 767px) {

  div.big-screen {
    display: none;
  }
  .sidenav {
    width: 0px;
  }
  .main {
    margin-left: 0px; /* Same as the width of the sidebar */
  }

  .modal-fullscreen{
    width: 100%;
  }

  /* Place the timelime to the left */
  .main-timeline-2::after {
    left: 0px;
  }

  /* Full-width containers */
  .timeline-2 {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline-2::before {
    left: 16px;
    border: medium solid #012436;
    border-width: 10px 10px 10px 0;
    border-color: transparent #012436 transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left-2::after,
  .right-2::after {
    left: -14px;
  }

  .left-2::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right-2 {
    left: 0%;
  }
}

  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) and (max-width: 991px) {
    div.big-screen {
      display: none;
    }
    .sidenav {
      width: 0px;
    }
    .main {
      margin-left: 0px;
    }
    .Heading_Text h2{
      font-size: 35px;
    }
    .modal-fullscreen{
      width: 100%;
    }
  

  }

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1999px)
{
  div.small-screen {
    display: none;
  }
  .sidenav {
    width: 80px;
  }
  .main {
    margin-left: 80px;
  }
  .Heading_Text h2{
    font-size: 35px;
  }
  .modal-fullscreen{
    width: 55%;
  }

}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) 
{
  div.small-screen {
    display: none;
  } 
  .sidenav {
    width: 80px;
  }
  .main {
    margin-left: 80px;
  }
  .Heading_Text h2{
    font-size: 35px;
  }
  .modal-fullscreen{
    width: 55%;
  }
}