
a:hover {
    text-decoration: none;
  }
  
  .tm-page-cols-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  
  .tm-page-col-left {
    width: 28.56%;
    max-width: 400px;
  }
  
  .tm-page-col-right {
    width: 70%;
    margin-left: auto;
    margin-right: 0;
  }
  
  @media (max-width: 991px) {
    .tm-page-cols-container {
      flex-direction: column;
    }
    .tm-page-col-left {
      width: 100%;
      max-width: 100%;
    }
  
    .tm-page-col-right {
      width: 100%;
    }
  }
  
  .tm-gallery {
    margin: -20px -20px 0;
    max-width: 960px;
  }
  
  .tm-gallery-item {
    width: 29%;
    margin: 2%;
  }
  
  .filters-button-group {
    padding-right: 15px;
  }
  
  .tabs {
    list-style: none;
  }
  
  .tabs > li > a {
    border-radius: 15px;
    color: #fff;
    background-color: #000;
    padding: 20px 25px;
    display: block;
    max-width: 300px;
    margin: 0 auto 30px;
  }
  
  .tm-tab-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: transparent;
    vertical-align: middle;
    margin-right: 20px;
    transition: all 0.3s ease;
  }
  
  .tabs > li > a.active .tm-tab-icon,
  .tabs > li > a:hover .tm-tab-icon {
    background-color: #85bc40;
  }
  
  /* 
    Gallery Item Hover Effect
    https://tympanus.net/codrops/2014/06/19/ideas-for-subtle-hover-effects/
  */
  
  /* Common style */
  .tm-gallery-item figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin-bottom: 0;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
  }
  
  .tm-gallery-item figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* opacity: 0.8; */
  }
  
  .tm-gallery-item figure figcaption {
    padding: 1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .tm-gallery-item figure figcaption::before,
  .tm-gallery-item figure figcaption::after {
    pointer-events: none;
  }
  
  .tm-gallery-item figure figcaption,
  .tm-gallery-item figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Anchor will cover the whole item by default */
  /* For some effects it will show as a button */
  .tm-gallery-item figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
  }
  
  .tm-gallery-item figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
    color: #fff;
  }
  
  .tm-gallery-item figure h2 span {
    font-weight: 800;
  }
  
  .tm-gallery-item figure h2,
  .tm-gallery-item figure p {
    margin: 0;
    color: #fff;
  }
  
  .tm-gallery-item figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
  }
  
  /*---------------*/
  /***** Bubba *****/
  /*---------------*/
  
  figure.effect-bubba {
    background: #85bc40;
  }
  
  figure.effect-bubba img {
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
  }
  
  figure.effect-bubba:hover img {
    opacity: 0.4;
  }
  
  figure.effect-bubba figcaption::before,
  figure.effect-bubba figcaption::after {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
  }
  
  figure.effect-bubba figcaption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  
  figure.effect-bubba figcaption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  
  figure.effect-bubba h2 {
    font-size: 1.5rem;
    padding-top: 20%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  
  figure.effect-bubba p {
    width: 100%;
    padding: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  
  figure.effect-bubba:hover figcaption::before,
  figure.effect-bubba:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  figure.effect-bubba:hover h2,
  figure.effect-bubba:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  @media (max-width: 767px) {
    .tm-gallery {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .tm-gallery-item {
      width: 46%;
    }
  
    .filters-button-group {
      padding-right: 0;
      padding-bottom: 30px;
    }
  }
  
  @media (max-width: 400px) {
    .tm-gallery {
      max-width: 280px;
    }
  
    .tm-gallery-item {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  }