#category-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

#category-menu ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

#category-menu ul li {
  margin: 0 20px;
  position: relative;
}

#category-menu ul li a {
  color: var(--main-text-color);
  display: grid;
  font-size: 24px;
}

#category-menu ul li a:before {
  background-color: #ffffff00;
  bottom: 0px;
  content: '';
  height: 1px;
  left: -10px;
  position: absolute;
  width: calc(100% + 10px);
  transition-duration: 200ms;
}

#category-menu ul li a.current:before,
#category-menu ul li a:hover:before {
  background-color: var(--main-text-color);
  color: red;
}

h2 {
  color: var(--main-text-color);
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

#category-menu ul li a.current:before,
#category-menu ul li a:hover:before {
  background-color: var(--main-text-color);
}



.container .col:first-child {
  width: 100%;
}

.container .col:last-child {
  width: 100%;
}

.col {
  position: relative;
}

.image {
  width: 100%;
}

.container .row {
  gap: 20px;
}

h1 {
  color: var(--main-text-color);
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  margin: 40px 0;
}

h2 {
  color: var(--main-text-color);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.content p {
  color: var(--main-text-color);
  font-size: 20px;
  line-height: 30px;
  font-style: normal;
  font-weight: 500;
}

#description {
  position: absolute;
  top: 0;
}

@media all and  (max-width: 768px) {
  .row-content {
    flex-direction: column;
  }

  #description {
    position: relative;
  }
}

@media all and (max-width: 480px) {
  #category-menu ul {
    flex-direction: column;
  }
}
