*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: 0px;
  z-index: -1;
  background-color: rgb(0, 0, 0);
}

header {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17em;
  z-index: 99;
}
header section {
  width: 350px;
  height: 10vh;
  z-index: 99;
}
header section img {
  width: 100%;
  height: 100%;
  z-index: 99;
}
header section ul {
  padding: 0em 8em 0em 8em;
  left: -110%;
  top: 0;
  position: fixed;
  flex-direction: column;
  background-color: rgb(34, 34, 34);
  list-style: none;
  width: 100%;
  height: 100vw;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  transition: 0.7s ease-in-out;
  z-index: 999;
}
header section ul li {
  margin-top: 1em;
  display: flex;
  width: 100%;
  height: 10vh;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 85px;
  z-index: 4;
}
header section ul li a {
  color: white;
  text-decoration: none;
  font-size: 85px;
}
header section ul .line {
  width: 100%;
  height: 3px;
  background-color: white;
}
header section ul p {
  color: white;
  font-style: italic;
  opacity: 0.4;
}
header section ul.active {
  left: 0;
}
header section .hamburger {
  top: 2.5em;
  right: 3em;
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  width: 45px;
  cursor: pointer;
  z-index: 9999;
}
header section .hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header section .hamburger.active .bar:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}
header section .bar {
  width: 45px;
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  background-color: white;
  z-index: 99;
}
header section:nth-child(2) {
  width: 100px;
}
header .sec-1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-direction: column;
  color: white;
}
header .sec-1 h1 {
  margin-top: 2%;
  margin-left: 5%;
  font-size: 35px;
}
header .sec-1 span {
  margin-left: 6%;
  color: #ee0979;
}

main {
  width: 100%;
  height: auto;
}
main .head-start {
  width: 100%;
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5em;
}
main .head-start .head-img {
  width: 600px;
}
main .head-start article {
  width: 70%;
  color: white;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
main .head-start article p {
  font-size: 30px;
  text-align: justify;
  text-indent: 50px;
}
main .head-middle {
  width: 100%;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
main article {
  width: 70%;
  color: white;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
main article figure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5em;
}
main article img {
  width: 600px;
}
main article h1 {
  font-size: 60px;
}
main article p {
  font-size: 30px;
  text-align: justify;
  text-indent: 50px;
}
main article p span {
  font-weight: 700;
}
main article p a {
  color: yellow;
}/*# sourceMappingURL=style.css.map */