h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.d-none {
  display: none !important;
}

.heading {
  font-size: 2.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0.04em 0.04rem 0 #81b5ab;
}

.section-scroll {
  overflow: hidden;
}

.wrapper {
    height: 100vh;
    margin-top: 10vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
  margin: 4vw;
}

.item {
  width: 90vw;
  min-width: 90vw;
  max-width: 90vw;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  /* box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px; */
  overflow: hidden;
}

.item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: 6rem;
  left: 3rem;
}

.item_content {
  color: #292929;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
  position: relative;
  width: 100%;
  height: 85%;
  align-items: center;
}

.item_media {
    object-fit: cover;
    width: 50%;
    height: 85%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}

@media (max-width: 768px) {
  .item_content {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content {
    padding: 1rem;
  }

  .item_content,
  .item_media {
    /* height: 70%; */
    padding-top: 3vh !important;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .item_number {
    font-size: .5rem;
    top: 1.5rem;
  }
}