body{
  margin: 0;
}

.container {
  display: block;
  /* font-family: 'Roboto Mono', monospace; */
  /* font-family: 'Source Code Pro', monospace; */
  font-family: 'Raleway', sans-serif;
}

h1{
  font-size: 3rem;
  color: rgb(66, 71, 66);
}

h2 {
  font-size: 2rem;
  padding-bottom: 10px;
}

p {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

a {
  text-decoration: none;
  font-weight: 800;
  color: rgb(77, 146, 86);
}

.top {
  border-bottom: 1px solid #acb5b5;
  background: #e3ebeb;
  display: flex;

}

.header-text{
  width: 68%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-text h1{
  font-size: 3.5rem;
  font-weight: 300;
  border-bottom: 2px solid rgb(77, 146, 86);
  margin-right: 12%;
}

.header-text h2{
  font-size: 2.5rem;
  font-weight: 300;
  width: 80%;
  margin-block-start: 0;
}

.summary-section{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.dt{
  width: 32%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

.gl{
  padding: 0 5% 0 50px; 
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gl img{
  padding: 10px;
  height: 50px;
}

#fade-in {
  animation: fadeIn ease 4s;
  -webkit-animation: fadeIn ease 4s;
  -moz-animation: fadeIn ease 4s;
  -o-animation: fadeIn ease 4s;
  -ms-animation: fadeIn ease 4s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

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

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

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

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

button:hover {
  background-color: rgb(77, 146, 86); /* Green */
  color: white;
}

#summaryBtn {
  margin-bottom: 10px;
  padding: 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  border-radius: 10px;
  background-color: rgb(77, 146, 86); /* Green */
  color: white;
  border: 1px solid #acb5b5;
  box-shadow: 0 1px 2px 0 #acb5b5;
}

#summaryBtn:hover {
  background-color: white; /* white */
  color: black;
}

.mid-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}

.mid-button {
  width: 12rem;
  height: 12rem;
  font-size: 1.4rem;
  margin: 20px 10px;
  padding: 15px;
  font-family: 'Raleway', sans-serif;
  background: rgb(240, 243, 243);
  border: 1px solid #acb5b5;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 #acb5b5;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 40px auto; /* 8% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 60%; /* Could be more or less, depending on screen size */
  overflow: scroll;
}

/* The Close Button */
.close {
  color: rgb(51, 54, 53);
  float: right;
  font-size: 48px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.main{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bc{
  width: 100%;
  margin: 10px 0;
  padding-right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.privacy{
  margin: 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.middle {
  border: 1px solid #acb5b5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-prop{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.proposal {
  padding: 20px 30px 0 30px;

}

.proposal h1{
  font-size: 3rem;
}

.logo{
  padding: 20px 30px 0 30px;
}

.items {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.ref{
  margin: 0 30px;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 15px;
}

li {
  margin: 10px 0;
}

.lower{
  width: 100%;
  background: #e3ebeb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-text{
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-text h4{
  margin:10px 0 0 0;
}

.footer-text p{
  text-align: center;
  font-size: .8rem;
}

/* Slideshow Styles */

.ss-page{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ss-top{
  text-align: center;
}

.slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.back {
  padding: 10px;
}
