﻿.categoryGallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0 15px;
  background-color: #fafafa;
  padding-bottom: 30px; }
  @media (max-width: 780px) {
    .categoryGallery {
      padding-bottom: 0;
      padding: 40px 8px 15px; } }
  .categoryGallery a {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 20%;
    display: inline-block; }
    .categoryGallery a:hover {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
      text-decoration: none; }
      .categoryGallery a:hover img {
        -webkit-filter: brightness(50%);
                filter: brightness(50%); }
    @media (max-width: 780px) {
      .categoryGallery a {
        width: calc(29% - 20px); } }
  .categoryGallery__img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.41)), to(rgba(252, 76, 2, 0.33)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.41) 0%, rgba(252, 76, 2, 0.33) 100%);
    margin: 0 auto;
    max-width: 100%; }
    @media (max-width: 780px) {
      .categoryGallery__img {
        height: auto; } }
  .categoryGallery__line {
    width: calc(100% - 15px);
    border-bottom: 4px solid white;
    position: relative;
    bottom: 5px; }
  .categoryGallery__name {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 30px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .categoryGallery__name h2 {
      -webkit-transition: 0.3s;
      transition: 0.3s;
      white-space: nowrap;
      color: #82847F;
      font-size: 18px;
      font-weight: 600;
      padding: 0 5px;
      line-height: 20px;
      margin: 0;
      width: 100%; }
    @media (max-width: 780px) {
      .categoryGallery__name {
        padding: 15px 5px;
        padding-top: 30px;
        width: calc(100% - 10px); }
        .categoryGallery__name h2 {
          font-size: 13px;
          white-space: unset;
          padding: 0 5px;
          min-width: 110px; } }
  .categoryGallery__image {
    border-radius: 10px;
    margin: 15px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    @media (max-width: 780px) {
      .categoryGallery__image {
        margin: 10px 5px; } }
    .categoryGallery__image img {
      -webkit-transition: 0.3s ease-out;
      transition: 0.3s ease-out;
      max-width: 100%; }
