@charset "UTF-8";
.categorymenu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  align-items: stretch;
  justify-content: center;
  list-style: none;
}
.categorymenu li:has(.title) {
  width: 32%;
  margin: 0.5%;
  box-sizing: border-box;
  aspect-ratio: 1.25;
  background-color: #221F20;
  /*background-color: #f8ede9;*/
  /*background-color: #f5f6f7;*/
  transition: all 1.5s ease-out;
  border-radius: 0.9em;
  min-width: 190px;
  line-height: normal;
  /*border: 0.5px solid #979797;*/
  border: 2px solid #ffcb05;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.21);
  padding-left: 0;
}
.categorymenu li:has(.title):hover {
  transition: all 0.3s;
  /* border: 1px solid #FFCC01; */
  border: 2px solid #979797;
  /*background-color: #221F20;*/
  background-color: #333;
}
.categorymenu a {
  display: block;
  position: relative;
  min-height: 100%;
  text-decoration: none;
  box-sizing: border-box;
  padding-bottom: 1.5em;
}
.categorymenu a:hover {
  text-decoration: none;
}
.categorymenu a:after {
  content: " ➔";
  font-size: 2.5em;
  z-index: 3;
  position: absolute;
  bottom: 0.25em;
  right: 0.5em;
  color: #FFCC01;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.categorymenu a:hover:after {
  opacity: 1;
}
.categorymenu li span {
  display: block;
  padding: 1.5em;
}
.categorymenu li .title {
  color: #000;
  font-weight: 700;
/*  background-color: #fff;
	border-color: #fff;*/
  background-color: #ffcb05;
  border-color: #ffcb05;
  border-radius: 0.8em 0.8em 0px 0px;
  padding: 1.2em 1em;
  box-sizing: border-box;
  min-height: 5em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}
.categorymenu li .title:hover {
}
.categorymenu li .desc {
  font-weight: 400;
  /*color: #333;*/
  color: #FFF;
}
.categorymenu li:hover .desc {
  color: #FFF;
}
/* icons  */
.categorymenu li .title i {
  font-size: 1.95em;
  display: block;
  height: 100%;
  margin-right: 0.1em;
  color: #8f8e8e;
}
.categorymenu li .title:has(i) {
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .categorymenu li {
    width: 32%;
  }
}
@media screen and (max-width: 800px) {
  .categorymenu li {
    width: 49%;
    margin: 2% 2% 2% 0;
  }
}
