body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	padding: 0;
	background-color: #f4f4f4;
	margin: 0;
}

/*Global*/
.container{
	width: 90%;
	margin: auto;
	overflow: hidden;
}

.TextWrap{
	float: left;
	margin: 10px;
}

ul{
	margin: 0;
	padding: 0;
}

/*navigation bar*/
.navbar{
	float:right;
	overflow: hidden;
	padding-top: 26px;
	background-color: inherit;/*#2F4F4F;*/
}

.dropdown{
	float: left;
	overflow: hidden;
}

.dropbtn{
	font-size: 1.1em;
	border: none;
	outline: none;
	color: white;
	padding: 0 10px 5px 10px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

@media only screen and (max-width: 657px) {
  .dropbtn {
    font-size: 80%;
		padding: 0px;
  }
	.navbar{
		float: left;
	}
}

@media only screen and (max-width: 543px) {
  .dropbtn {
    font-size: 70%;
  }
}

@media only screen and (max-width: 508px) {
  .dropbtn {
    font-size: 68%;
  }
}

@media only screen and (max-width: 353px) {
  .dropbtn {
    font-size: 50%;
  }
}

@media only screen and (max-width: 295px) {
  .dropbtn {
    font-size: 40%;
  }
}

.dropbtn:hover{
	background-color: none;
	color: #ff9100;
	font-weight: bold;
	cursor: pointer;
}

.navbar a:hover, .dropdown:hover .dropbtn{
	background-color: none;
	color: #ff9100;/*#ecbf58;*/
	font-weight: bold;
}

.dropdown-content{
	display: none;
	position: absolute;
	background-color: rgba(192, 192, 192, 0.7);
	min-width: 160px;
	border-radius: 5px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	margin-top: 30px;
	margin-left: 13px;
}

.dropdown-content a {
	float: none;
	color: white;
	font-size: 12px;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover{
	background-color: rgba(250,250,250,0.5);
	border-radius: 5px;
}

.dropdown:hover .dropdown-content{
	display: block;
}

/*cookie banner*/
.cookie-container{
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: rgba(50, 50, 50, 0.8);
	color: #ffffff;
	padding: 0 32px;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.5);

	transition: 400ms;
}

.cookie-container p a{
	color: 	#ffffff;
}

.cookie-container.active{
	bottom: 0;
}

.cookie-container .input-row{
	display: flex;
	justify-content: center;

}

.cookie-container button{
	background: #ffffff;
	width: 100px;
	border: none;
	outline: none;
	color: #ff9100;
	height: 35px;
	border-radius: 6px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	cursor: pointer;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3)
}

/*Header*/
header{
	background:	#1d1d1d;
	color: #ffffff;
	min-height: 60px;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.9);
}

#head{
	background:	#1d1d1d;
	color: #ffffff;
	padding-top: 15px;
	min-height: 60px;
	max-height: 60px;
	border-bottom:	#ff9100 3px solid;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.9);
}


header li{
	float:left;
	display:inline;
	padding: 0 10px 5px 10px;
	background-color: inherit;
}

header li a{
	text-decoration: none;
	color: #ffffff;
}

header #Project{
	float:none;
	display: inline;
	text-transform: uppercase;
	font-size: 8.5px;
}

@media only screen and (max-width: 1062px) {
  header #Project {
    display: none;
  }
}

@media only screen and (max-width: 657px) {
  header #head .current{
    display: none;
  }
}

header #Project a{
	color: white;
	text-decoration: none;
}

header #Project h1{
	margin:0;
	margin-bottom: 10px;

}

header #Project img{
	flex-wrap: wrap;
	width: 50px;
	float: left;
	margin: 5px;
	margin-right: 10px;
}

header .highlight, header .current a{
	color: 	#ff9100;
	font-weight: bold;
}

