:root {
  --background: #FFFBF5;
  --text: #000000;
  --padding: clamp(1rem, 5.5vw, 8rem);
  --padding-top: calc(var(--padding) * 0.75);
}

@media (max-width: 1024px) {
  :root {
    --padding-top: 3rem;
  }
}

.three_columns {
  position: relative;
  padding: 55px 0px 72px;
}

@media (max-width: 768px) {
  .three_columns {
    padding: 40px 0px 40px;
  }
}

.three_columns .three_columns__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1040px) {
  .three_columns .three_columns__wrap {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}

@media (max-width: 768px) {
  .three_columns .three_columns__wrap {
    flex-wrap: wrap;
    row-gap: 24px;
  }
}

.three_columns .three_columns__wrap_item {
  flex: 1 308px;
  max-width: 308px;
}

@media (max-width: 768px) {
  .three_columns .three_columns__wrap_item {
    max-width: 100%;
  }
}

.three_columns .three_columns__wrap_item .item_line {
  width: 100%;
  max-width: 302px;
  background: #000000;
  height: 3px;
  margin-bottom: 23px;
}

@media (max-width: 768px) {
  .three_columns .three_columns__wrap_item .item_line {
    display: none;
  }
}

.three_columns .three_columns__wrap_item .item_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
}

.three_columns .three_columns__wrap_item .item_description {
  line-height: 1.15;
}
