/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.card {
  --bs-card-spacer-y: 1em;
  --bs-card-spacer-x: 1em;
  --bs-card-title-spacer-y: 0.5em;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5em;
  --bs-card-cap-padding-x: 1em;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1em;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 641px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.banner {
  background-color: #343131;
  position: relative;
  padding: 140px 0 80px 0; }
  @media (min-width: 769px) {
    .banner {
      padding: 140px 0 120px 0; } }
  @media (min-width: 1025px) {
    .banner {
      max-height: 540px; } }
  @media (min-width: 1141px) {
    .banner {
      padding: 160px 0 140px 0; } }
  @media (min-width: 1337px) {
    .banner {
      padding: 220px 0 180px 0; } }
  .banner .content {
    z-index: 9; }
    .banner .content h1 {
      color: white;
      margin-bottom: 1rem; }
    .banner .content .h3 {
      color: #eeeff0; }
  .banner .img-area {
    display: none;
    overflow: hidden; }
    @media (min-width: 769px) {
      .banner .img-area {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 33%;
        top: 0; } }
    .banner .img-area .banner-img {
      height: 100% !important;
      width: 100% !important;
      max-height: 100% !important;
      max-width: 100% !important;
      object-fit: contain;
      object-position: right bottom; }
  .banner #breadcrumb {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(38, 37, 37, 0.34); }
    .banner #breadcrumb p {
      margin: 0 !important;
      padding: 10px 0 10px 0;
      color: #7b7c80;
      font-size: 14px;
      font-family: "Formata-Regular";
      font-weight: 400; }
      .banner #breadcrumb p a {
        color: #7b7c80; }
        .banner #breadcrumb p a:hover {
          color: #ffc729; }
      .banner #breadcrumb p .separator {
        margin: 0 5px;
        color: #ffc729; }

.latest-post .entry-meta {
  color: #7b7c80;
  margin-bottom: 1rem;
  font-size: 16px; }
  .latest-post .entry-meta .posted-on {
    display: block; }
  .latest-post .entry-meta .sep {
    width: 6px;
    height: 6px;
    background-color: #ffc729;
    border-radius: 50%;
    margin: 7px 8px 5px 8px; }

.latest-post h2 {
  line-height: 1.1; }

.latest-post .feature-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block; }
  .latest-post .feature-img .img {
    filter: grayscale(100%);
    transition: all 0.2s linear; }
  .latest-post .feature-img:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent linear-gradient(237deg, #111111 0%, #606060 100%) 0% 0% no-repeat padding-box;
    opacity: 0.59;
    transition: all 0.2s linear; }
  .latest-post .feature-img:hover .img {
    transform: scale(1.05, 1.05);
    transition: all 0.2s linear;
    filter: grayscale(0); }
  .latest-post .feature-img:hover:after {
    opacity: 0; }

.card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #00000029; }
  .card .img-wrap {
    height: 285px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    display: block; }
    .card .img-wrap picture,
    .card .img-wrap img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 285px;
      max-width: 100% !important;
      transition: all 0.2s linear;
      filter: grayscale(100%); }
    .card .img-wrap:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: transparent linear-gradient(237deg, #111111 0%, #606060 100%) 0% 0% no-repeat padding-box;
      opacity: 0.59;
      transition: all 0.2s linear; }
    .card .img-wrap:hover picture,
    .card .img-wrap:hover img {
      transform: scale(1.05, 1.05);
      transition: all 0.2s linear;
      filter: grayscale(0); }
    .card .img-wrap:hover:after {
      opacity: 0; }
  .card .card-body {
    padding: 2rem 1.5rem 3rem 1.5rem;
    background-color: white;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column; }
    .card .card-body .entry-meta {
      color: #7b7c80;
      margin-bottom: 1rem;
      font-size: 16px; }
      .card .card-body .entry-meta .posted-on {
        display: block; }
      .card .card-body .entry-meta .sep {
        width: 6px;
        height: 6px;
        background-color: #ffc729;
        border-radius: 50%;
        margin: 7px 8px 5px 8px; }
    .card .card-body .card-title {
      margin: 0 0 1.5rem 0;
      font-size: 24px;
      line-height: 1.2; }
      .card .card-body .card-title a {
        color: #111111; }
        .card .card-body .card-title a:hover {
          color: #ffc729; }
    .card .card-body .btn-arrow {
      margin-top: auto; }

/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
#post-navigation .nav-links {
  display: flex;
  justify-content: center; }
  #post-navigation .nav-links span,
  #post-navigation .nav-links a {
    font-family: "Formata-Regular";
    font-size: 20px;
    font-weight: 400;
    padding: 0 10px;
    text-decoration: none;
    margin-right: 0;
    border-radius: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b7c80;
    line-height: 1; }
    #post-navigation .nav-links span.current,
    #post-navigation .nav-links a.current {
      color: #ffc729; }
    #post-navigation .nav-links span:hover,
    #post-navigation .nav-links a:hover {
      text-decoration: none;
      color: #ffc729; }
  #post-navigation .nav-links .prev {
    padding: 0 10px;
    position: relative;
    color: #7b7c80;
    background-color: transparent; }
    #post-navigation .nav-links .prev i {
      font-size: 20px; }
  #post-navigation .nav-links .next {
    padding: 0 10px;
    position: relative;
    color: #7b7c80;
    background-color: transparent; }
    #post-navigation .nav-links .next i {
      font-size: 20px; }
  #post-navigation .nav-links a span {
    padding: 0;
    display: none; }
  #post-navigation .nav-links a i {
    line-height: 1.5 !important;
    font-size: 24px;
    font-weight: 700; }
  #post-navigation .nav-links > :first-child {
    border-radius: 5px 0 0 5px; }
  #post-navigation .nav-links > :last-child {
    border-radius: 0 5px 5px 0; }
