*{
    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;
  }

/* Contact */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input:focus{
  border-color: #38af66 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #24bf5f !important;
  outline: 0 none !important;
}

textarea:focus{
  border-color: #38af66 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #24bf5f !important;
  outline: 0 none !important;
}
.btn{
    background-color: #13783a;
    color: white;
}
.btn:hover{
    background-color: #1dae55d7 !important;
    color: white !important;
}

ul li i{
  color: #13783a;
}







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