

/*  Menu Buttons  */
:root {
    --main-bg: #fff;
    --menu-bg: #007f00;
    --menu-font-color: #fff;
    --menu-font-hover: #fff;
    --menu-border: #fff;
    --menu-bg-selected: #80c342;
    --menu-bg-hover: #80c342;
	
}

.menu-sub {
	font-family: 'Roboto', serif;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    width: 70rem;
    max-width: 90%;
}

.btn-menu {
    font-family: 'Roboto', serif;
    position: relative;
    cursor: pointer;
    background: var(--menu-bg);
    border: none;
    padding: .75rem;
    color: var(--menu-font-color);
	font-size: 14px;
    border-top: 0.1rem solid var(--menu-border);
    border-bottom: 0.1rem solid var(--menu-border);
    transition: background 1s;
	border-radius: 45px; /* Adjust the value to your preference */
	
}

.btn-menu:hover {
    background: var(--menu-bg-hover);
    color: var(--menu-font-hover);
}

.btn-menu:focus {
    outline: none;
    box-shadow: none;
}

.selected {
    background: var(--menu-bg-selected);
    color: var(--menu-font-hover);
}

.selected::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 5.6rem;
    width: 0.5rem;
}

/*  End Menu Buttons  */


.h1-title {
	color: #252530;
    font-family: 'Roboto', serif;
    font-size: 36px;
    line-height: 1.13;
	font-weight: 300;
	margin: 0 0 20px;	
}



.h2-title2 {
    font-family: 'Roboto', serif;
    color: #252530;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -.1px;
    line-height: 1.13;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}


.h3-title3 {
	font-family: 'Roboto', serif;
	color: rgb(0, 127, 0);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.1px;
    line-height: 30.8px;

}


.p1 {
	color: #666;
	font-size: 16px;
    letter-spacing: -.2px;
    line-height: 1.75;
	font-family: Roboto, sans-serif;
	
}



/*  accordion  */
.accordion {
  background-color: #82c242;
  color: #00173c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
 border: 1px solid #82c242;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #00173c;
	border: 1px solid #82c242;
	color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/*  accordion  */


.clean-button-ad, a.clean-button-ad {
	font-family: 'Roboto', serif;
	margin: 3em 0;
	background-color: #007f00;
	color: #fff;
	text-decoration:none;
	text-transform: uppercase;
	border: 1px solid #007f00;
	
	font-weight: 700;
	font-size: 1.3rem;
}
.clean-button-ad:hover, .clean-button-ad:focus {
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
	background-image: -webkit-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.05) 0, rgba(0,0,0,.1));
	background-image: -ms-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -o-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-color:#80c342;
	text-decoration: none;
	border: 1px solid #80c342;
	color: #000;
}



@media screen and (min-width: 10px) and (max-width: 989px) {
	
	


	
	
}

@media only screen and (max-width: 768px) {
  
}


