.data-box h2 {
  font-weight: bold;
}

.data-box ul {
  padding: 0px 18px;
  margin-bottom: 25px;
}

.data-box li {
  padding: 6px 5px;
}

.data-box li span.arabic {
  font-size: 1.1em;
  margin-right: 8px;
  color: #222;
}

.data-box li span.translit {
  font-style: italic;
  color: #222;
  margin-right: 8px;
}

.data-box li span.german {
  font-weight: bold;
  color: #222;
}

.table-container {
  overflow-x: auto;
}

.table-wrap {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin: 28px 0;
  overflow-x: scroll;
}

/* .table-wrap caption {
  color: #000;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 11px;
  width: 100%;
  padding: 5px 0;
  border-bottom: 2px solid #ddd;
} */

.table-wrap td {
  padding: 5px 0;
  text-align: left;
  font-size: 15px;
}

.table-wrap td:nth-child(1) {
  /* width: 13%; */
  width: 26%;
  font-weight: bold;
  text-align: center;
}

.table-wrap td:nth-child(2) {
  width: 42%;
}

.table-wrap td:nth-child(3) {
  width: 20%;
}

.fluge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0px;
  background-color: #4eabf7;
  height: 40px;
  width: 100%;
  min-width: 600px;
  border-radius: 20px 5px 5px 20px;
}

.fluge-wrapper i.fa-plane-departure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #4eabf7;
  color: white;
  border-radius: 50%;
  font-size: 18px;
}

.fluge-wrapper span {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.np-container .data-box h1 {
  font-size: 21px;
  font-weight: bold;
  margin: 6px 0;
}

.np-container .data-box h2.underline {
  margin: 9px 0;
  text-decoration: underline;
}

.np-container .data-box ul li span {
  color: #000;
  font-weight: bold;
}

.np-container .figure {
  max-width: 350px;
  min-width: 230px;
  overflow: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}

.np-container .figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  z-index: 1;
  cursor: pointer;
}
.np-container .figure:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

.np-container .figure img,
.np-container .figure p {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.np-container .figure:hover img,
.np-container .figure.hover img {
  transform: scale(1.2);
}

.np-container .figure p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: -5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding: 0 0px 0px 15px;
  z-index: 2;
  width: 97%;
  height: 39px;
  text-decoration: underline;
  letter-spacing: 1px;
}

.np-container .figure p > .fa-arrow-right {
  transition: transform 0.3s ease-in-out;
  font-size: 12px;
}

.np-container .figure:hover p > .fa-arrow-right {
  transform: translateX(5px);
}

@media only screen and (max-width: 800px) {
  .np-container .figure p {
    width: 100%;
  }
}
