/* 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  :)  */
.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; }

.videos .video .vid-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden; }
  .videos .video .vid-box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(17, 17, 17, 0.59);
    border-radius: 5px;
    z-index: 1; }
  .videos .video .vid-box span {
    position: absolute;
    z-index: 3;
    height: 42px;
    width: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 1px #ffc729; }
    .videos .video .vid-box span i {
      color: white; }
  .videos .video .vid-box:hover span {
    background-color: #ffc729; }

.videos .video .vid-title {
  display: flex;
  justify-content: space-between;
  text-align: right;
  align-items: center; }
  .videos .video .vid-title small {
    font-size: 14px;
    line-height: 1;
    max-width: 260px; }
    @media (min-width: 641px) {
      .videos .video .vid-title small {
        max-width: 100%; } }
  .videos .video .vid-title span {
    border: solid 1px #ffc729;
    flex: 1 1 auto;
    margin: 0 1rem 0 0;
    height: 1px; }