header li a:hover{
	color: #ff9100;
	font-weight: bold;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/*Showcase*/
.slider{
	height: 400px;
	width: 100%;
	background-color: gray;
	color: white;
	text-align: center;
	overflow: hidden;
	border-bottom: #ff9100  4px solid;
	box-shadow: 0px 8px 16px 0px rgba(47, 54, 64, 0.7);
}

.sliderchild{
	height: 400px;
	width: 400%;
	background-color: green;
	animation-name: slider;
	animation-iteration-count: infinite;
	animation-duration: 20s;
	animation-delay: 2s;
}

.imagecon{
	height: 400px;
	width: 25%;
	background-color: grey;
	float: left;
}


.imagecon .text-box{
	background-color: rgba(192, 192, 192, 0.7);
	width: 40%;
	min-height: 100px;
	margin-top: 60px;
	margin-left: 50%;
	border-radius: 10px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.imagecon h1{
	margin-top:40px;
	font-size: 50px;
	padding-left: 10%;
	padding-right: 10%;
}

.imagecon .text-box h2{
	padding-top: 15px;
	font-size: 30px;
	text-align: right;
	margin-bottom: 10px;
	padding-left: 15%;
	padding-right: 10%;
}

.imagecon .text-box a{
	color: white;
	text-decoration: none;
}

.imagecon .text-box a:hover{
	text-decoration: underline;
}

.imagecon .text-box p{
	font-size: 20px;
	text-align: right;
	padding-bottom: 15px;
	padding-left: 15%;
	padding-right: 10%;
}

.imagecon p {
	font-size: 20px;
	max-width: 800px;
	padding-left: 30%;
	padding-right: 30%;
}

@media only screen and (max-width: 930px) {
	.imagecon .text-box{
		width: 70%;
		margin-left: 20%;
	}
	.imagecon h1{
		font-size: 40px;
		padding-left: 10%;
		padding-right: 10%;
	}
	.imagecon p {
		font-size: 15px;
		max-width: none;
		padding-left: 15%;
		padding-right: 15%;
	}

}

@media only screen and (max-width: 520px) {
	.imagecon h1{
		font-size: 40px;
		padding-left: 0%;
		padding-right: 0%;
	}
	.imagecon .text-box h2{
		font-size: 17px;
	}
	.imagecon p {
		font-size: 10px;
	}
	.imagecon .text-box p{
		font-size: 12px;
	}
}

.imagecon:nth-child(1){
	background-image: url('images/fields.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.imagecon:nth-child(2){
	background-image: url('images/agri_visu01.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.imagecon:nth-child(3){
	background-image: url('images/COMBI_outputs_v1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.imagecon:nth-child(4){
	background-image: url('images/fields.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@keyframes slider{
	16.67% {
		margin-left: -100%;
	}
	33.33% {
		margin-left: -100%;
	}
	50% {
		margin-left: -200%;
	}
	66.67% {
		margin-left: -200%;
	}
	83.34% {
		margin-left: -300%;
	}
	100% {
		margin-left: -300%;
	}
}

/*Homepage Content*/
#content{
	margin-top: 20px;
}

#content p{
	color: 	#A9A9A9;
	width: 90%;
	font-size: 17px;
	line-height: 30px;
	margin-left: 4%;
}

#content li{
	color: 	#A9A9A9;
	width: 80%;
	font-size: 17px;
	line-height: 30px;
	margin-left: 10%;
}

#content p a{
	color: 	#A9A9A9;
	text-decoration: underline;
}

#content .imageref p{
	margin-top: 0;
	padding-top: 0;
	font-size: 7px;
}

#content .imageref_big p{
	margin-top: 0;
	padding-top: 0;
	font-size: 12px;
}

#content p a:hover{
	color: #ff9100;
}

#content li a{
	color: 	#A9A9A9;
	text-decoration: none;
}

#content li a:hover{
	text-decoration: underline;
	color: #ff9100;

}

#content .main{
	float:left;
	text-align: justify;
	width: 65%;
	min-height: 800px;
	border-bottom: #A9A9A9 1px solid;
	margin-bottom: 30px;
}

#content .main .frontpage{
	min-height: 900px;
}

@media only screen and (max-width: 1255px) {
	#content .main{
		width: 100%;
		float: none;
		border-bottom: none;
	}
}

#content .main .EarthScientists{
	padding-top: 20px;
	float:left;
	text-align: justify;
	width: 95%;
	margin-bottom: 30px;
	margin-left: 2%;
}

#content .main .PolicyMakers{
	padding-top: 20px;
	float:left;
	text-align: justify;
	width: 95%;
	margin-bottom: 30px;
	margin-left: 2%;
}

#content .main .ICTProfessionals{
	padding-top: 20px;
	float:left;
	text-align: justify;
	width: 95%;
	margin-bottom: 30px;
	margin-left: 2%;
}

#content .main .GeneralPublic{
	padding-top: 50px;
	padding-bottom: 30px;
	float:left;
	text-align: justify;
	width: 95%;
	margin-bottom: 30px;
	margin-left: 2%;
}

#content .main .Infographic{
	margin-left: 15%;
	width: 70%;
	border-radius: 16%;
	box-shadow: 0px 4px 20px 0px rgba(47, 54, 64, 0.7);
}

#content .main h2{
	color: #A9A9A9;
	float: left;
	margin-left: 4%;
	border-bottom: #A9A9A9 1px solid;
}

