/* Category Main Offer */
.category-container {
  width: 100%;
}

.category-box {
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #468966;
  padding: 0 4em;
}

.category-box:nth-child(even) {
  border-bottom: 2px solid #ffb03b;
}

.category-image {
  align-self: flex-end;
  width: 400px;
  height: auto;
}

.category-image img {
  display: block;
  padding-top: 3em;
  width: 100%;
}

.category-container .category-box:nth-child(odd) .category-forward {
  border-right: 3px solid #ffb03b;
  padding-right: 1em;
}

.category-container .category-box:nth-child(even) .category-forward {
  border-left: 3px solid #ffb03b;
  padding-left: 1em;
}

.category-box .category-forward {
  font-size: 2em;
  font-weight: lighter;
}

.category-box .category-forward p {
  color: #468966;
  font-weight: bold;
}

.category-box .category-forward a {
  text-decoration: underline;
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -ms-transition: all 0.1s;
}

.category-box .category-forward a:hover {
  color: #ff952d;
}

.category-box:nth-child(odd) .category-forward p {
  float: right;
  clear: right;
}

.category-box:nth-child(odd) .category-forward a {
  float: right;
  clear: right;
}

.category-box:nth-child(even) .category-forward p {
  float: left;
  clear: left;
}

.category-box:nth-child(even) .category-forward a {
  float: left;
  clear: left;
}

.category-box:nth-child(even) .category-image {
  order: 2;
}

#categories-3 h2::after {
  position: absolute;
  bottom: -1.3em;
  left: 0.2em;
  display: block;
  content: "Oferta:";
  font-weight: bold;
  font-size: 0.8em;
  width: 10px;
  height: 10px;
  color: #468966;
}

#categories-3 h2 {
  position: relative;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.55em;
  letter-spacing: 0;
  width: 470px;
  padding: 0.35em 0.5em;
  color: #fff;
  line-height: 1.2em;
  background-color: #ffb03b;
  margin-bottom: 2.5em;
}

#categories-3 ul {
  list-style: none;
  margin-left: 1em;
}

#categories-3 ul li a:hover {
  color: #ffb03b;
}

#categories-3 ul li::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #468966;
  border-radius: 5px;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
}

@media screen and (max-width: 1280px) {
  .category-box .category-forward {
    font-size: 1.8em;
  }

  .category-image {
    width: 380px;
    height: auto;
  }
  
  #categories-3 h2 {
    font-size: 1.4em;
    letter-spacing: 0;
    line-height: 30px;
    width: 380px;
  }
}

@media screen and (max-width: 1080px) {
  .category-box .category-forward {
    font-size: 1.6em;
  }

  .category-image {
    width: 340px;
    height: auto;
  }
  
  #categories-3 h2 {
    font-size: 1.3em;
    width: 360px;
  }
}

@media screen and (max-width: 980px) {
  .category-box {
    padding: 0 2em;
  }

  .category-box .category-forward {
    font-size: 1.7em;
  }

  .category-image {
    width: 320px;
  }
  
  #categories-3 h2 {
    font-size: 1.8em;
    width: 500px;
  }
}

@media screen and (max-width: 736px) {
  .category-box {
    flex-direction: column;
	align-items: start;
    padding: 0 1em;
  }

  .category-image {
    width: 320px;
    align-self: center;
  }

  .category-box:nth-child(odd) .category-image {
    order: 2;
  }

  .category-box .category-forward {
	margin: 1em 0 .5em 0;
    font-size: 1.6em;
    text-align: left;
  }
  
  .category-image img{
	padding-top: 1em;
  }

  .category-box .category-forward p {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: 1.25em;
	margin-bottom: 5px;
  }

  .category-box .category-forward p:before {
    content: "";
    background-color: #ffb03b;
    position: absolute;
    width: 4px;
    height: 32px;
    left: -0.4em;
    top: 5px;
    bottom: 10px;
  }

  .category-box .category-forward a {
    display: block;
  }

  .category-box:nth-child(odd) .category-forward p,
  .category-box:nth-child(odd) .category-forward a,
  .category-box:nth-child(even) .category-forward p,
  .category-box:nth-child(even) .category-forward a {
    float: none;
    clear: none;
    text-align: center;
  }

  .category-container .category-box:nth-child(odd) .category-forward {
    border-right: 0;
    padding: 0;
  }

  .category-container .category-box:nth-child(even) .category-forward {
    border-left: 0;
    padding: 0;
  }
  
  #categories-3 h2 {
    font-size: 1.6em;
    padding: 0.4em 0.6em;
    width: 450px;
  }
}

@media screen and (max-width: 480px) {
  #categories-3 h2 {
    font-size: 1.45em;
    width: 100%;
  }
}