/* ---------------------------
		General Formatting 
		-----------------------------*/
main {
  font-family: "Questrial", sans-serif;
}

.id7-main-content-area > .id7-main-content,
.container {
  padding: 0;
  margin: 0;
}

/* ---------------------------
		Header Section 
		-----------------------------*/

/*Left-side- Header text */

.intro-text a {
  text-decoration: none;
}

.id7-page-title h1 {
  display: none;
}

header.content-header {
  margin-top: -20px;
  display: flex;
  height: 40vh;
  min-height: 290px;
}

.intro {
  width: 50%;
  background: #ffebe0;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  color: #204f79;
  align-items: center;
}

.intro-text {
  position: relative;
  max-width: 400px;
  align-items: center;
}

.title {
  padding: 10px;
}

div.title > h2 {
  padding-top: 15px;
  font-size: 2.2em;
}

.meta1 h4,
.meta2 h4 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 0 10px;
}

.meta2 h4:first-child {
  border-right: solid 1px black;
  padding-right: 15px;
  font-size: 20px;
}

.meta1 h4:last-child,
.meta2 h4:last-child {
  font-size: 17px;
}

div.intro-img {
  width: 50%;
}

/* Right side- Header Img */

.intro-img img {
  height: 40vh;
  width: 100vw;
  min-height: 290px;
  object-fit: cover;
}

/* ---------------------------
		Main Content 
		-----------------------------*/
div.main-content-holder {
  display: flex;
}

div.left-content,
div.right-content {
  flex: 1;
  text-align: center;
}

div.left-content {
  visibility: hidden;
}

div.right-content {
  padding: 20px;
}

div.right-content h3 {
  position: relative;
  text-align: center;
}

div.right-content h3:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -5px;
  left: 30%;
  right: 30%;
  border-bottom: solid 1px #dadada;
}

article.main-content {
  flex: 2.5;
  padding: 20px 0;
  text-align: justify;
}

.first-letter::first-letter {
  font-size: 200%;
  display: block;
  float: left;
  margin-top: 2px;
  line-height: 0.5;
}

.first-letter-indent::first-letter {
  margin-left: 38px;
}

.text-indent {
  text-indent: 36px;
}

img.article-img {
  display: block;
  padding: 10px;
  margin: 0 auto;
  border-radius: 10px;
}

blockquote {
  background: #ffebe0;
  border-left: 5px solid #6384a1;
  margin: 30px;
}

/* Optional Formatting Classes */

.center-img {
  width: 70%;
  margin: 0 auto;
  padding: 10px;
}

.caption {
  text-align: left;
  font-style: italic;
  font-size: 0.8em;
  text-align: center;
}

.exec-summary {
  position: relative;
  text-align: center;
}

.exec-summary:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -5px;
  left: 20%;
  right: 20%;
  border-bottom: solid 1px #dadada;
}

/* Final Report */
.final-report {
  position: relative;
  text-align: center;
}

.final-report:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -5px;
  left: 15%;
  right: 15%;
  border-bottom: solid 1px #dadada;
}
/* ---------------------------
		Media Queries
		-----------------------------*/

@media screen and (max-width: 767px) {
  header.content-header {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0px;
  }

  .intro-text:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -5px;
    right: 15%;
    left: 15%;
    border-bottom: solid 1px #dadada;
  }

  .intro,
  .intro-img {
    background: white;
    width: 75%;
    margin: 0 auto;
  }

  .intro-img img {
    display: none;
  }

  .meta1 {
    margin-top: 10px;
  }

  .meta1 h4,
  .meta2 h4 {
    display: block;
    text-align: center;
    margin: 2px !important;
  }

  .meta1 h4:first-child,
  .meta2 h4:first-child {
    border-right: none;
  }

  /* Main Content */

  div.main-content-holder {
    flex-wrap: wrap;
  }

  div.right-content {
    flex: 1 100%;
    order: -1;
    padding: 15px 20px;
    margin: 10px 5px -10px 5px;
    text-align: center;
    background: #d0edff;
  }
  div.right-content h3 {
    margin-bottom: 5px;
  }

  div.right-content h3:after {
    border-bottom: 0px;
  }
  div.left-content {
    display: none;
  }

  article.main-content {
    flex: 0 60%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 650px) {
  article.main-content {
    flex: 0 80%;
  }
}