#topics {
  background: var(--topics-bg);
}

#topics .content {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#topics .content .titles {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 34px;
}

#topics .content .titles strong {
  color: var(--topics-title);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 33px;
  line-height: 44px;
  font-weight: 300;
}

#topics .content .titles strong::after {
  content: '';
  display: block;
  height: 2px;
  background-color: var(--topics-title-line);
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

#topics .content .titles span {
  color: var(--topics-description);
  max-width: 900px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 32px;
}

#topics .content .items {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 46px;
}

#topics .content .items .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 16px 32px;
}

#topics .content .items .item .hexagon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 116px;
  height: 66.97px;
  background-color: transparent;
  margin: 33.49px 0;
  border-left: solid 2px var(--topics-icon-border);
  border-right: solid 2px var(--topics-icon-border);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(0.0001deg);
  -webkit-transform: rotate(0.0001deg);
  -ms-transform: rotate(0.0001deg);
  -webkit-backface-visibility: hidden;
}

#topics .content .items .item .hexagon::after {
  bottom: -41.0122px;
  border-color: var(--topics-icon-border);
  border-bottom: solid 2.8284px var(--topics-icon-border);
  border-left: solid 2.8284px var(--topics-icon-border);
  content: "";
  position: absolute;
  z-index: 1;
  width: 82.02px;
  height: 82.02px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 14.9878px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#topics .content .items .item .hexagon::before {
  top: -41.0122px;
  border-top: solid 2.8284px var(--topics-icon-border);
  border-right: solid 2.8284px var(--topics-icon-border);
  content: "";
  position: absolute;
  z-index: 1;
  width: 82.02px;
  height: 82.02px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 14.9878px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#topics .content .items .item i {
  color: var(--topics-icon);
  font-size: 32px;
}

#topics .content .items .item .texts {
  display: flex;
  flex-direction: column;
}

#topics .content .items .item .texts strong {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--topics-item-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

#topics .content .items .item .texts strong::after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--topics-title-line);
  margin-top: 20px;
}

#topics .content .items .item .texts p {
  font-size: 15px;
  text-align: justify;
  font-size: 14px;
  text-align: center;
  color: var(--topics-item-description);
  font-family: 'Open Sans';
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  margin-top: 16px;
}

@media (max-width: 768px) {
  #topics .content .items {
    grid-template-columns: repeat(1, 2fr);
    gap: 26px;
  }
}