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

.product-categories .product-cat-card {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .product-categories .product-cat-card .img-wrap {
    height: 245px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    display: block; }
    .product-categories .product-cat-card .img-wrap picture,
    .product-categories .product-cat-card .img-wrap img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 245px;
      max-width: 100% !important;
      transition: all 0.2s linear; }
    .product-categories .product-cat-card .img-wrap:hover picture,
    .product-categories .product-cat-card .img-wrap:hover img {
      transform: scale(1.05, 1.05);
      transition: all 0.2s linear; }
  .product-categories .product-cat-card .product-cat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 4px solid #eeeff0;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    background-color: white;
    padding: 2rem 1.5rem 1.5rem 1.5rem; }
    .product-categories .product-cat-card .product-cat-content .title {
      margin-bottom: 1.5rem;
      padding-left: 1.25rem;
      border-left: 2px solid #ffc729; }
      .product-categories .product-cat-card .product-cat-content .title h3 {
        color: #ffc729;
        margin-bottom: 5px; }
      .product-categories .product-cat-card .product-cat-content .title h5 {
        color: #111111;
        margin-bottom: 0; }
      .product-categories .product-cat-card .product-cat-content .title:hover h5 {
        color: #ffc729; }
    .product-categories .product-cat-card .product-cat-content .content p {
      font-size: 14px; }
    .product-categories .product-cat-card .product-cat-content .btn-arrow {
      margin-top: auto !important; }
