component-cover [data-type="a"] .display-background {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
component-cover [data-type="a"] .display-overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);
}
component-cover [data-type="a"] .display-table {
  display: table;
  width: 100%;
  height: 100vh;
  z-index: 4;
}
component-cover [data-type="a"] .display-table .display-table-cell {
  display: table-cell;
  width: 100%;
  height: 100vh;
  vertical-align: middle;
}
component-cover [data-type="a"] .display-table .display-table-cell [id^="text"] {
  text-align: center;
  color: white;
}
component-cover [data-type="a"] .display-table .display-table-cell #text_1 {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
component-cover [data-type="a"] .display-table .display-table-cell #text_2 {
  font-size: 64px;
  padding-top: 20px;
  padding-bottom: 20px;
}
component-cover [data-type="b"] .display-background {
  width: 100%;
  height: 80vh;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*background-attachment: fixed;*/
}
component-cover [data-type="b"] .display-overlay {
  width: 100%;
  height: 80vh;
  position: absolute;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);
}
component-cover [data-type="b"] .display-table {
  display: table;
  width: 100%;
  height: 80vh;
  z-index: 4;
}
component-cover [data-type="b"] .display-table .display-table-cell {
  display: table-cell;
  width: 100%;
  height: 80vh;
  vertical-align: middle;
}
component-cover [data-type="b"] .display-table .display-table-cell [id^="text"] {
  text-align: center;
  color: white;
}
component-cover [data-type="b"] .display-table .display-table-cell #text_1 {
  font-size: 64px;
}
component-cover [data-type="b"] .display-table .display-table-cell #text_2 {
  font-size: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
}
component-cover [data-type="b"] .display-table .display-table-cell #text_3 {
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s;
  transform: translate3d(0, -100px, 0);
  opacity: 0;
}
component-cover [data-type="b"] .display-table .display-table-cell:hover #text_3 {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
