body {
  background-image: url(../Pictures/IMG_20230421_221157.jpg);
  background-repeat: no-repeat;
  background-size: 48% 100%;
}

.top-header {
  background-color: transparent;
}

.original-navigation li {
  color: #000;
}

.burger-icon .line {
  background-color: black;
}

/* Close Icon */
.close-icon {
  color: #000;
}

/* Slide Navigation */
.slide-navigation {
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.slide-navigation li {
  border-bottom: 1px solid #000;
}

.slide-navigation a {
  color: #000;
}

hr {
  width: 180px;
  height: 2px;
  background-color: black;
  border-radius: 500px;
  margin-bottom: 20px;
}

.page-content .inner-section {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  width: 49%;
  margin-right: 0;
  margin-top: 30px;
  height: auto;
}

.page-content {
  display: flex;
  align-items: end;
}

.journey-section {
  margin-bottom: 20px;
}

.mission {
  margin-bottom: 20px;
}

.link-container {
  display: flex;
  justify-content: end;
}

.link {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 30px;
  transition: all 0.4s ease-out;
}

.link p {
  font-weight: bold;
}

.link-container :hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}


.link span {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  body {
    background-size: 100% 30%;
    /*overflow: hidden;*/
  }

  .burger-icon .line {
    background-color: #fff;
  }

  .page-content .inner-section {
    width: 100%;
    background-color: #fff;
  }
}