@charset "UTF-8";
/* -------------------------------------------------------------------------------- */
/*	SASS
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/*	Document setup
/* -------------------------------------------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
  font-weight: 300;
  line-height: 1.35em;
  color: #171714;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15em;
}

body, p {
  font-size: 1rem;
}

::selection {
  background: #fb8225;
  color: #fff;
}

body a,
.post-tags a::after {
  color: #fb8225;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body a:hover {
  color: #db4419;
  text-decoration: none;
}

/* -------------------------------------------------------------------------------- */
/*	Fonts
/* -------------------------------------------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
}

.blog-title {
  font-family: "Poppins", sans-serif;
}

.blog-description {
  font-family: "Poppins", sans-serif;
}

.post-title {
  font-family: "Poppins", sans-serif;
}

.post-content blockquote {
  font-family: "Poppins", sans-serif;
}

.widget-title {
  font-family: "Poppins", sans-serif;
}

code, kbd, pre {
  font-family: Menlo, Monaco, monospace;
}

.post-content input,
.post-content textarea {
  font-family: "Poppins", sans-serif;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input.password,
.comment-form textarea {
  font-family: "Poppins", sans-serif;
}

.comment-form input[type=submit] {
  font-family: "Poppins", sans-serif;
}

.post-content .searchform input#s {
  font-family: "Poppins", sans-serif;
}

.post-content .searchform #searchsubmit,
.widget_search input#s,
.widget_search #searchsubmit,
.blog-search #s,
.blog-search #searchsubmit {
  font-family: "Poppins", sans-serif;
}

/* -------------------------------------------------------------------------------- */
/*	Header
/* -------------------------------------------------------------------------------- */
.header {
  padding: 60px 0 40px;
  background-color: #fff;
  text-align: center;
}

.blog-logo {
  height: 130px;
}
.blog-logo a, .blog-logo img {
  height: 100%;
}

/* -------------------------------------------------------------------------------- */
/*	Navigation
/* -------------------------------------------------------------------------------- */
.navigation:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #db4419;
  width: 1040px;
  max-width: 86%;
  margin: 0 auto;
}

.navigation-inner {
  width: 1040px;
  max-width: 86%;
  margin: 0 auto;
}

.blog-menu {
  text-align: center;
  padding-bottom: 5px;
}

.blog-menu > li {
  float: none;
  display: inline-block;
}

.blog-menu > li:before {
  content: none;
}

.blog-menu a {
  color: #000;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 12px;
}

.blog-menu a:hover,
.blog-menu .current-menu-item a {
  color: #fb8225;
}

/* deleting parent theme caret */
.blog-menu > .has-children::after,
.blog-menu > .page_item_has_children::after,
.blog-menu > .has-children:hover::after,
.blog-menu > .page_item_has_children:hover::after {
  border: 4px solid transparent;
  border-top-color: transparent;
}

.blog-menu li:hover a {
  background-color: transparent;
}

.blog-menu li:hover > a {
  color: #fb8225;
}

/* adding new caret */
.blog-menu > .has-children > a:after {
  content: "";
  display: inline-block;
  border: 4px solid transparent;
  border-top-color: #171714;
  position: relative;
  z-index: 1001;
  top: 2px;
  left: 5px;
}

.blog-menu > li:hover > a:after {
  border-top-color: #fb8225;
}

/* Sub menus --------------------------------------- */
.blog-menu ul li {
  background: rgba(255, 255, 255, 0.95);
}
.blog-menu ul a {
  padding: 15px 0;
  margin: 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.blog-menu .current-menu-item ul a {
  color: #000;
}
.blog-menu .current-menu-item .sub-menu a:hover {
  color: #fb8225;
}

/* Responsive - Tablet --------------------------------------- */
@media screen and (max-width: 900px) {
  .blog-menu a {
    padding: 15px 20px;
  }

  .blog-menu ul a {
    margin: 0 20px;
  }

  .header {
    padding: 40px 0 15px;
  }

  .blog-logo {
    height: 115px;
  }
}
@media screen and (max-width: 800px) {
  .navigation {
    background: inherit;
  }

  .blog-menu {
    display: block;
  }
  .blog-menu a {
    padding: 15px 15px;
    font-size: 11px;
  }
  .blog-menu ul a {
    margin: 0 20px;
  }
  .blog-menu > .has-children a, .blog-menu > .page_item_has_children a {
    padding-right: 15px;
  }
}
/* Responsive - Mobile --------------------------------------- */
#menu-toggle {
  z-index: 101;
  margin: 0;
  position: absolute;
  top: 7vw;
  right: 7%;
  padding: 8px 34px 10px 0px;
  display: none;
}

