:root {
  --text-color: rgba(255, 255, 255, 0.9);
  --text-other-color: rgba(255, 255, 255, 0.7);
  --text-desc: rgb(114, 114, 114);
}

main {
  padding: 107px 12%;
  padding-bottom: 0;
}

body {
  overflow-x: hidden;
}

.main-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
}

.main-text p {
  color: var(--text-other-color);
}

h3,
b {
  font-weight: 500;
  color: var(--text-color);
}

dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text {
  font-weight: 400;
  color: var(--text-other-color);
}

.boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: stretch;
  align-items: start;
}

.box {
  position: relative;
  padding: 24px;
  border-radius: 35px;
  border: none;
  backdrop-filter: blur(37.5px);
  overflow: hidden;
  background: rgb(20, 20, 20, 0.2);
  box-shadow: 4px 7px 13.5px rgb(0, 0, 0, 0.15);
}

.box-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 400px;
  height: 400px;
  min-width: 280px;
  overflow-y: auto;
  padding-right: 6px;
}

.box-content::-webkit-scrollbar {
  width: 4px;
  background: rgba(0, 0, 0, 0.063);
}

.box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 35px;
  padding: 1px;
  background: linear-gradient(
    149deg,
    #fff -30%,
    #fff -60%,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 255, 255, 0.06) 80%,
    #fff 130%,
    #fff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (max-width: 780px) {
  .boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}