 body{
 	font-family: 'IBM Plex Serif', serif;
 	font-size: 17px;
 	max-width: 100%;
    overflow-x: hidden;
    color: #333333;
 }
 p {
    font-family: 'IBM Plex Serif', serif;
    font-size: 17px;
    text-align: justify;
    color: #333333;
 }
 .container{
 	margin-top: 10px;
 	margin-bottom: 10px;
 }
 .row{
 	margin-top: 10px;
 	margin-bottom: 10px;
 }
.dropdown {
    font-family: 'IBM Plex Serif', sans-serif;
    position: relative;
    font-size: 18px;
    display: inline-block;
    }
    .dropdown-toggle{
        background-color: rgba(0,0,0,0);
        color: white;
        border: none;
        cursor: pointer;
    }
    .dropdown > ul > li{
        margin: 5%;
    }
    .clearbg{
        background: rgba(0, 0, 0, 0.3);
    }
.top-menu {
    float: right;
    margin-top: 5px;
}
.social-icon {
    margin: 8px 35px;
    width: auto;
    height: auto;
    float: right;
}
.social-icon > a i.icon {
    color: white;
    margin-right: 5px;
}
/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
/* Dropdown button on hover & focus */
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4FB747;
    font-weight: 700;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    font-size: 14px;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #3C8A35}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
.bold{
    font-weight: 700;
}

#share-facebook {
    width: 50px;
    height: 50px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; /* Rounded corners */
    text-align: center;
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    left: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #3B5998; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    
}
.fa-1-5x{
    font-size: 1.5em;
}
.video {
    width: 100%;
    height: auto;
}
.m-t-sm {
    margin-top: 10px;
}
.m-t-md {
    margin-top: 20px;
}
.m-t-lg {
    margin-top: 30px;
}
.m-b-sm {
    margin-top: 10px;
}
.m-b-md {
    margin-top: 20px;
}
.m-b-lg {
    margin-top: 30px;
}
/*# sourceMappingURL=custom.css.map */



*, *::before, *::after {
    box-sizing: border-box;
  }
  
  :root {
    font-size: 16px;
  }

  #menu {
    float: right;
    margin-top: -8px
  }

  #menu ul {
      background: transparent
  }
  #menu ul:hover {
    background: transparent
}
  #menu ul,
  #menu ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  #menu ul li {
    display: inline-block;
    position: relative;
    perspective: 1000px;
    perspective-origin: top left;
  }
  
  #menu ul li:hover {
    background-color: #3C8A35;
  }
  
  #menu ul li a {

    padding: 12px 24px;
    text-decoration: none;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px
  }
  #menu ul li a span {
      color: #4FB747
  }
  #menu ul li a span:hover {
    color: #FFFFFF
}
  
  #menu ul li a .menu {
    padding: 5px 5px;
  }

  #menu ul li a .menu:hover {
    background-color: transparent;
  }

  #menu ul li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #4FB747;
  }
  
  #menu ul li > ul li {
    display: block;
    perspective: 1000px;
    perspective-origin: top left;
  }
  
  #menu ul li > ul li a {
    width: 100%;
    white-space: nowrap;
  }
  
  #menu ul li > ul li > ul {
    display: none;
    top: 0;
    left: 100%;
  }
  
  #menu ul li:hover > ul,
  #menu ul li > ul li:hover > ul {
    display: block;
    transform-origin: top center;
    animation-name: ddmm_animate;
    animation-duration: 400ms;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    background-color: #4FB747
  }
  
  @keyframes ddmm_animate {
    from {
      opacity: 0;
      transform: translateY(15px) rotateY(90deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotateY(0);
    }
  }
  
  @media (max-width: 720px) {
  
    #menu ul li {
      display: block;
      background-color: 4FB747
    }
  
    #menu ul li a {
      display: block;
    }
  
    #menu ul li > ul {
      position: relative;
    }
  
    #menu ul li > ul,
    #menu ul li > ul li > ul {
      top: 0;
      left: 0;
    }
  
    #menu ul li > ul li a:hover {
      text-decoration: underline;
    }
  
    #menu ul li:hover > ul,
    #menu ul li > ul li:hover > ul {
      margin-left: 30px;
      background-color: #3C8A35;
      animation-name: ddmm_animate__mobile;
    }
  
  }
  
  @keyframes ddmm_animate__mobile {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  