/* hamburger icon */
#menu-toggle span,
#menu-toggle span:before,
#menu-toggle span:after {
  cursor: pointer;
  height: 2px;
  width: 16px;
  background: #fb8225;
  position: absolute;
  display: block;
  content: "";
  left: 18px;
}

#menu-toggle span:before {
  top: -8px;
  left: -10px;
  width: 26px;
}

#menu-toggle span:after {
  bottom: -8px;
  left: -18px;
  width: 34px;
}

#menu-toggle span,
#menu-toggle span:before,
#menu-toggle span:after {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/* hamburger icon toggled*/
#menu-toggle.toggled span {
  background-color: transparent;
}
#menu-toggle.toggled span:before, #menu-toggle.toggled span:after {
  width: 24px;
  left: -5px;
  top: 0;
}
#menu-toggle.toggled span:before {
  transform: rotate(45deg);
}
#menu-toggle.toggled span:after {
  transform: rotate(-45deg);
}

/* nav */
@media screen and (max-width: 585px) {
  #menu-toggle {
    display: block;
  }

  .header-cover {
    z-index: 102;
  }

  .header {
    padding: 20px 0 12px;
  }

  .blog-logo {
    height: 65px;
  }

  .navigation {
    z-index: 100;
  }

  .navigation:after {
    position: absolute;
    left: 7%;
    z-index: 200;
  }

  .navigation-inner {
    position: absolute;
    top: calc(-100vh + 100px);
    left: 0;
    max-width: 100%;
    height: calc(100vh - 100px);
    padding: 0 7% 30px;
    z-index: 100;
    display: block;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .navigation-inner.toggled {
    top: 0;
  }

  .blog-menu {
    position: absolute;
    top: 15px;
    width: 86%;
    height: calc(100% - 62px);
    overflow: scroll;
  }
  .blog-menu li {
    display: block;
  }
  .blog-menu li a {
    padding: 12px 0;
    display: inline-block;
  }
  .blog-menu ul {
    position: relative;
    left: 0;
    display: none;
  }
  .blog-menu ul li {
    background-color: transparent;
    border-top: none;
  }
  .blog-menu ul li a {
    border-top: none;
    border-bottom: none;
    margin: 0 0 0 24px;
    padding: 0 0 15px;
  }
  .blog-menu ul li:before {
    content: "–";
    position: absolute;
    top: 1px;
  }
  .blog-menu > li:hover ul {
    display: none;
  }
  .blog-menu > .has-children.open > a:after {
    transform: rotate(180deg);
    top: -2px;
  }

  li.menu-item-has-children.open ul {
    display: block;
  }
}
.fixedbody {
  overflow: hidden;
}

/* -------------------------------------------------------------------------------- */
/*	General Page Structure
/* -------------------------------------------------------------------------------- */
.wrapper {
  margin-top: 50px;
}

