/* ================================== */
/* Basic flex layout control */

@font-face {
  font-family: imFellSC;
  src: url(images/IMFeENsc29P.ttf);
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;

  font-family: "Verdana", sans-serif;
}

.content {
  flex: 1;
  padding: 20px;
}

.footer {
  padding: 5px;
  font-size: 12px;
  text-align: center;
  background: rgba(128, 190, 255, 0.6);
}

/* TEST */
div {
 rborder: 1px gray solid;
}

img {
  bforder: 1px green solid;
}

.photo-banner {
	/* background-image: url(http://www.trilemma.com/images/Banner-Image.jpg); */
  background-image: url(images/Banner-Image.jpg);
	background-attachment: fixed;
	background-size: 100% auto;
	height: 300px;
	position: relative;
	border-bottom: 1px solid lightgray;
}

.photo-banner .overlay {
	z-index: 1;
    height: 300px;
    width: 100%;
    position: absolute;
    overflow: hidden;
    top: 0px;
    left: 0px;
    background: rgba(128, 190, 255, 0.3);
}

.photo-banner .content {
  /* position above the overlay */
  position: relative;
  z-index: 2;
  text-align: center;
  height: 300px;
}

.photo-banner .content img {
  position: relative;
  top: 35px;
  height: 200px;
}

.photo-banner h1 {
  font-size: 200%;
  text-align: center;
}

.photo-banner h2 {
  font-size: 150%;
  text-align: center;
}

h3 {
  font-size: 150%;
  font-weight: bold;
  font-family: imFellSC;
  color: #333333;
  margin-bottom: 10px;
}

.blurb {
  width: 65%;
  min-width: 500px;
  max-width: 1000px;
  margin: 0 auto;
}

.blurb h3 {
	text-align: center;
}

.segment {
  width: 65%;
  min-width: 500px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.segment div {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}

.segment-icon ~ .segment-text {
  text-align: left;
  padding-left: 5%;
  padding-right: 0%;
}

.segment-icon {
  width: 40%;
  position: relative;
}
.segment-icon img {
  width: 100%;
  position: relative;
}

.segment-icon .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  // background: rgba(128, 190, 255, 0.3);
}

.segment-text {
  width: 50%;
  text-align: center;
  padding-left: 0%;
  padding-right: 5%;

  line-height: 1.4;
}

.segment-text a {
  text-decoration: none;
}
.segment-text a:hover {
  text-decoration: underline;
}

.divider {
  height: 0px;
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid lightgray;
}

b {
  font-weight: bold;
}
