header {
  background: linear-gradient(90deg,rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0) 60%), url("images/header.jpg");
  position: relative;
  background-size: cover;
  background-position: center top;
}

@media (min-width:992px) {
  header {}  
}

h1, .h1 {
	font-family: Segoe UI;
	font-size: 2rem;
	display: block;
  letter-spacing: 2px;
}

header > .row {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

header .logo {
  padding-left: 15px;
  padding-top: 15px;
}
header .logo .img-fluid {
  max-width: 300px;
}

header h1 > span {}

@media (min-width:768px) {
  header h1 {}
  header h1 > span {}
}

.titlelogo {
	letter-spacing: inherit;
	text-transform: uppercase;
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: 0;
}
.firstletter {
	font-size: 3rem;
}
.spacingsmall {
  letter-spacing: -5px;
}
.firstcolor {
  color: #025a7b;
  display: block;
}
.secondcolor {
  color: #658530;
  display: block;
}
.thirdcolor {
  color: #03574a;
  display: block;
}
.accentcolor {
  color: #9db334;
}

.main h2 {
  margin: 2rem auto 4rem auto;
  width: 75%;
  font-size: 1.15rem;
}

@media (min-width:768px) {
  .main h2 {
    font-size: 1.5rem;
  }
}
@media (min-width:992px) {
  .main h2 {
    font-size: 2rem;
  }
}

.main > div {
  margin-bottom: 4rem;
}

.main .details p {
  font-size: 0.85rem;
}
@media (min-width:768px) {
  .main .details p {
    font-size: 1rem;
  }
}
.main .details p.h4 {
  font-size: 1rem;
}
@media (min-width:768px) {
  .main .details p.h4 {
    font-size: 1.5rem;
  }
}

.main .container-fluid.background1 {
  background-image: url("images/background1.jpg");
  min-height: 36vh;
  background-size: cover;
  background-position: center center;  
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.main .postit .row > div[class^="col-"], .main .postit .row > div[class*="col-"] {
  margin-bottom: 1.25rem;
}

.main .postit .card {
  position: relative;
}

.main .postit .card-title {
  margin-bottom: 0;
}

.main .postit .card-over {
	overflow: hidden;
	transition: all 0.25s cubic-bezier(.17,.84,.44,1);
	position: absolute;
	top: 100%;
	left: -15%;
	z-index: 1;
	opacity: 0;
  max-height: 100px;
  height: 0px;
	padding: 0 1.25rem 1.25rem 1.25rem;  
}

.main .postit .card:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.main .postit .card:hover .card-over {
	width: calc(100% + 2px);
	opacity: 1;
  left: -1px;
  height: 120px;
  border-left: 1px solid rgba(0,0,0,.125);
  border-right: 1px solid rgba(0,0,0,.125);
  border-bottom: 1px solid rgba(0,0,0,.125);
}

footer {
  background-image: url("images/footer.jpg");
  position: relative;
  min-height: 25vh;
  background-size: cover;
  background-position: center top;
}

footer .row {
  background: linear-gradient(0deg,rgb(0, 0, 0) 0%, rgb(0, 0, 0) 35%, rgba(0, 0, 0, 0) 100%);
  padding: 4rem 0rem 1rem 0rem;
  color: white;
  min-height: inherit;
  align-content: center;
}

footer .h5 a {
  color: white;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

footer .h5 a:hover {
  color: yellow;
}