@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.menu {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #213329;
  z-index: 9998;
  padding: 2rem;
  padding-top: calc(80px + 2rem);
}
.menu.open {
  display: flex;
}
.menu.close {
  display: none;
}
.menu * {
  color: #ffffff;
  font-size: 1rem;
}
.menu li {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.menu li div {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  z-index: 1000;
  font-size: 1.2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.header img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger-menu {
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.header .hamburger-menu .open.open-icon {
  display: flex;
}
.header .hamburger-menu .open.close-icon {
  display: none;
}
.header .hamburger-menu .close.open-icon {
  display: flex;
}
.header .hamburger-menu .close.close-icon {
  display: none;
}
.header .header-primary-ul {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 100px;
}
.header .header-primary-ul .header-primary-li {
  list-style: none;
  width: auto;
  min-width: 130px;
  height: 100%;
  position: relative;
  padding: 1rem;
}
.header .header-primary-ul .header-primary-li .header-primary-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.header .header-primary-ul .header-secondary-ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding: 1rem;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 999;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.3);
}
.header .header-primary-ul .header-secondary-ul .header-secondary-li {
  list-style: none;
  padding: 0.5rem 0;
}
.header .header-primary-ul .header-primary-li:hover + .header-secondary-ul,
.header .header-primary-ul .header-secondary-ul:hover {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .header .header-primary-ul {
    display: none;
  }
  .header {
    justify-content: space-between;
  }
  .header a {
    order: 1;
  }
  .header a img {
    height: 40px;
  }
  .header .hamburger-menu {
    order: 2;
    display: flex;
    width: 100px;
    height: 100%;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 4rem;
  padding-bottom: 2rem;
  background-color: #213329;
}
.footer .footer-top {
  width: 90%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-top .footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 4rem;
  width: auto;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.footer .footer-top .footer-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer .footer-top .footer-slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.footer .footer-top .footer-slogan h2 {
  font-weight: normal;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
.footer .footer-top .footer-slogan img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-middle {
  width: 90%;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-middle ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-middle ul a {
  color: #ffffff;
}
.footer .footer-middle ul li {
  list-style: none;
}
.footer .footer-middle ul li ul {
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom p {
  color: #ffffff;
}

@media only screen and (max-width: 1200px) {
  .footer .footer-top .footer-slogan img {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 1100px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 4rem;
    height: auto;
  }
  .footer .footer-top .footer-image {
    width: 100%;
    aspect-ratio: auto;
  }
  .footer .footer-top .footer-image img {
    max-width: 200px;
  }
  .footer .footer-top .footer-slogan {
    width: 100%;
    min-height: 200px;
    padding: 2rem;
    order: 1;
  }
  .footer .footer-top .footer-slogan h2 {
    font-size: 2rem;
  }
  .footer .footer-top .footer-slogan img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .footer {
    padding: 4rem 2rem;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.content {
  margin-top: 80px;
  width: 100%;
}
.content .sections {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content .sections .page-title {
  width: calc(100% - 8rem);
  height: 80px;
  font-size: 2rem;
  margin: 4rem;
}
.content .sections .section-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40vh;
}
.content .sections .section-wrapper .main-line {
  width: 10px;
  height: calc(100% - 80px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #000000;
  border-radius: 100px;
  z-index: 999;
}
.content .sections .section-wrapper .section {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
}
.content .sections .section-wrapper .section.start {
  height: calc(50vh - 160px);
}
.content .sections .section-wrapper .section.start .section-line {
  width: 200px;
}
.content .sections .section-wrapper .section.start .section-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 1rem;
  position: absolute;
  top: calc(50% - 40px);
  right: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  width: 200px;
}
.content .sections .section-wrapper .section.start .section-content * {
  font-weight: normal;
}
.content .sections .section-wrapper .section .section-line {
  width: 80px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  border-radius: 100px;
  z-index: 999;
}
.content .sections .section-wrapper .section .section-image {
  width: 50%;
  height: 100%;
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .sections .section-wrapper .section .section-image img {
  width: 75%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .sections .section-wrapper .section .section-text {
  width: 50%;
  height: 120%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
}
.content .sections .section-wrapper .section .section-text .section-text-background {
  background-color: #ffffff;
  border-radius: 20px;
  width: 60%;
  height: auto;
  min-width: 200px;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 998;
}
.content .sections .section-wrapper .section .section-text .section-text-background .section-seperator {
  left: 50%;
  width: 40%;
  height: 2px;
  margin: 1rem 0;
  background-color: #000000;
}
.content .sections .section-wrapper .section .section-text .section-text-background .section-date {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 1rem;
  text-align: center;
}
.content .sections .section-wrapper .section .section-text .section-text-background .section-title {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: normal;
  margin-top: 0.2rem;
  text-align: center;
}
.content .sections .section-wrapper .section .section-text .section-text-background .section-description {
  width: 100%;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 2rem;
  padding: 1rem;
  padding-top: 0;
}
.content .sections .section-wrapper .section:nth-child(even) .section-line {
  right: 50%;
}
.content .sections .section-wrapper .section:nth-child(even) .section-image {
  order: 2;
}
.content .sections .section-wrapper .section:nth-child(even) .section-text {
  order: 1;
}
.content .sections .section-wrapper .section:nth-child(odd) .section-line {
  left: 50%;
}
.content .sections .section-wrapper .section:nth-child(odd):nth-child(odd) .section-image {
  order: 1;
}
.content .sections .section-wrapper .section:nth-child(odd):nth-child(odd) .section-text {
  order: 2;
}
.content .sections .section-wrapper .section:nth-child(odd):nth-child(odd):nth-of-type(4n + 1) {
  background-color: #a19285;
}
.content .sections .section-wrapper .section:nth-child(odd):nth-child(odd):nth-of-type(4n + 3) {
  background-color: #6b705c;
}

@media only screen and (max-width: 1300px) {
  .content .sections .section-wrapper .section:nth-child(even) .section-line,
  .content .sections .section-wrapper .section:nth-child(odd) .section-line,
  .content .sections .section-wrapper .section.start .section-content {
    left: 30%;
  }
  .content .sections .section-wrapper .section:nth-child(odd) .section-line {
    width: 120px;
  }
  .content .sections .section-wrapper .main-line {
    left: 30%;
  }
  .content .sections .section-wrapper .section .section-image {
    display: none;
  }
  .content .sections .section-wrapper .section .section-text {
    width: 100%;
    justify-content: flex-end;
  }
  .content .sections .section-wrapper .section:nth-child(even) .section-text {
    order: 2;
  }
  .content .sections .section-wrapper .section {
    height: auto;
  }
  .content .sections .section-wrapper .section:nth-child(even):nth-child(even) .section-text {
    padding-right: 5rem;
  }
  .content .sections .section-wrapper .section .section-text .section-text-background {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 950px) {
  .main-line,
  .section-line {
    display: none;
  }
  .content .sections .section-wrapper .section.start .section-line {
    height: 5px;
  }
  .content .sections .section-wrapper .section .section-text {
    justify-content: center;
  }
  .content .sections .section-wrapper .section.start {
    display: none;
  }
}
@media only screen and (max-width: 950px) {
  .content .sections .section-wrapper .section .section-text .section-text-background {
    width: 100%;
    max-width: 600px;
  }
  .content .sections .section-wrapper .section:nth-child(even):nth-child(even) .section-text {
    padding: 2rem;
  }
}/*# sourceMappingURL=whoAmI.history.css.map */