.home-category {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141414;
  z-index: 10;
}

.home-category .img {
  width: 100%;
  height: 180px;
  position: relative;
  display: block;
}

.home-category .img svg {
  display: block;
  height: 5rem;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.home-category .img .line {
  fill: none;
  stroke: #999;
  stroke-miterlimit: 10;
}

.home-category .img .path {
  fill: #999;
}

.home-category .label {
  text-align: center;
  font-size: 1rem;
  color: #cccccc;
  display: block;
  padding: 0 1rem;
  line-height: 1.4;
}

.home-category ul {
  width: 100%;
  border-bottom: 1px solid #333;
  margin-bottom: -1px;
  background: #141414;
  font-size:0;
}

.home-category ul li {
  position: relative;
  display:inline-block;
  width:25%;
  vertical-align:top;
}

.home-category ul li:before {
  width: 1px;
  height: 62px;
  background: #333;
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-category ul li:last-child:before {
  content: none;
}

.home-category ul li a {
  display: block;
  height: 240px;
  position: relative;
  margin-left: -1px;
  width: auto;
}

.home-category ul li a:after {
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #007acd;
  content: '';
}

.no-mobile .home-category ul li a:hover {
  background: #000;
  z-index: 3;
}

.no-mobile .home-category ul li a:hover:before {
  display: none;
}

.no-mobile .home-category ul li a:hover:after {
  width: 100%;
}

.home-category .img .line,
.home-category .img .path {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.home-category li a {
  -webkit-transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.home-category li a:after {
  -webkit-transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.home-category .label {
  -webkit-transition: color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: color 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 1280px) {
  .home-category .row,
  .home-category .row .col {
    padding: 0;
  }
  .home-category ul li a {
    height: 220px;
  }
  .home-category .img {
    height: 160px;
  }
  .home-category .img svg {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  .home-category .label {
    font-size: 15px;
  }
}

@media screen and (max-width: 1080px) {

  .home-category ul {
    flex-wrap: wrap;
  }
  .home-category ul li {
    flex: 1 1 33.33333%;
  }
  .home-category ul li {
    border-bottom: 1px solid #333;
  }
  .home-category ul li a {
    height: 200px;
  }
  .home-category .img {
    height: 150px;
  }
}

@media screen and (max-width: 766px) {
  .home-category {

    height:120px;
  }
  .home-category ul li {
    width:50%;
  }
  .home-category ul li a {
    height: 160px;
  }
  .home-category .img {
    height: 120px;
  }
  .home-category .img svg {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    -o-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
  }
  .home-category .label {
    font-size: .9rem;
  }
}

@media screen and (max-width: 480px) {
  .home-category {
    height: 120px;
  }
  .home-category ul li a {
    height: 120px;
  }
  .home-category ul li:before {
    height: 100%;
  }
  .home-category .img {
    height: 90px;
  }
  .home-category .img svg {
    -webkit-transform: translate(-50%, -50%) scale(0.55);
    -moz-transform: translate(-50%, -50%) scale(0.55);
    -ms-transform: translate(-50%, -50%) scale(0.55);
    -o-transform: translate(-50%, -50%) scale(0.55);
    transform: translate(-50%, -50%) scale(0.55);
  }
  .home-category .label {
    font-size: .78rem;
    padding: 0 1.5rem;
  }
}
