/*Page Layout */
body {
  min-height: 100vh;
  background-color: rgb(240, 250, 200);
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
#page-content-wrapper{
  width: 100%;
}
}
button{
  all: unset;
}
/*navbar*/
nav hr {
  width: 70%;
  margin-left: 10px;
  border: 1px solid #e1f2ae;
  margin-top: 5px;
  margin-bottom: 5px;
}
.navbar {
  width: 250px;
  height: 100vh;
  position: fixed;
  margin-left: -300px;
  background-color: #547f26;
  transition: 0.4s;
}
#navbar-dropdown{
  border-radius: 0px;
}
.nav-link {
  font-size: 1.25em;
}
.nav-link:active,
.nav-link:focus,
.nav-link:hover {
  background-color: #e1f2ae;
  color: black !important;
}
.dropdown-menu {
  background-color: #e1f2ae;
}
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #e1f2ae;
}
.active-nav {
  margin-left: 0;
}
.responsive {
  max-width: 100%;
  height: auto;
}
#menu-btn {
  background-color: #547f26;
  color: #fff;
  border-radius: 1rem;
  padding: .5rem;
  border: none;
}
#menu-btn a{
  text-decoration: none;
  color: white;
}
#menu-btn:hover{
background-color: #446620;
}
@font-face {
  font-family: fontya;
  src: url(data/fontya-schlank.otf) format("opentype");
}
.ment{
  font-family: fontya;
  letter-spacing: .2rem;
}
.active-cont {
  margin-left: 250px;
}
.my-container {
  transition: 0.4s;
}
/* Cards */
.card_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: space-around;
  justify-content: center;
}
.card {
  box-shadow: 0 5px 10px 0 rgba(83, 126, 38, 0.3);
  display: flex;
  padding: 5px;
  margin: 10px;
  border-radius: 20px;
  justify-content: space-between;
}
.card img{
  border-radius: 15px;
}
.card video{
  border-radius: 15px;
}
.card .u_bt {
  background-color: #547f26;
  border-radius: 15px;
  width: 250px;
  height: 50px;
  text-align: center;
 }
.card .u_bt a {
  text-decoration: none;
  color: white;
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
}
.card .u_bt:hover{
  background-color: #446620;
}
.card-body a {
  text-decoration: none;
  color: black;
  padding: 5px;
} 
.card-body a:hover {
  background-color: #e6e6e6;
  border-radius: 10px;
}
 /* cards for image modal */
 #gallery {
  justify-content: center;
  margin: 0;
  padding: 0;
 }
 #gallery .card {
  margin: 10px;
  padding: 5px;
 }
 #gallery .card-body {
  margin: 0;
  padding: 0;
  text-align: center;
 }
 /*XL Modal*/
 @media only screen and (min-width: 768px) {
  .modal-xl {
    width: 100%;
  }
}
/*Medium Modal */
@media only screen and (min-width: 768px) {
  .modal-md {
    width: 50%;
  }
}
/*audio*/
audio {
  border-radius: 5rem;
  box-shadow: 0 2px 5px 0 hsla(90, 50%, 30%, 0.3);
  }
/* Padding second half top*/
@media only screen and (min-width: 768px) {
  #padding_top {
  padding-top: 5rem;
  }
}