*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}
/* Scroll Bar */

::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-thumb {
    background: #13783a; 
    border-radius: 10px;
  }


/* navbar */
#navbar{
    position: sticky;
    z-index: 1;
    background-color: white;
}
.active{
    color: #13783a !important;
    font-weight: 600 !important;
}
.nav-item .nav-link{
    color: black;
    font-weight: 600;
}
.nav-item .nav-link:hover{
    color: #13783a;
}
.nav-item a{
    padding: 3px 25px !important;
}

/* About Top */
.about{
    position: relative;
    background: linear-gradient(#00382888,#00382899),url(../assets/About\ us/About.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
}
.about h3{
    font-size: 50px;
    color: white;
    font-weight: 600;
}
@media (max-width: 415px) {
    .about h3 {
      font-size: 33px;
    }
  }
.about .about-text{
    position: absolute;
    top: 35%;
    left: 35%;
    animation: fadeIn 2s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
  }
  
  ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: #13783a;
    font-weight: 600;
  }
  
  ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    font-weight: 600;
    content: "/\00a0";
  }
  
  ul.breadcrumb li a {
    color: black;
    font-weight: 900;
    text-decoration: none;
  }
  
  ul.breadcrumb li a:hover {
    color: #13783a;
  }

/* Management */
.management .row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.management .row img{
    width: auto;
    height: 150px;
}
.management .row img:hover{
    opacity: 80%;
    transform: scale(0.97);
}

.management p{
    font-size: 15px;
}   

.management a{
    display: block;
    color: black;
    text-decoration: none;
    position: relative;
    max-width: 500px;
    margin:  auto;
    padding: 10px;
    text-align: center;
  }
.management .box:hover h4{
    color: #13783a;
}



/* Footer */
footer{
    background-color: #0c5f2cb9;
}
footer {
    color: white;
}
footer a {
    color: black;
    text-decoration: none;
}
footer a:hover{
    color: #0f602e;
}