@import url(colors.css);
/* 
**  Featured items 
*/
.oeg-featured-block {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  gap: 0.5rem;
  grid-auto-rows: min-content;
}
@media (min-width: 56rem) {
  .oeg-featured-block.two-items {
    grid-template-rows: repeat(1, minmax(0, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .oeg-featured-block.three-items {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.oeg-featured-block .featured-block-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.oeg-featured-block a.featured-item {
  background-color: transparent;
  border: none !important;
  background-image: none;
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: 1s all;
  overflow: hidden;
  justify-self: stretch;
}
@media (min-width: 56rem) {
  .oeg-featured-block a.featured-item {
    grid-column: auto;
    grid-row: auto;
  }
  .oeg-featured-block a.featured-item.item-1 {
    grid-row: span 2/span 2;
    grid-column: span 2/span 2;
  }
}
.oeg-featured-block a.featured-item img {
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: transform 500ms;
  will-change: transform;
  transform: scale(1);
}
.oeg-featured-block a.featured-item:hover img {
  transform: scale(1.075);
  transition: transform 500ms;
}
.oeg-featured-block a.featured-item:not(.item-1) .title {
  font-size: 0.9rem;
  bottom: 0.5rem;
}
.oeg-featured-block a.featured-item .title {
  background-color: white;
  z-index: 1;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #1c2b5a;
  line-height: 1.2;
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-color: #cfdefc;
  max-width: 90%;
  margin: 0;
}
.oeg-featured-block a.featured-item:hover .title {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  --border-opacity: 1;
  border-color: #3b80f7;
  border-color: rgba(59, 128, 247, var(--border-opacity));
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.oeg-featured-block a.featured-item:hover .title, .oeg-featured-block a.featured-item:active .title {
  background-color: #0d59f2;
  color: #cfdefc;
}

/* -----------------------------
**
**  Hero 
**
--------------------------------*/
.oeg_hero {
  height: auto;
  overflow-y: auto;
  margin-bottom: 4rem;
  background-size: cover;
  background-position: top center;
  min-height: 8em;
  font-family: Montserrat, sans-serif;
}
.oeg_hero.oeg_full {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media screen and (min-width: 640px) {
  .oeg_hero.oeg_full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.oeg_hero .media-box {
  margin: 3em 0;
  background: rgba(28, 43, 90, 0.8);
  padding: 1em;
  width: 100%;
}
.oeg_hero .media-box h2.hero-title {
  color: #e6e6e6;
  margin-top: 0;
}
.oeg_hero .media-box .hero-desc p {
  color: #e6e6e6;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
}
.oeg_hero .media-box a.hero-link {
  /* Auto Layout */
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: #ffffff;
  color: #333333;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5em;
}
.oeg_hero .media-box a.hero-link:hover {
  opacity: 0.8;
}
.oeg_hero .media-box a.hero-link svg {
  margin-left: 0.5rem;
}
@media screen and (min-width: 640px) {
  .oeg_hero .media-box {
    padding: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .oeg_hero .media-box {
    margin: 3em 0;
    max-width: 720px;
    margin-left: 10%;
  }
}

/* ------------------------------------------------------/
**  People grid
**
**  Transitions based on @JoshWComeau 
**  https://www.joshwcomeau.com/animation/css-transitions/
**
/-------------------------------------------------------*/
.peoplegrid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 100%;
  margin: 1rem 0;
}
.peoplegrid a {
  text-decoration: none;
  color: inherit;
}
.peoplegrid a:hover, .peoplegrid a:focus {
  border: none;
  text-decoration: none;
  background-image: none;
  background-color: transparent;
  width: auto;
}
.peoplegrid .card {
  width: 100%;
  margin: 0.5rem auto;
}
.peoplegrid .card p {
  margin: 0;
}
.peoplegrid .card .line1,
.peoplegrid .card .line2,
.peoplegrid .card .line3 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  text-align: center;
  margin-bottom: 0.25rem;
}
.peoplegrid .card .line1 {
  font-size: 0.9rem;
  font-weight: bold;
}
.peoplegrid .card .line2 {
  font-size: 0.75rem;
}
.peoplegrid .card .line3 {
  font-size: 0.65rem;
  font-style: italic;
}
.peoplegrid .card:hover .pic img {
  transform: translate(-8px, -8px);
  transition: transform 125ms;
}
@media screen and (min-width: 440px) {
  .peoplegrid .card {
    width: 48%;
    margin: 0.5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .peoplegrid .card {
    width: 240px;
  }
}
@media screen and (min-width: 1280px) {
  .peoplegrid .card {
    width: 290px;
  }
}
.peoplegrid .pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: visible;
  margin: 0 auto 0.5rem;
  position: relative;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTkuMSAoODYxNDQpIC0gaHR0cHM6Ly9za2V0Y2guY29tIC0tPgogICAgPHRpdGxlPmxpbmVzLXBhdHRlcm48L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0ibGluZXMtcGF0dGVybiIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CiAgICAgICAgPGxpbmUgeDE9IjAiIHkxPSIxIiB4Mj0iOCIgeTI9IjkiIGlkPSJMaW5lIiBzdHJva2U9IiMzNjM2MzYiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9saW5lPgogICAgICAgIDxsaW5lIHgxPSIxIiB5MT0iLTIiIHgyPSI5IiB5Mj0iNiIgaWQ9IkxpbmUiIHN0cm9rZT0iIzM2MzYzNiIgZmlsbC1ydWxlPSJub256ZXJvIj48L2xpbmU+CiAgICAgICAgPGxpbmUgeDE9IjAiIHkxPSI1IiB4Mj0iNCIgeTI9IjkiIGlkPSJMaW5lIiBzdHJva2U9IiMzNjM2MzYiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9saW5lPgogICAgICAgIDxsaW5lIHgxPSI2IiB5MT0iLTEiIHgyPSIxMCIgeTI9IjMiIGlkPSJMaW5lIiBzdHJva2U9IiMzNjM2MzYiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9saW5lPgogICAgPC9nPgo8L3N2Zz4=) repeat;
}
.peoplegrid .pic img {
  object-fit: cover;
  width: 100%;
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: transform 500ms;
  will-change: transform;
}
@media screen and (min-width: 440px) {
  .peoplegrid {
    justify-content: flex-start;
  }
}

/*----------------------
**
**  Post LIst
**
/------------------------*/
.postlist {
  margin: 1em 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}
.postlist .title {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0.15rem 0;
  font-size: 1.15rem;
  text-decoration: none;
}
.postlist .title a {
  text-decoration: none;
  color: currentColor;
}
.postlist .title a:hover {
  color: var(--color-brand-blue-500);
}
.postlist .excerpt {
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--color-gray-600);
}
.postlist .date,
.postlist .meta,
.postlist .country {
  font-size: 0.75rem;
  color: var(--color-gray-400);
}
.postlist .grid {
  display: grid;
  -ms-grid-columns: repeat(1, minmax(auto, 1fr));
  grid-template-columns: repeat(1, minmax(auto, 1fr));
  gap: 1rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .postlist .grid {
    -ms-grid-columns: repeat(auto-fill, minmax(20rem, 1fr));
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }
}
.postlist .grid .card {
  padding: 0;
  width: 100%;
}
.postlist .grid .card img {
  width: 100%;
  height: 188px;
}
.postlist .list .card {
  width: 100%;
  margin-bottom: 1rem;
}
.postlist .list .card.post-item-block {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border: 0;
  background-image: none;
}
.postlist .list .card.post-item-block .post-pic {
  flex: 0 1 25%;
}
.postlist .list .card.post-item-block .post-pic img {
  width: 100%;
  height: 100%;
}
.postlist .list .card.post-item-block .inner-card {
  flex: 0 1 75%;
}
.postlist .list .card.post-item-block .inner-card .title {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .postlist .list .card.post-item-block .inner-card .title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.postlist .card {
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.postlist .card .post-pic {
  overflow: hidden;
}
.postlist .card .post-pic img {
  object-fit: cover;
  transition: transform 500ms;
  will-change: transform;
  transform: scale(1);
}
.postlist .card .post-pic img:hover {
  transform: scale(1.05);
  transition: transform 500ms;
}

/*-------------------------
**
**  Global styles
**
/----------------------------*/
.card {
  border-radius: 0.25rem;
  overflow: hidden;
  background: #ffffff;
}
.card .inner-card {
  padding: 2rem 1rem;
}
.card:active {
  border-color: var(--color-brand-blue-400);
}

.cats {
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  /* gray/gray-800 */
  color: #333333;
  display: flex;
}
.cats span {
  display: inline-flex;
  margin-right: 0.5rem;
  color: #333333;
  text-decoration: none;
  background-image: none;
}

/**-------------------------------/
**
**  Playlist
**  Styles and Code by RicardoGeek at https://jsfiddle.net/RicardoGeek/tn4mgrv7/103/
**
--------------------------------**/
.oegplaylist {
  margin-bottom: 1rem;
  overflow: visible;
  padding: 2rem 1rem;
}
.oegplaylist audio {
  width: 100%;
  margin-bottom: 1em;
  list-style: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.oegplaylist ul {
  margin: 0;
  padding: 0;
}
.oegplaylist a {
  text-decoration: none;
  display: block;
  background-image: none;
}
.oegplaylist a:hover {
  background-image: none;
}
.oegplaylist .active a {
  color: #0d59f2;
  font-weight: bold;
}
.oegplaylist li {
  list-style: none;
  padding: 0.25rem 0.5rem;
  margin: 0;
}

/* Testimonials */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.testimonial-slider {
  position: relative;
  width: 100%;
  padding: 1em 0 1.5em;
  /* Slides */
  /* next & previous buttons */
  /* position the "next button" to the right */
  /* on hover, add a black bg color with a little bit see-through */
  /* the dots/bullets/indicators */
  /* add bg color to the active dot/circle */
}
.testimonial-slider .ts-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider .mySlides {
  display: none;
  padding: 1rem 1.25rem 0 1.25rem;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .testimonial-slider .mySlides {
    padding: 2rem 2rem 0 2rem;
  }
}
.testimonial-slider .mySlides.active_slide {
  display: block;
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}
.testimonial-slider .mySlidesContainer {
  min-height: 5rem;
  padding: 0 0 2rem;
}
.testimonial-slider .prev,
.testimonial-slider .next {
  cursor: pointer;
  position: absolute;
  top: 55%;
  margin-left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -1.875rem;
  line-height: 1rem;
  padding: 0.25rem;
  color: var(--color-blue-700);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  user-select: none;
  transition: 0.4s;
  background-image: none;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 640px) {
  .testimonial-slider .prev,
.testimonial-slider .next {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    padding: 1rem;
  }
}
.testimonial-slider .next {
  position: absolute;
  right: 0;
  margin-right: 0.5rem;
}
.testimonial-slider .prev:hover,
.testimonial-slider .next:hover {
  background-color: rgba(244, 244, 244, 0.8);
  background-image: none;
}
.testimonial-slider .dot-container {
  margin: 0 auto;
  text-align: center;
}
.testimonial-slider .dot {
  height: 0.5rem;
  width: 0.5rem;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}
.testimonial-slider blockquote {
  margin-top: 0;
}
.testimonial-slider blockquote p {
  font-size: 1rem;
  padding: 0;
  margin-bottom: 0;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
@media screen and (min-width: 640px) {
  .testimonial-slider blockquote p {
    font-size: 1.35rem;
  }
}
.testimonial-slider blockquote p::after {
  content: "";
  display: none;
}
.testimonial-slider p.info,
.testimonial-slider p.author {
  max-width: 80%;
  margin: 0 auto;
}
.testimonial-slider img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 1em;
}

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