/* CSS Document */

.fade-in {
	animation: fadeIn ease 10s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.fade-out {
	animation: fadeOut ease 10s;
}

@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0;}
}

blockquote::before {
  content: open-quote;
}
blockquote::after {
  content: close-quote;
}
blockquote {
  quotes: "“" "”" "‘" "’";
}

/* Main Styles */
html {
  scroll-behavior: smooth;
}

body {
  color: rgb(31, 52, 63);;
  background:rgb(228, 236, 232);
	font-family: Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 0;
}

a {
  cursor: pointer;
  color: rgb(31, 52, 63);
}

a label {
  cursor: pointer;
}

.header-links a {
  padding-left: 20px;;
}

.navigation {
  display: flex;
  flex-direction: row; 
	flex-wrap: wrap;
  justify-content: space-between;
  background-color: rgb(177, 184, 180);
}

.logo {
	height: 110px;
	background: url("images/logo.png") no-repeat; 
  background-position: top 20px left 30px;
  text-align: left;
}

.logo span {
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: rgb(31, 52, 63);
  position: relative;
  top: 24px; 
  padding-left: 125px;
}

.header-links {
  padding-right: 60px;
  line-height: 110px;
}

.banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("/images/banner.jpg");      
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 350px;
}

.banner h1 {
  position: relative;
  top: 148px;
  color: wheat;
  font-size: 36px;
  margin: 0 auto;
}

.banner h1 span {
  padding: 20px;
  background-color: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
}

.info {
	display: flex;
	flex-direction: row; 
	flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}

.info-box {
  width: 300px;
  padding: 15px 15px 15px 15px;
  text-align: left;
  background-color: rgb(155, 173, 164);
  margin: 20px;
  border: 1px solid rgb(155, 173, 164);
  border-radius: 10px;
  box-shadow: 10px 10px 8px lightgray;
}

.info-box h3 {
  color: rgb(181,76,26);
}
    
.services {
	padding-top: 50px;
}

.generative ul, .evaluative ul {
  width: 760px;
  text-align: left;
  margin: 0 auto;
}

.generative h3, .evaluative h3 {
  color: rgb(181,76,26);
}
 
.clients {
  width: 75%;
  margin: 0 auto;
  max-width: 984px;
  padding-top: 50px;
}

.client-list {	
  position: relative;
	display: flex;
	flex-direction: row; 
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
  background-color: rgb(255, 255, 255);;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 10px 10px 8px lightgray;
  padding-left: 20px;
  padding-right: 20px;
}

.client-logo {
  width: 140px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.client-logo:hover {
  transform: scale(1.2);  
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
}

.process {
  padding-top: 50px;
}

.process-icon {
  background-repeat: no-repeat;
  background-position-x: center;
  height: 75px;
  width: 300px;
  background-size: 80px;
}

.process-icon.plan {
  background-image: url("/images/plan1.png");
}

.process-icon.research {
  background-image: url("/images/research.png");
}


.process-icon.inform {
  background-image: url("/images/inform.png");
}

.processes-container {
	display: flex;
	flex-direction: row; 
	flex-wrap: wrap;
  justify-content: center;  
}

.process-box {
  width: 300px;
  height: 290px;
  padding: 10px 20px 20px 20px;
  margin: 20px;
  text-align: left;
  background-color: rgb(155, 173, 164);;
  border: 1px solid rgb(155, 173, 164);
  border-radius: 10px;
  box-shadow: 10px 10px 8px lightgray;
}

.process-box h3 {
  color:  rgb(31, 52, 63);
  text-align: left;
  margin-top : 10px;
  padding-left: 23px;
}

.testimonials {
  padding-top: 50px;
}

.testimonials a {
  text-decoration: none;
}

.testamonial {
  display: none;
  background-color: rgb(255, 255, 255);;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 5px 5px 5px lightgray;
  padding-top: 15px;  
  padding-bottom: 15px;  
  color: rgb(31, 52, 63);
}

.contact {
  padding-top: 30px;
}

.contact-info {
  padding: 1em;
  background: #f9f9f9;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  margin: 2rem auto 0 auto;
  max-width: 600px;
  padding: 1em;
}

.contact-info img {
  height: 25px;
  position: relative;
  top: 6px;
  padding-left: 20px;
  padding-right: 10px;
}

.contact-info a {
    text-decoration: none;
}

form {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 16px;
  padding: 1em;
  background: #f9f9f9;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  margin: 2rem auto 0 auto;
  max-width: 600px;
  padding: 1em;
}
form input {
  background: #fff;
  border: 1px solid #9c9c9c;
}
form input:hover {
  border: 1px solid rgb(181,76,26);
}
form button {
  grid-column: 2 / 3;
  background: lightgrey;
  padding: 15px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  font-size: 18px;
}
form button:hover {  
  background: rgb(181,76,26);;
}
label {
  padding: 0.5em 0.5em 0.5em 0;
  text-align: end;
}
input {
  padding: 10px;
  margin-bottom: 3px;
}
input:focus {
  outline: 1px solid rgb(181,76,26);
}

.form-error {
  outline: 1px solid red;
}

.error-message {
  color: red;
  display: none;
  grid-column: 1 / 3;
}


footer {
    height: 50px;
    display: block;
    background-color: rgb(177, 184, 180);
    padding-top: 20px;
    margin-top: 30px;
}

.modal {
  display: none;
  height: 160px;
  width: 350px;
  background-color: white;
  border: 1px solid gray;
  border-radius: 10px;
  line-height: 160px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal img {
  display: block;
  position: relative;
  top: -61px;
  left: 150px;
}