.expandDataBlk {
  width: auto;
  height: fit-content;
  margin: 2em;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.expandDataBlk h2,
.expandDataBlk p:nth-child(2) {
  text-align: center;
}
.expandDataBlk p,
.expandDataBlk h2 {
  margin: 0 !important;
}
.expandDataContainer {
  width: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.eachExpandData {
  width: auto;
  padding: 0.5em 0.5em 0.5em 3em;
  border-radius: 0.5em;
  display: grid;
  grid-template-rows: 0fr 0fr;
  transition: all 0.25s ease;
  position: relative;
  background: #f1f1f1;
}
.eachExpandData h5 {
  margin: 0.5em 0 !important;
}
.expandDataOnClick {
  grid-template-rows: 0fr 1fr;
  row-gap: 0.5em;
  background: transparent;
}
.expandDataDetail {
  overflow: hidden;
}
.expandDataDetail ol,
.expandDataDetail ul {
  padding-left: 1.2em !important;
  margin: 0.5em 0 0 0 !important;
}
.expandDataDetail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.5em;
  border-radius: 0.5em;
  background: #128c7e;
  text-decoration: none;
  color: #fff;
}
.expandDataSvgContainer {
  height: 2em;
  width: 2em;
  inset: 0;
  margin: auto auto auto 0.5em;
  position: absolute;
  transition: all 0.25s ease;
  rotate: 90deg;
}
.expandDataSvgAnimate {
  rotate: 0deg;
}
.outsetBoxShadow {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0.5em 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
@media (orientation: landscape) {
  .expandDataBlk {
    margin: 3em 12em;
  }
}