#content .main h3{
	color: #A9A9A9;
	margin-top: 40px;
	margin-left: 4%;
}

#content .main .Left a{
	color: #A9A9A9;
	margin-left: 4%;
	border-bottom: #A9A9A9 1px solid;
	text-decoration: none;
}

#content .main .Left a:hover{
	color: #ff9100;
}

#content .main .Right{
	color: #A9A9A9;
	float:right;
	margin-right: 4%;
	border-bottom: #A9A9A9 1px solid;
}

#content .main .Bold{
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: bold;
	text-align: center;
}


#content .main img{
	width: 90%;
	margin-left: 4%;
}

#content .main .no-margin img{
	margin-bottom: 0;
	padding-bottom: 0;
}

#content .main .subimage{
	width: 29%;
	float: left;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-top: 10px;
}

#content .main .subimageleft{
	width: 30%;
	float: left;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-top: 10px;
}

#content .main .subimageright{
	width: 30%;
	float: right;
	margin-right: 5%;
	margin-bottom: 0px;
	margin-top: 10px;
}

#content .main .subimage-adapt{
	width: 15%;
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-top: 10px;
}

#content .main .In-Text{
	width: 90%;
	margin-left: 4%;
	border-radius: 5px;
	box-shadow: 0px 4px 8px 0px rgba(47, 54, 64, 0.7);
}

#content .main iframe{
	width: 70%;
	height: 371px;
	margin-left: 13%;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
}

#content .LatestNews{
	text-align: justify;
	margin-left: 30px;
}

#content .LatestNews h2{
	color: 	#A9A9A9;
}

#content .Events{
	text-align: justify;
	margin-left: 30px;
}

#content .Events h2{
	color: 	#A9A9A9;
	margin-bottom: 0px;

}

#content .twitter-timeline{
	margin-left: 50px;
}

#content embed{
	margin-left: 50px;
	margin-top: 20px;
	border-radius: 5px;
	box-shadow: 0px 4px 8px 0px rgba(47, 54, 64, 0.7);
}

@media only screen and (max-width: 1255px) {
	#content embed{
		float: right;
		margin-top: 3px;
		margin-left: 10px;
		box-shadow: none;
	}
	#content .twitter-timeline{
		float: right;
		height: 280px;
		margin-left: 10px;
	}
}
/*Contact*/

.main h2{
	color: #A9A9A9;
	margin-top: 30px;
	width: 90%;
	margin-left: 5%;
	border-bottom: #A9A9A9 1px solid;
}

.main p{
	width: 90%;
	margin-left: 5%;
	color: #A9A9A9;
}

.contact-box{
	background: #fff;
	width: 90%;
	margin-left: 5%;
	display: flex;
	margin-bottom: 30px;
	box-shadow: 0px 4px 8px 0px rgba(47, 54, 64, 0.7);
	border-radius: 10px;
}

.contact-left{
		flex-basis: 60%;
		padding: 20px 60px;
		color: #A9A9A9;
}

.contact-right{
		flex-basis: 40%;
		padding: 20px 60px;
		background: #1d1d1d;
		color: #ffffff;
}

.input-row{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.input-row .input-group{
	flex-basis: 45%;
}


input{
	width: 100%;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	padding-bottom: 5px;
}

textarea{
	width: 100%;
	border: 1px solid #ccc;
	outline: none;
	padding:10px;
	box-sizing: border-box;
}

label{
	margin-bottom: 6px;
	display: block;
}

.contact-box .submit{
	background: #1d1d1d;
	width: 100px;
	border: none;
	outline: none;
	color: white;
	height: 35px;
	border-radius: 6px;
	margin-top: 20px;
	box-shadow: 0px 5px 15px 0px rgba(28, 0, 181, 0.3)
}

.contact-box .submit:hover{
	background-color: none;
	color: #ff9100;
	font-weight: bold;
	cursor: pointer;
}

tr td:first-child{
	padding-right: 20px;
}
tr td{
	padding-top: 20px;
}

/*footer*/

.partners{
	padding: 40px;
	color: #ffffff;
	background-color: rgba(107,107,107,0.5);
	border-top:	#ff9100 1.5px solid;
	text-align: center;
	font-size: 10px;
}

.partners img{
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 30px;
	padding-right: 30px;
}

footer{
	padding: 3px;
	color: #ffffff;
	background-color: #1d1d1d;
	border-top:	#ff9100 2px solid;
	text-align: center;
	font-size: 10px;
}

@media only screen and (max-width: 1255px) {
	.partners{
		margin-top: 40px;
	}
}

.trillium{
	margin-bottom: 30px;
}

.esa{
	margin-bottom: 5px;
}