.flex-grid {
  width: calc(100% + 20px);
  display: inline-flex;
  flex-flow: row wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 50px;
  justify-content: flex-start;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .flex-grid.responsive-vertical {
    flex-flow: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 585px) {
  .wrapper {
    margin-top: 20px;
  }
}
.responsive {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------------- */
/*	Landing Page
/* -------------------------------------------------------------------------------- */
.title {
  font-weight: 600;
}
.title a {
  color: #171714;
}

/* Featured Post --------------------------------------- */
.post {
  float: none;
}

.featured-post {
  width: 360px;
  padding-left: 10px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.featured-post .title {
  font-size: 1.85rem;
  padding-bottom: 15px;
}
.featured-post .tagline {
  font-size: 1rem;
  line-height: 1.5em;
  font-family: "PT Serif", serif;
  flex: 1;
}

.featured-byline {
  padding-top: 15px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.featured-byline .author {
  font-weight: 300;
  font-size: 0.9rem;
}
.featured-byline .date {
  text-align: right;
  flex-shrink: 0;
  flex: 0 0 auto;
  color: #A09F9E;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding-top: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.featured-post-image {
  flex: 1;
  padding-right: 10px;
}
.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 900px) {
  .featured-post, .featured-byline {
    width: 100%;
  }

  .featured-post {
    padding-left: 0;
    padding-bottom: 12px;
  }
  .featured-post .title {
    padding-bottom: 0;
  }
  .featured-post .tagline {
    order: 3;
    font-size: 0.9rem;
  }

  .featured-byline {
    order: 2;
    padding-top: 0;
    padding-bottom: 8px;
  }
  .featured-byline h6 {
    margin-top: 8px;
  }
  .featured-byline .author {
    font-size: 0.85rem;
  }
  .featured-byline .date {
    font-size: 0.65rem;
  }

  .featured-post-image {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 585px) {
  .flex-grid {
    margin-bottom: 20px;
  }

  .featured-post .title {
    font-size: 1.5rem;
  }
  .featured-post .tagline {
    font-size: 0.9rem;
  }

  .featured-byline .author {
    font-size: 0.85rem;
  }
  .featured-byline .date {
    font-size: 0.75rem;
  }
}
/* Featured Multimedia --------------------------------------- */
.featured-multimedia {
  flex: 1;
  padding-left: 10px;
  padding-right: 10px;
}

.multimedia-type h6 {
  color: #fb8225;
  text-transform: uppercase;
  font-size: 1rem;
  border-bottom: 2px solid #fb8225;
  padding-bottom: 5px;
  margin-bottom: 18px;
}

.article-thumbnail .featured-image {
  width: 100%;
  padding-bottom: 52.5%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  overflow: hidden;
}
.article-thumbnail .featured-image .cropped-thumbnail {
  position: absolute;
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: auto;
}
.article-thumbnail .title {
  font-size: 1rem;
  margin-bottom: 5px;
}
.article-thumbnail .byline p {
  font-size: 0.85rem;
}

@media only screen and (max-width: 900px) {
  .article-thumbnail .byline p {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 585px) {
  .flex-grid.multimedia {
    flex-flow: row;
    width: 100%;
    margin: 0 0 50px;
  }

  .featured-multimedia {
    padding-left: 0;
    padding-right: 0;
  }

  .slick-prev:before, .slick-next:before {
    opacity: 0.85;
    color: #fb8225;
  }

  .slick-next {
    right: 5px;
  }

  .slick-prev {
    left: 5px;
    z-index: 1;
  }
}
/* Archive --------------------------------------- */
.recent-posts {
  font-size: 1.25rem;
  border-bottom: 2px solid #fb8225;
  padding-bottom: 5px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 585px) {
  .recent-posts {
    font-size: 1.1rem;
  }

  .flex-grid {
    width: auto;
  }
}
/* -------------------------------------------------------------------------------- */
/*	Archive Grid
/* -------------------------------------------------------------------------------- */
.archive-thumbnail {
  width: 50%;
  padding: 10px;
  margin-bottom: 30px;
}
.archive-thumbnail .cropped-thumbnail-med {
  width: 100%;
  padding-bottom: 52.5%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  overflow: hidden;
}
.archive-thumbnail .cropped-thumbnail-med img {
  position: absolute;
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: auto;
}

.post-info {
  min-height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.post-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.post-info p.tagline {
  font-size: 0.9rem;
  font-family: "PT Serif", serif;
}
.post-info .byline {
  padding-top: 15px;
  margin-top: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.post-info .byline h6 {
  font-size: 0.9rem;
  font-weight: 300;
  display: inline-block;
}
.post-info .byline h6.date {
  text-transform: uppercase;
  color: #A09F9E;
  font-size: 0.75rem;
  padding-top: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  flex: 0 0 auto;
}

.alm-listing.alm-ajax.flex-grid {
  width: 100%;
}

.alm-btn-wrap {
  padding: 0 !important;
}

@media only screen and (min-width: 586px) and (max-width: 900px) {
  .archive-thumbnail {
    width: 100%;
    margin: auto;
    padding: 15px 10px;
  }
  .archive-thumbnail .cropped-thumbnail-med {
    width: 50%;
    padding-bottom: 180px;
    float: left;
    z-index: 50;
    margin-bottom: 0;
  }
  .archive-thumbnail:after {
    content: "";
    height: 1px;
    width: calc(100% - 20px);
    position: absolute;
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .post-info {
    min-height: 180px;
  }
  .post-info .title, .post-info p {
    float: right;
    padding-left: 11px;
  }
  .post-info .title h3 {
    font-size: 1.35rem;
  }
  .post-info p.tagline {
    font-size: 0.9rem;
  }
  .post-info .byline {
    padding-top: 12px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .post-info .byline h6.author {
    padding-left: 11px;
    font-size: 0.8rem;
  }
  .post-info .byline h6.date {
    font-size: 0.65rem;
  }

  .alm-btn-wrap {
    padding: 45px 0 0 !important;
  }
}
@media only screen and (max-width: 585px) {
  .archive-thumbnail {
    width: 100%;
    margin: auto;
  }
  .archive-thumbnail .cropped-thumbnail-med {
    width: 100%;
    padding-bottom: 52.5%;
    float: none;
  }

  .post-info {
    height: auto;
  }
  .post-info .title, .post-info p {
    width: 100%;
    padding-left: 0;
  }
  .post-info .byline {
    position: relative;
  }
  .post-info h6.author {
    margin-left: 0;
    padding-left: 0;
    font-size: 0.85rem;
  }
  .post-info h6.date {
    font-size: 0.7rem;
  }

  .alm-btn-wrap {
    padding: 15px 0 0 !important;
  }
}
/* -------------------------------------------------------------------------------- */
/*	Post Archive Pages
/* -------------------------------------------------------------------------------- */
/* Page Titles --------------------------------------- */
.page-title {
  margin-bottom: 30px;
  text-align: left;
}
.page-title h1 {
  font-size: 2rem;
}

.archive-type {
  background-color: #A09F9E;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  padding: 3px 5px 3px 7px;
  font-weight: 300;
  position: relative;
  bottom: 0.35rem;
  margin-right: 5px;
  white-space: nowrap;
}
.archive-type.topic {
  background-color: #fb8225;
}
.archive-type.series {
  background-color: #db4419;
}

.archive-pagination {
  color: #A09F9E;
  font-size: 0.85rem;
  font-weight: 300;
  margin-left: 4px;
}

@media only screen and (max-width: 585px) {
  .page-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .page-title h1 {
    line-height: 0.9em;
  }

  .archive-type {
    margin-right: 100%;
    font-size: 0.65rem;
  }

  .archive-pagination {
    display: block;
    margin-left: 0;
    padding-top: 4px;
    font-size: 0.7rem;
  }
}
/* Bottom of Page Nav --------------------------------------- */
.archive-nav, .post-nav {
  margin-top: 0;
}

.post-nav {
  margin-top: -30px;
  margin-bottom: 50px;
  border: 0;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
}

.post-nav a, .archive-nav a {
  background-color: #9fafe3;
  flex: 1;
  margin-left: 5px;
  margin-right: 5px;
  padding: 20px;
  color: #fff;
}
.post-nav a:hover, .archive-nav a:hover {
  color: #ffffff;
  opacity: 0.85;
}
.post-nav a.post-nav-older, .archive-nav a.post-nav-older {
  padding-left: 32px;
}
.post-nav a.post-nav-older:after, .archive-nav a.post-nav-older:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-right-color: #fff;
  left: 15px;
}
.post-nav a.post-nav-newer, .archive-nav a.post-nav-newer {
  padding-right: 32px;
}
.post-nav a.post-nav-newer:after, .archive-nav a.post-nav-newer:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left-color: #fff;
  right: 15px;
}

@media only screen and (max-width: 585px) {
  .post-nav {
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .post-nav a, .archive-nav a {
    padding: 10px;
  }
}
/* -------------------------------------------------------------------------------- */
/*	Search Form Page
/* -------------------------------------------------------------------------------- */
.search-page {
  margin-top: 15px;
}
.search-page.post {
  margin-bottom: 50px;
}
.search-page p {
  margin-bottom: 20px;
}
.search-page form.searchform {
  position: relative;
}
.search-page form.searchform:hover input#s {
  border: 1px solid #fb8225;
}
.search-page input#s {
  -webkit-appearance: none;
  width: 99%;
  padding: 10px 95px 10px 14px;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-right: none;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
}
.search-page input#s:focus, .search-page input#s:active {
  outline: none;
  border: 1px solid #fb8225;
}
.search-page #searchsubmit {
  -webkit-appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  line-height: 1;
  border: none;
  background: #fb8225;
  border: 1px solid #fb8225;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  height: 100%;
  border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
}
.search-page #searchsubmit:hover, .search-page #searchsubmit:active {
  cursor: pointer;
  background: #db4419;
  border: 1px solid #db4419;
  outline: none;
}

@media only screen and (max-width: 585px) {
  .search-page.post {
    margin-bottom: 20px;
  }
}
/* -------------------------------------------------------------------------------- */
/*	Post/Content Page
/* -------------------------------------------------------------------------------- */
.post-title {
  font-size: 2.5rem;
  color: #fb8225;
  margin-bottom: 10px;
}

.post-header {
  max-width: 720px;
  margin: 0 auto;
}
.post-header .tagline h3 {
  font-family: "PT Serif", serif;
  font-size: 1.05rem;
  line-height: 1.35em;
  font-weight: 300;
  margin-bottom: 15px;
}
.post-header .byline {
  margin-bottom: 12px;
}
.post-header .byline .author {
  font-weight: 300;
  margin-right: 20px;
}
.post-header .byline .date {
  color: #A09F9E;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.post-content {
  max-width: 720px;
  margin: 0 auto 50px;
  font-family: "PT Serif", serif;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-family: "Poppins", sans-serif;
  color: #171714;
  margin: 20px 0;
}
.post-content hr {
  width: 100%;
  height: 1px;
  background: #A09F9E;
  margin: 30px auto;
  border: 0;
}
.post-content a:hover {
  text-decoration: none;
}
.post-content img.alignleft, .post-content .alignleft img, .post-content img.aligncenter, .post-content .aligncenter img, .post-content img.alignright, .post-content .alignright img {
  border: none;
}

.featured-media {
  padding-bottom: 35px;
  margin-bottom: 30px;
  border-bottom: 1px solid #A09F9E;
}
.featured-media img {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  margin-bottom: 12px;
}
.featured-media .img-caption {
  color: #A09F9E;
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.35em;
}
.featured-media a {
  display: inline-block;
}
.featured-media a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 585px) {
  .post-header .post-title {
    font-size: 1.5rem;
  }
  .post-header .author {
    font-size: 0.85rem;
  }
  .post-header .date {
    font-size: 0.75rem;
  }
}
.jp-sharing-input-touch .sd-content ul li {
  padding-left: 0 !important;
  padding-right: 4px;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Author Info --------------------------------------- */
.author-row {
  display: flex;
  align-items: center;
}
.author-row .author-image {
  padding-right: 30px;
  flex: 0 0 180px;
}
.author-row .author-image .round-image {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio {
  flex-grow: 1;
  font-size: 1rem;
}
.author-bio a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.author-bio a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 585px) {
  .author-row {
    flex-direction: column;
  }

  .author-image {
    padding-right: 0;
  }
}
/* Related Content --------------------------------------- */
.related-content .flex-grid {
  width: calc(100% + 20px);
  margin-bottom: 15px;
}
.related-content h6 {
  color: #9fafe3;
  text-transform: uppercase;
  font-size: 1rem;
  border-bottom: 2px solid #9fafe3;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
.related-content .article-thumbnail {
  flex: 1;
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 585px) {
  .related-content h6 {
    margin-bottom: 6px;
  }
  .related-content .slick-prev {
    left: 15px;
  }
  .related-content .slick-next {
    right: 15px;
  }
  .related-content .slick-prev, .related-content .slick-next {
    top: 40%;
  }
  .related-content .slick-prev:before,
.related-content .slick-next:before {
    color: #9fafe3;
  }
}
/* Share Buttons --------------------------------------- */
.post-header .sd-content ul li a.sd-button,
.post-content .sd-content ul li a.sd-button {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  border-radius: 0;
  color: #fff !important;
  background: #A09F9E;
  border: none;
  box-shadow: none;
}

/* -------------------------------------------------------------------------------- */
/*	People Archive Page
/* -------------------------------------------------------------------------------- */
.flex-grid .people {
  width: 50%;
  padding: 40px 20px 0 10px;
  display: flex;
  flex-direction: column;
}
.flex-grid .people .author-image {
  text-align: center;
  margin-bottom: 30px;
}
.flex-grid .people .author-image .round-image {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  object-fit: cover;
}
.flex-grid .people .author-bio {
  margin: 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.flex-grid.guest .people {
  width: auto;
  text-align: center;
  justify-content: space-between;
}
.flex-grid.guest .people .author-image {
  margin-bottom: 10px;
}
.flex-grid.guest .people .author-image .round-image {
  height: 150px;
  width: 150px;
}

@media only screen and (max-width: 900px) {
  .flex-grid .people {
    padding: 40px 10px 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .flex-grid .people:after {
    content: "";
    margin-top: 40px;
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .flex-grid .people .author-image {
    text-align: left;
    width: 200px;
    flex: 0 0 210px;
    padding-right: 10px;
    margin-bottom: 0;
  }
  .flex-grid .people .author-image .round-image {
    height: 200px;
    width: 200px;
  }
  .flex-grid .people .author-bio {
    border-bottom: none;
    flex: 1;
  }

  .flex-grid.guest .people {
    flex-direction: column;
    border-bottom: none;
  }
  .flex-grid.guest .people:after {
    content: none;
  }
  .flex-grid.guest .people .author-image {
    width: auto;
    flex: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 700px) {
  .flex-grid .people {
    padding: 40px 20px 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .flex-grid .people .author-image {
    text-align: left;
    width: 200px;
    padding-right: 0;
    margin-bottom: 12px;
  }
  .flex-grid .people .author-image .round-image {
    height: 200px;
    width: 200px;
  }
  .flex-grid .people .author-bio {
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
  }
}
/* -------------------------------------------------------------------------------- */
/*	People Single Page
/* -------------------------------------------------------------------------------- */
.author_row {
  display: flex;
  padding-bottom: 45px;
}
.author_row .author-image {
  height: 250px;
  width: 250px;
  padding-right: 40px;
  flex: 0 0 290px;
  overflow: hidden;
}
.author_row .author-image .round-image {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.author_row h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h4.people-work {
  font-size: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 40px 0 20px;
}

@media only screen and (max-width: 750px) {
  .author_row {
    flex-direction: column;
  }
  .author_row .author-image {
    padding-right: 0;
    flex: 0 0 250px;
    margin: 0 auto 40px;
  }
  .author_row .post-content {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 750px) {
  .author_row .author-image {
    margin-top: 25px;
  }
}
/* -------------------------------------------------------------------------------- */
/*	Get Involved Form
/* -------------------------------------------------------------------------------- */
.post-content form {
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  /* error messages */
}
.post-content form.wpcf7-form {
  background-color: #EDF0F9;
  padding: 30px 30px 15px;
}
.post-content form p {
  font-weight: 600;
  color: #7385D6;
  margin-bottom: 15px;
}
.post-content form h3 {
  margin: -30px -30px 30px;
  padding: 15px 30px;
  background-color: #9fafe3;
  color: white;
  font-size: 1rem;
}
.post-content form label.text {
  color: #7385D6;
  font-weight: 600;
  position: relative;
}
.post-content form label.text .wpcf7-form-control-wrap.your-name,
.post-content form label.text .wpcf7-form-control-wrap.your-email {
  display: block;
}
.post-content form label.text input {
  border: none;
  padding: 7px 10px;
  background-color: #FFFFFF;
  color: #7385D6;
  font-size: 0.95rem;
  border: 1px solid #9fafe3;
  max-width: 100%;
  display: block;
}
.post-content form label.text input:focus {
  outline: none;
  border: 1px solid #7385D6;
}
.post-content form label.text input:-webkit-autofill, .post-content form label.text input:-webkit-autofill:hover, .post-content form label.text input:-webkit-autofill:focus, .post-content form label.text input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FFFFFF inset !important;
  -webkit-text-fill-color: #7385D6 !important;
}
.post-content form label.textarea {
  color: #7385D6;
  font-weight: 600;
}
.post-content form label.textarea textarea {
  width: 100%;
  margin-top: 16px;
  padding: 8px 10px;
  font-size: 0.95rem;
  border: 1px solid #9fafe3;
}
.post-content form label.textarea textarea:focus {
  outline: none;
  border: 1px solid #7385D6;
}
.post-content form .wpcf7-form-control-wrap.your-interests {
  bottom: 8px;
}

.post-content form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  font-size: 0.95rem;
  margin: 0 0 8px 0;
}
.post-content form .wpcf7-checkbox .wpcf7-list-item label {
  position: relative;
}
.post-content form .wpcf7-checkbox .wpcf7-list-item label:hover {
  cursor: pointer;
}
.post-content form .wpcf7-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  visibility: hidden;
}
.post-content form .wpcf7-checkbox input + span:before {
  content: "";
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 12px;
  border: 2px solid #9fafe3;
  background-color: #EDF0F9;
}
.post-content form .wpcf7-checkbox .wpcf7-list-item-label {
  margin-left: 34px;
}
.post-content form .wpcf7-checkbox input:checked + span:before {
  background-color: #9fafe3;
}
.post-content form .wpcf7-checkbox input + span:after {
  content: "";
  position: absolute;
  display: none;
}
.post-content form .wpcf7-checkbox input:checked + span:after {
  display: block;
}
.post-content form .wpcf7-checkbox input + span:after {
  visibility: visible;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.post-content form .wpcf7-submit {
  background-color: #fb8225;
  border-radius: 0;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px 50px;
  cursor: pointer;
  margin-top: 20px;
}
.post-content form .wpcf7-submit:hover, .post-content form .wpcf7-submit:focus {
  outline: none;
  background-color: #db4419;
}
.post-content form span.wpcf7-not-valid-tip {
  color: white;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: #db4419;
  display: inline-block;
  padding: 0px 5px;
  margin-top: 5px;
}
.post-content form .wpcf7-response-output {
  margin: 0;
  padding: 7px 10px;
  border: none;
  background-color: #9fafe3;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

/* -------------------------------------------------------------------------------- */
/*	Footer
/* -------------------------------------------------------------------------------- */
/* Signup form --------------------------------------- */
.signup-form {
  width: 1040px;
  max-width: 86%;
  margin: 0 auto 60px;
  border-top: 2px solid #9fafe3;
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.signup-form.open {
  height: 50px;
}
.signup-form #mc_embed_signup_scroll {
  display: flex;
}
.signup-form .mc-field-group {
  flex: 1;
  position: relative;
}
.signup-form .mc-field-group input {
  height: 50px;
  width: 100%;
  border: none;
  background-color: #EDF0F9;
  border-right: 1px solid #9fafe3;
  padding: 18px 10px 7px;
  color: #5c6896;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
}
.signup-form .mc-field-group input::placeholder {
  color: #9fafe3;
}
.signup-form .mc-field-group input:-webkit-autofill, .signup-form .mc-field-group input:-webkit-autofill:hover, .signup-form .mc-field-group input:-webkit-autofill:focus, .signup-form .mc-field-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #EDF0F9 inset !important;
  -webkit-text-fill-color: #5c6896 !important;
}
.signup-form .mc-field-group input:focus, .signup-form .mc-field-group input:active {
  outline: none;
}
.signup-form .submit {
  flex: 0 0 250px;
}
.signup-form input[type=submit] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: #b0b9de;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.signup-form input[type=submit]:hover {
  cursor: pointer;
  background-color: #9fafe3;
}
.signup-form input[type=submit]:focus, .signup-form input[type=submit]:active {
  outline: none;
  background-color: #9fafe3;
}
.signup-form label {
  position: absolute;
  top: 5px;
  left: 10px;
  color: #9fafe3;
  font-size: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

@media only screen and (max-width: 900px) {
  .signup-form .submit {
    flex: 0 0 175px;
  }
}
@media only screen and (max-width: 700px) {
  .signup-form.open {
    height: 152px;
  }
  .signup-form #mc_embed_signup_scroll {
    flex-direction: column;
  }
  .signup-form .mc-field-group input {
    border-right: none;
    border-bottom: 1px solid #9fafe3;
  }
  .signup-form .submit {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 585px) {
  .signup-form {
    margin: 0 auto 40px;
  }
}
/* Actual footer --------------------------------------- */
.footer.section {
  padding: 0;
  margin-top: 0;
}

.footer-inner {
  padding: 0 0 60px;
  height: 180px;
  display: flex;
  justify-content: space-between;
}
.footer-inner a {
  color: #000;
}
.footer-inner .footer-logo img {
  height: 120px;
}
.footer-inner button[type=subscribe] {
  padding: 13px 21px;
  border-radius: 25px;
  background-color: #b0b9de;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 20px;
}
.footer-inner button[type=subscribe]:hover {
  background-color: #9fafe3;
}
.footer-inner button[type=subscribe]:focus, .footer-inner button[type=subscribe]:active {
  outline: none;
}
.footer-inner .footer-social-links a .fa {
  margin-left: 20px;
  font-size: 20px;
}
.footer-inner .searchform {
  display: inline-block;
  font-size: 0;
  width: 100%;
}
.footer-inner .searchform input#s {
  height: 32px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 0 32px 0 10px;
  font-size: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.footer-inner .searchform input#s:-webkit-autofill, .footer-inner .searchform input#s:-webkit-autofill:hover, .footer-inner .searchform input#s:-webkit-autofill:focus, .footer-inner .searchform input#s:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
}
.footer-inner .searchform:hover input#s,
.footer-inner .searchform input#s:focus {
  outline: none;
  border-color: #fb8225;
}
.footer-inner .searchform:hover button[type=submit] {
  color: #fb8225;
}
.footer-inner .searchform button[type=submit] {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
  cursor: pointer;
  height: 30px;
  width: 28px;
  font-size: 16px;
  border-radius: 0 16px 16px 0;
  text-align: center;
  margin-left: -32px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer-inner .searchform button[type=submit]:hover, .footer-inner .searchform button[type=submit]:focus {
  outline: none;
  color: #fb8225;
}
.footer-inner .footer-right {
  text-align: right;
}
.footer-inner .footer-right p {
  text-align: right;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 15px 0;
}
.footer-inner .footer-right .footer-copyright {
  margin: 0;
  font-weight: 300;
  font-size: 0.75rem;
}

@media only screen and (min-width: 586px) and (max-width: 700px) {
  .footer-inner .footer-social-links a .fa {
    margin-left: 15px;
    font-size: 18px;
  }
  .footer-inner button[type=subscribe] {
    padding: 10px 13px;
    font-size: 0.75rem;
  }
  .footer-inner .searchform input#s {
    font-size: 0.65rem;
  }
  .footer-inner .footer-right p {
    font-size: 0.75rem;
  }
  .footer-inner .footer-right .footer-copyright {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 585px) {
  .footer-inner {
    padding: 0 0 40px;
    height: auto;
    flex-direction: column;
  }
  .footer-inner .footer-logo, .footer-inner .footer-left, .footer-inner .footer-right {
    width: 230px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-inner .footer-logo p, .footer-inner .footer-left p, .footer-inner .footer-right p {
    text-align: center;
    font-size: 0.85rem;
  }
  .footer-inner .footer-left {
    display: flex;
    flex-direction: column;
  }
  .footer-inner .footer-left button[type=subscribe] {
    order: 1;
    padding: 11px 18px;
    width: 230px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  .footer-inner .footer-social-links {
    margin-bottom: 15px;
  }
  .footer-inner .footer-social-links a:first-child .fa {
    margin-left: 0;
  }
  .footer-inner .footer-logo {
    order: -1;
    max-height: 100px;
    margin-bottom: 40px;
  }
  .footer-inner .footer-logo img {
    height: 100px;
  }
  .footer-inner .footer-right p {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
