#bg-gallery {
  background-color: #24C3EC;
  border-bottom: 8px solid #FECC1B;
  height: 80vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; }
  @media (max-width: 576px) {
    #bg-gallery {
      height: 240px; } }
  @media (max-width: 768px) {
    #bg-gallery {
      height: 450px; } }

#gallery {
  background-color: #F7FAFD; }
  #gallery .bg-trees {
    position: absolute;
    left: 0;
    bottom: 50%;
    z-index: 100;
    pointer-events: none;
    z-index: 0;
    transform: translateX(-50%); }

#banner {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
  #banner .banner-navigation {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    z-index: 9;
    display: flex;
    justify-content: space-between; }
    #banner .banner-navigation .prev, #banner .banner-navigation .next {
      position: relative;
      cursor: pointer; }
      #banner .banner-navigation .prev:before, #banner .banner-navigation .next:before {
        content: '';
        width: 60px;
        height: 60px;
        border-radius: 100%;
        opacity: 0.2;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #fff;
        transform: translate(-50%, -50%);
        transition: 0.2s ease-out; }
      #banner .banner-navigation .prev:hover:before, #banner .banner-navigation .next:hover:before {
        transition: 0.2s ease-out;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3; }
    #banner .banner-navigation .prev {
      margin-left: -10px; }
    #banner .banner-navigation .next {
      margin-right: -10px; }
  #banner .banner__content {
    z-index: 9; }
  #banner .banner__wrapper {
    height: 75%;
    display: flex; }
  #banner .banner__slider {
    height: 70vh; }
  #banner .banner__caption h1, #banner .banner__caption p {
    margin-bottom: 20px; }
  #banner .banner__wrapper {
    height: 80%; }
  #banner .img-wrapper {
    width: 100%;
    height: 75vh;
    position: relative; }
    #banner .img-wrapper img {
      display: block;
      width: 100%;
      max-width: none;
      height: auto;
      cursor: pointer;
      border: 0;
      position: absolute;
      top: -9999px;
      right: -9999px;
      bottom: -9999px;
      left: -9999px;
      margin: auto;
      -webkit-transform: scale(1) translate(0, 0);
      transform: scale(1) translate(0, 0);
      min-width: 100%;
      min-height: 100%; }
  #banner .banner-foreground {
    position: absolute;
    left: 0;
    top: 140px;
    z-index: 100;
    pointer-events: none; }
  @media (max-width: 768px) {
    #banner {
      height: auto;
      margin-top: 80px; }
      #banner .banner__wrapper, #banner .banner__slider, #banner .img-wrapper {
        height: 500px; }
      #banner .banner-foreground {
        top: 30px;
        width: 150px; } }
  @media (max-width: 576px) {
    #banner .banner__caption h1 {
      font-size: 18px; }
    #banner .banner-foreground {
      top: 40px;
      width: 60px; }
    #banner .img-wrapper {
      height: 300px; }
    #banner .banner__wrapper, #banner .banner__slider {
      height: unset; }
    #banner .slick-active .img-wrapper {
      position: relative; }
      #banner .slick-active .img-wrapper:after {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        left: 0;
        right: 0; }
    #banner .banner-navigation {
      top: 50%; }
      #banner .banner-navigation .next {
        right: 38px; }
      #banner .banner-navigation .prev {
        left: 35px; } }
  @media (max-width: 320px) {
    #banner .banner__wrapper, #banner .banner__slider, #banner .img-wrapper {
      height: 250px; } }

#category {
  position: relative;
  z-index: 9; }
  #category ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 20px; }
    #category ul li a {
      color: black;
      background: white;
      padding: 10px 40px;
      border-radius: 30px;
      margin: 0 10px;
      text-decoration: none;
      transition: 0.2s ease-out; }
      #category ul li a:hover {
        color: #24C3EC;
        background-color: white;
        transition: 0.1s ease-out; }
    #category ul li a.active {
      background-color: #FECC1B;
      color: white;
      font-weight: bold; }
  @media (max-width: 768px) {
    #category {
      display: none;
      position: fixed;
      width: 200px;
      z-index: 9;
      background: #ffff;
      right: 30px;
      bottom: 115px;
      margin: 0;
      border-radius: 10px;
      overflow: auto;
      max-height: 0;
      height: auto;
      transition: 0.2s ease-out; }
      #category ul {
        flex-wrap: wrap;
        justify-content: left;
        background: #ffff;
        padding: 0; }
      #category ul li {
        width: 100%;
        flex: none;
        display: block;
        margin-bottom: 0; }
      #category ul li a {
        padding: 10px 20px;
        margin: 0;
        border-radius: 10px;
        width: 100%;
        display: block;
        color: #000; } }

.floating {
  display: none; }

@media (max-width: 768px) {
  .floating {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    background: #24C3EC;
    box-shadow: 1px 2px 8px #ddd;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    color: #fff; }

  .floating.close-floating i.fa.fa-times {
    display: inline-block; }

  .floating i.fa.fa-times {
    display: none; }

  .floating.close-floating i.fa.fa-filter {
    display: none; } }
#category.opened {
  padding: 20px 0;
  box-shadow: 0 10px 14px #ddd;
  max-height: 400px; }

#products {
  padding: 60px 0; }
  #products a {
    text-decoration: none; }
  #products .products {
    padding: 0 60px;
    display: grid;
    grid-column-gap: 40px;
    grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 576px) {
      #products .products {
        padding: 0 15px;
        display: grid;
        grid-column-gap: 15px;
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 320px) {
      #products .products {
        grid-template-columns: repeat(1, 1fr); } }
  #products .product {
    padding-bottom: 60px;
    position: relative; }
    @media (max-width: 576px) {
      #products .product {
        padding-bottom: 15px; } }
  #products .image-container {
    width: 100%;
    padding-top: 80%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #f1f1f2;
    border-radius: 2px; }
  #products .image-container img {
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    margin: auto;
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
    min-width: 100%;
    min-height: 100%;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    cursor: pointer;
    border: 0;
    transition: 0.2s ease-out; }
  #products .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
    box-shadow: 0px 7px 11px rgba(0, 0, 0, 0.04);
    transition: 0.2s ease-out;
    padding: 20px;
    flex-direction: row;
    margin-top: -10px; }
    #products .card span {
      width: 34px;
      height: 34px;
      border-radius: 100%;
      background: #24C3EC;
      color: #fff;
      font-size: 40px;
      line-height: 34px;
      text-align: center; }
  #products .card .category-link {
    font-size: 10px; }
  #products .card h1 {
    font-size: 15px;
    font-weight: bold;
    color: #313131;
    line-height: 20px;
    margin-bottom: 0; }
  #products .card p {
    color: #5D5D5D;
    font-size: 13px; }
  #products .card .btn.rounded {
    border-radius: 30px !important;
    width: auto;
    margin: auto;
    font-size: 13px;
    font-family: 'Raleway';
    padding: 14px 40px; }
  #products .product:hover > .card span {
    background-color: #FECC1B; }
  #products .product:hover > .image-container img {
    -webkit-transform: scale(1.05) translate(0, 0);
    transform: scale(1.05) translate(0, 0);
    transition: 0.1s ease-out; }
  #products .new-badge {
    position: absolute;
    z-index: 1;
    right: -6px;
    top: -6px; }

/*# sourceMappingURL=gallery.css.map */
