@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Lora');

html{
	height: 100%;
	background: #a2c309;
}

body{
	margin: 0;
	margin-top: 150px;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	font-family: 'Nunito Sans', sans-serif;
	
	background: rgba(200,200,200,0.8);
	background: linear-gradient(to bottom, rgba(255,255,255,1.0), rgba(255,255,255,0.8));
}

/**** GENERAL START ****/

ul, ol {
    margin: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #ffffff;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ffffff;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ffffff;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

h1{
	color:#a2c309;
	font-size: 24px;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}

h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

h3{
	margin-bottom: 5px;
	font-size: 18px;
}

p{
	margin: 0;
	font-size: 18px;
}

img {
    display: block;
}

a{
}

.site{
	width: 960px;
	margin: 0 auto;
}

main{
	padding-top: 40px;
}

footer{

}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.clear_after:after {
    content: '';
    display: block;
    clear: both;
}

.hide{
	display: none;
}

.button{
	background: #a2c309;
	padding: 2px 6px;
	color: white !important;
	cursor: pointer;
}

   
@media only screen and (max-width: 500px){
	body{
		margin-top: 63px;
	}

	.site{
		width: 100%;
	}

	h1{
		font-size: 22px;
	}

	p{
		font-size: 16px;
	}
}

/**** GENERAL END ****/


/*** HEADER START ***/

header{
	top: 0;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 2;
	background: white;
	box-shadow: 0 2px 4px 0 rgba(200, 200, 200, 0.3);
}

header > div{
	margin: 0 auto;
	padding-top: 40px;
	width: 960px;
}

.logo{
	width: 350px;
	height: 68px;
}

.logo_sub{
	font-size: 13px;
	font-weight: 600;
	position: relative;
	top: -16px;
	text-align: right;
}

.phone_container{
	padding: 8px;
	padding-left: 18px;
	padding-right: 18px;

	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
}

@media only screen and (max-width: 500px){
	header > div{
		padding-top: 0;
		width: auto;
	}

	header > div > div{
		padding: 14px;
	}

	.logo{
		width: 180px;
		height: auto;
	}

	.logo_sub{
		display: none;
	}

	.phone_container{
		display: none;
	}

	.logo_sub{
		top: 10px;
		font-size: 12px;
	}
}

/*** HEADER END ***/

/*** MENU START ***/

.menu_container h1{
	display: none;
}

.menu{
	list-style-type: none;
    padding: 0;
    width: 100%;
    display: flex;
}

.menu li{
	display: inline-block;
	text-transform: uppercase;
	flex-grow: 1;
	position: relative;

	text-align: center;
	font-weight: 400;
	margin: 0 ;
}


.menu a{
	text-decoration: none;
	color:#535355;
}

.menu li:hover > p > a{
	color: white;
}

.menu > li > p{
	padding: 8px;
}

.menu ul{
	display: none;
}

.menu > li:hover{
	cursor: pointer;
}

.menu > li:hover > p{
	background: #a2c309;
	color: white;
}

.menu > li:hover ul{
	display: block;
	position: absolute;
	background: rgba(255,255,255,0.9);
	box-shadow: 0 0 4px 0px rgba(100, 100, 100, 0.2);
}

.menu > li > ul > li{
	font-size: 14px;
	display: block;
	float: right;
	width: 100%;
}

.menu > li > ul > li >p{
	text-align: left;
	padding: 8px;
	font-size: 14px
}


.menu > li > ul > li > p:hover,
.menu > li > ul > li > a:hover{
	border-left: 4px #a2c309 solid;
}

.button_mobile{
	display: none;
}

.breadcrumb{
	display: inline-block;
	text-transform: uppercase;
	list-style-type: none;
	margin-top: 20px;
}

.breadcrumb li{
	display: inline-block;
	padding: 4px 10px 4px 10px;
	font-weight: bold;
	background: #535355;
	margin-right: 10px;
	margin-bottom: 10px;
}

.breadcrumb li:first-child{
}

.breadcrumb li:last-child{
	background: #a2c309;
	padding: 4px 10px 4px 10px;
}

.breadcrumb a{
	text-decoration: none;
	color: white;
	font-size: 12px;
}

@media only screen and (max-width: 500px){
	.menu_container h1{
		display: none;
		color: white;
		font-size: 36px;
		padding: 14px;
		padding-bottom: 0;
		margin-bottom: 10px;
	}

	.button_mobile{
		display: block;
		color: #a2c309;
		text-align: right;
		padding: 5px;
		border: 1px solid #a2c309;
		border-radius: 4px;
		cursor: pointer;
	}

	.menu_container{
		padding: 0;
		position: fixed;
		left: 0;
		top: 63px;
		width: 100%;
		height: 100%;
		background: #a2c309;
		display: none;
		padding: 20px;
	}

	.menu{
		display: none;
		z-index: 3;
		float: none;
		margin-top: 0;
	}

	.menu a{
		color: white;
	}

	.menu li{
		display: inline;
		text-align: left;
	}

	.menu li p{
		padding: 10px 15px;
		border-bottom: 1px solid rgba(255,255,255,0.5);
		color: white;
	}

	.menu ul{
		display: block;
		padding-left: 20px;
	}

	.menu > li > ul > li{
		float: none;
	}

	.menu > li > ul > li > p:hover{
		border-left: none;
	}

	.menu > li:hover ul{
		display: block;
		position: static;
		background: none;
		box-shadow: none;
	}
}

/*** MENU END ***/

/**** COLOR START ****/

.green_b{
	background: #a2c309;
}

.green_f{
	color: #a2c309;
}

.white_f{
	color: white;
}

.gray_f{
	color: #535355;
}

/**** COLOR END ****/


/**** CONTENT START ****/

main{
	margin: 20px 0 40px 0;
}

.content{
	margin-top: 40px;
	padding: 20px;
	padding-top: 0;
}

.content p{
	margin-bottom: 24px;
	text-align: justify;
	font-family: Lora;
	line-height: 200%;
}

.content p.less_bottom{
	margin-bottom: 5px;
}

.content p.cite{
	font-style: italic;
	font-weight: bold;
	margin-left: 40px;
	margin-right: 40px;
	color: #a2c309;
	text-align: left;
}

.content p.small{
	font-size: 16px;
	font-family: 'Nunito Sans', sans-serif;
	line-height: 180%;
}

.content ul, ol{
	margin-bottom: 24px;
	margin-left: 20px;
	line-height: 180%;
}

.content ul ul{
	margin-bottom: 5px;
}

.content li{
	margin-bottom: 5px;
}

.content a,
.content p a{
	color: #535355;
}

.content_text > a,
.content_text > p > a{
	font-size: 18px;
}

.content_icon_or_sub_menu{
	float: left;
	width: 250px;
	margin-top: -350px;
}

.content_icon_or_sub_menu img{
	opacity: 0.2;
	width: 200px;
}

.content_text{
	float: right;
	width: 650px;
}

.image{
	margin-left: 270px;
    box-shadow: 0 4px 8px 0 rgba(200, 200, 200, 0.3), 0 2px 4px 0 rgba(200, 200, 200, 0.3);
	border: 10px rgba(255,255,255,1) solid;
	height: 300px;
	position: relative;
}

.image img{
	width: 100%;
}

.image p{
	position: absolute;

	left: 0px;
	color: white;
	background: #a2c309;
	padding: 2px;
	padding-left: 20px;
	padding-right: 10px;
	bottom: 40px;

	font-size: 20px;
}

@media only screen and (max-width: 500px){
	main{
		margin: 0;
		padding-top: 0px;
	}

	.image{
		border: 0;
		box-shadow: none;
		height: auto;
		margin-left: 0;
	}

	.content{
		padding: 30px;
		margin-top: 0;
		float: none;
	}

	.content_text{
		width: auto;
	}

	.content .content_icon_or_sub_menu{
		display: none;
	}

	.content p{
		text-align: left;
	}

	.content p.cite{
		margin-left: 20px;
		margin-right: 20px;
	}
}

/**** CONTENT END ****/


/**** FOOTER START ****/

footer{
	margin-top: 40px;
	height: 200px;
	/*background: rgba(200, 200, 200,0.8);*/
	background: rgba(255,255,255,0.5);
	border-top: 0px rgba(180,180,180,1.0) solid;
}

footer a{
	color: #535355;
}

footer > div{
	margin: 0 auto;
	width: 960px;
}

.footer_container{
	min-width: 200px;
	margin-top: 40px;
	float: left;
	border-left: 1px rgba(180,180,180,1.0) solid;
	padding-left: 10px;
}

.footer_container:nth-child(2){
	margin-right: 50px;
}

.footer_container p,.footer_container a{
	font-size: 12px;
}

@media only screen and (max-width: 500px){
	footer{
		height: auto;
		padding: 30px;
		margin-top: 0
	}

	footer > div{
		width: 100%;
	}

	.footer_container{
		float: none;
		border-left: 0;
		margin: 0;
		margin-bottom: 10px;
		padding: 0;
		padding-bottom: 10px;
		width: 100%;
		border-bottom: 1px rgba(180,180,180,.4) solid;
	}

	.footer_container:last-child{
		border-bottom: 0;
		padding-bottom: 0;
	}

}

/**** FOOTER END ****/


/**** FLEX SLIDER ****/

.flex-control-nav,
.flex-direction-nav{
	display: none;
}

.flexslider{
	margin: 0;
	border:0;
}

