.container {
    max-width: 1240px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

/*    
    font-family: 'Raleway', sans-serif;
*/


hr {
    max-width: 1240px;
    border: none;
    height: 1px;
    display: grid;
    background: #0d3c00;
    opacity: .2;
    margin-left: auto;
    margin-right: auto;
}


body {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}


h5::after {
    width: 50px;
    height: 2px;
    background: #7EB617;
    content: "";
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}
.menu-atual {
    color: #7EB617;
}

::selection {
    color: rgb(255, 255, 255);
    background-color: #0d3c00;
    opacity: .5;
}

.btn {
    font-family: 'Poppins', sans-serif;
    background-color: #7EB617;
    color: #fff;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 8px;
    font-size:  1.25rem;
    cursor: pointer;
    font-weight: 600;
}


.btn:hover {
    background-color: #90C52E;
}

strong {
    color: #0d3c00;
}

.div {
    background: rgba(0, 0, 0, .25);
    width: 100%;
    display: block;
    height: 2px;
}

.whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
  }

  .whats-fixed img{
    width: 70px;
  }
  
  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }