.slide-page{
  min-height: 100vh;
  width: 100%;
}

.floatting-navbar{
  position: absolute;
  top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  z-index: 1000;
}

.navbar-container-own{
  background-color: #004785;
}

.home-bg-image{
  background: url("/images/home-1.png") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #000;
  opacity: 0.6;
  height: 100vh;
  width: 100vw;
  /*z-index: 1;*/
}

.home-main-title{
  color: white;
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 0px;
}

.nav-link{
  color: white;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

.active{
  color: #ffcc00;
}

.mini-card{
  width: 30%;
  padding: 1rem;
  font-weight: bold;
  color: #004785;
  position: absolute;
  bottom: 40px;
  left: -40px;
}

.drop-down{
  position: absolute;
  /*top: 2rem;*/
  left: 0;
  display: none;
}

.text-blue{
  color: #004785 !important;
}

.navlink{
  font-size: 1.2rem;
}

.menu{
  height: 70%;
  /*width: 80px;
  background-color: wheat;*/
  padding: 1px;
  transition:all 0.3s ease;
}
.menuFixed{
  /*width: 80px;
  background-color: wheat;*/
  padding: 1px;
  transition:all 0.3s ease;
}
ul {
  display: inline;
  margin: 0;
  padding: 0;
}
ul li {
  display: inline-block;
  /*height: 100%;*/
  padding-top: 10%;

}

.menu:hover {
  background: #555;
  padding: 1px;
  border-radius: 8px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.menu:hover ul {
  display: block;
}
.menuFixed:hover {
  background: #555;
  padding: 1px;
  border-radius: 8px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.menuFixed:hover ul {
  display: block;
}
ul li ul {
  position: absolute;
  /*width: 200px;*/
  display: none;
}
ul li ul li { 
  /*background: #555; */
  display: block; 
}
ul li ul a {
  display:block !important;
  position: relative;
  text-decoration: none;
} 
ul li ul a:hover {
  /*background: #666;*/
  color: #000;
}

ul li ul a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
ul li ul a:hover::before {
  transform: scaleX(1);
}
