.world {
  display: flex;
  padding-top: 160px;
  padding-bottom: 80px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
}

.world-header {}

.world-header h3 {}

.world-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.world-content-item {}

.world-content-background {
  background-color: var(--skeleton-color);
  box-sizing: border-box;
  padding: 24px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
}

.world-content-item-icon {
  height: 64px;
  width: 64px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.world-content-item-icon svg {
  width: 79%;
}

.world-content-item-header {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

.world-content-item-description {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  white-space: pre-line;
}

@media screen and (max-width: 1599px) and (min-width: 1280px) {
  .world-header h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
  }

  .world-content-background {}

  .world-content {}

  .world-content-item-icon {
    width: 60px;
    height: 60px;
  }

  .world-content-item-header {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  .world-content-item-description {
    font-weight: 300;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 1279px) and (min-width: 1024px) {
  .world-header h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
  }

  .world-content-background {
    height: 100%;
    padding: 20px;
  }

  .world-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .world-content-item-icon {
    height: 60px;
    width: 60px;
  }

  .world-content-item-header {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  .world-content-item-description {
    font-weight: 300;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 640px) {
  .world-header h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0px;
  }

  .world-content-background {
    padding: 20px;
  }

  .world-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .world-content-item-icon {
    height: 56px;
    width: 56px;
  }

  .world-content-item-header {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  .world-content-item-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 639px) {
  .world {
    padding-top: 128px;
  }

  .world-header h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0px;
  }

  .world-content-background {
    padding: 20px;
  }

  .world-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .world-content-item-icon {
    height: 56px;
    width: 56px;
  }

  .world-content-item-header {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  .world-content-item-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0px;
  }
}