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

/* carousel */
.carousel-caption{
animation: fadeIn 2s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
.carousel-caption .btn{
    background-color: #13783a;
    color: white;
}
.carousel-caption .btn:hover{
    color: white;
}
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.327);
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    font-size: 12px;
}


/* Parts */
.parts .row .col-md-3 i {
    color: #13783a;
    font-size: 35px;
    display: flex;
    justify-content: center;
}
.parts .row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.parts .row .col-md-3 h3{
    font-size: 20px;
}
.parts .row .col-md-3 p{
    font-size: 14px;
}
.parts .row .col-md-3{
    padding: 10px;
}

/* About */
.about{
    background-color: white;
    padding: 30px;
}
.about img{
    border-radius: 10px;
}
.about h3 {
    color: #13783a;
    font-size: 35px;
    position: relative;
}

.about p{
    font-size: 16px;
}   

.about h3:after {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -4px; 
    margin: 0 auto;
    left: 0;
    right: 0%;
    width: 15%;
    background: green;
    transition:1s;
 }
  
.about .row:hover h3:after {
       width: 80%;
}
.about a{
    background-color: #13783a;
    color: white;
    display: flex;
    justify-content: center;
    width: 30%;
}
.about a:hover{
    background-color: #0f602e !important;
    color: white !important;
}

/* Gallery */
.gallery .row{
    width: 100%;
    display: flex;
    justify-content: space-evenly
}
.gallery .row img:hover{
    opacity: 80%;
    transform: scale(0.97);
}
.gallery h3{
    color: #13783a;
    font-size: 35px;
    position: relative;
}

.gallery  h3:after {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -4px; 
    margin: 0 auto;
    left: 0;
    right: 0%;
    width: 5%;
    background: green;
    transition:1s;
 }

 .gallery:hover h3:after {
       width: 15%;
}

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

.gallery a{
    display: block;
    color: black;
    text-decoration: none;
    position: relative;
    max-width: 500px;
    margin:  auto;
    padding: 10px;
    text-align: center;
  }
.hr-lines:hover{
    color: #13783a;
}
.gallery a:hover::before{
    background: #13783a;
}
.gallery a:hover::after{
    background: #13783a;
}  
  .gallery a:before{
    content:" ";
    height: 2px;
    width: 130px;
    background: black;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
  }
  
  .gallery a:after{
    content:" ";
    height: 2px;
    width: 130px;
    background: black;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
  }
/* Management */
.management{
    background-color: white;

}
.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 h3{
    color: #13783a;
    font-size: 35px;
    position: relative;
}

.management  h3:after {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -4px; 
    margin: 0 auto;
    left: 0;
    right: 0%;
    width: 5%;
    background: green;
    transition:1s;
 }

.management:hover h3:after {
       width: 25%;
}

.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;
  }
.hr-lines:hover{
    color: #13783a;
}
.management a:hover::before{
    background: #13783a;
}
.management a:hover::after{
    background: #13783a;
}  
  .management a:before{
    content:" ";
    height: 2px;
    width: 130px;
    background: black;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
  }
  
.management a:after{
    content:" ";
    height: 2px;
    width: 130px;
    background: black;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
  }

.management .box:hover h4{
    color: #13783a !important;
}

/* Contact */
.contact{
    padding: 30px;
}
.contact img{
    border-radius: 10px;
}
.contact h3 {
    color: #13783a;
    font-size: 35px;
    position: relative;
}

.contact p{
    font-size: 16px;
}   

  .contact h3:after {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -4px; 
    margin: 0 auto;
    left: 0;
    right: 0%;
    width: 15%;
    background: green;
    transition:1s;
 }
  
 .contact .row:hover h3:after {
       width: 80%;
}
.contact a{
    background-color: #13783a;
    color: white;
    display: flex;
    justify-content: center;
    width: 30%;
}
.contact a:hover{
    background-color: #0f602e !important;
    color: white !important;
}
/* Footer */
footer{
    background-color: #0c5f2cb9;
}
footer {
    color: white;
}
footer a {
    color: black;
    text-decoration: none;
}
footer a:hover{
    color: #0f602e;
}

@media screen and (max-width: 410px) {
    .gallery a::before {
      display: none;
    }
    .gallery a::after{
        display: none;
      }
    .management a::before {
        display: none;
      }
    .management a::after{
          display: none;
        }
  }
  