.categories-big {
  margin-bottom: 40px;
}

.categories-big__container {
  display:  flex;
  justify-content: space-between;
}

.categories-big__container .owl-stage-outer {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.categories-big__title {
  font-size: 26px;
  font-weight: 700;
  margin-left: 15px;
}

.categories-big__title-block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.categories-big__wrapper {
  position: relative;
  width: 100%;
  padding: 30px;
  margin-right: 30px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  border-left: none;
}

.categories-big__more {
  font-size: 14px;
  position: relative;
  color: var(--main-text-color);
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  margin-right: 10px;
  width: fit-content;
  font-weight: 500;
}

.categories-big__more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-text-color);
  transform-origin: center;
  transition: all 0.3s ease-in-out;
}

.categories-big__more:hover::after {
  transform: scaleX(0);
}

.categories-big__wrapper:last-of-type {
  margin-right: 0;
}

.categories-big__image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 61%;
  height: 73%;
}

.categories-big__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categories-big__name {
  color: var(--main-text-color);
  font-size: 16px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  transition: all 0.2s ease-in-out;
}

.categories-big__name:hover {
  color: var(--accent-color);
}

.categories-big__item-child {
  font-size: 14px;
  color: var(--third-text-color);
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 17px;
  position: relative;
  transition: all 0.3s ease-in-out;
  max-width: 130px;
}

.categories-big__item-child::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--main-text-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.categories-big__item-child:hover {
  color: var(--accent-color);
}
.categories-big__item-child:hover::after  {
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .categories-big__title {
    font-size: 20px;
  }
}