.catalog-navigation {
  background-color: #fff;
  padding: 50px 0;
}

.catalog-navigation__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catalog-navigation__item {
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
}

.catalog-navigation__item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.catalog-navigation__item img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.catalog-navigation__item-title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  color: #fff;
  z-index: 2;
}

.catalog-navigation__item-title h3 {
  margin: 20px;
}

.catalog-navigation__item-title h3::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 80px;
  margin-top: -3px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.catalog-navigation__item-title h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  background: #fff;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.catalog-navigation__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.catalog-navigation__item:hover h3::before {
  width: 0px;
}

.catalog-navigation__item:hover h3::after {
  width: 80px;
}

@media screen and (max-width: 576px) {
  .catalog-navigation {
    padding: 0px;
  }
}

.main-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

@media screen and (max-width: 576px) {
  .main-container {
    width: 100%;
  }
}

.catalog-result {
  padding: 60px 0;
  background-color: #fff;
}

.catalog-result__title {
  margin: 0 0 30px 0;
}

.catalog-result__title h2 {
  font-size: 32px;
}

.catalog-result__item {
  background-color: #fffacc4d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px;
  border-style: solid;
  border-color: red;
  margin: 10px 0;
}
.catalog-result__item-keywords {
  display: none;
}

.catalog-result__item-image-container {
  width: 33.33%;
  max-width: 250px;
  overflow: hidden;
}

.catalog-result__item-image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.catalog-result__item-content-container {
  width: 66.66%;
  padding: 0px 20px 20px 20px;
}

.catalog-result__item-title a {
  text-decoration: none;
}

.catalog-result__item-title h3 {
  color: #16a4ec;
  font-size: 1.3em;
  text-transform: none;
}

@media screen and (max-width: 576px) {
  .catalog-result__title {
    margin: 10px;
  }
}

@media screen and (max-width: 940px) {
  .catalog-result__item-image-container {
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .catalog-result {
    padding: 30px 0;
  }
  .catalog-result__item {
    display: block;
    padding: 10px;
  }
  .catalog-result__item-image-container {
    max-width: 200px;
    width: 200px;
  }
  .catalog-result__item-content-container {
    width: 100%;
    padding: 0px;
  }
}

.active {
  display: block;
}

.not-active {
  display: none;
}

.left-items {
  width: 66.666%;
}

.right-items {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bottom-items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.left-item {
  height: 200px;
}

.left-item h3 {
  font-size: 1.8em;
  text-align: left;
}

.left-item h3::before {
  height: 3px;
}

.left-item h3::after {
  height: 3px;
}

.right-item {
  height: 100px;
}

.right-item h3 {
  font-size: 1.4em;
  text-align: right;
}

.right-item h3::before {
  height: 2px;
  right: 20px;
}

.right-item h3::after {
  height: 2px;
  right: 20px;
}

.bottom-item {
  width: 50%;
  max-height: 250px;
}

.bottom-item h3 {
  font-size: 1.8em;
  text-align: left;
}

.bottom-item h3::before {
  height: 3px;
}

.bottom-item h3::after {
  height: 3px;
}

@media screen and (max-width: 940px) {
  .right-items {
    max-width: 100%;
    width: 100%;
  }
  .left-items {
    max-width: 100%;
    width: 100%;
  }
  .right-item {
    width: 50%;
    height: auto;
  }
  .left-item {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 576px) {
  .bottom-item {
    max-width: 100%;
    width: 100%;
  }
  .right-item h3 {
    font-size: 1em;
  }
}

.action-button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #c39e2a;
  border-radius: 5px;
  background-color: #c39e2a;
  color: #fff;
  text-decoration: none;
}

.action-button:hover {
  text-decoration: none;
  color: #fff;
}

.action-button:visited {
  text-decoration: none;
  color: #fff;
}

.card-title {
  font-weight: bold;
}

.card-content {
  text-align: center;
  color: #000;
}

.call-to-action-text {
  font-weight: 900;
  font-size: 20px;
}

.card-action-button {
  background-color: #e7b73c;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 23px;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.8571px;
  text-align: center;
  white-space: nowrap;
  background-image: -webkit-linear-gradient(90deg, #e7b73c 0%, #c39e2a 100%);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 70px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  min-width: 250px;
}

.card-action-button:hover,
.card-action-button:active,
.card-action-button:visited {
  color: #fff;
  text-decoration: none;
  background-color: #c39e2a;
  -webkit-box-shadow: 0 0 60px 0 rgba(243, 191, 66, 0.38);
          box-shadow: 0 0 60px 0 rgba(243, 191, 66, 0.38);
}
