@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body, html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  width: 100%;
  padding: 0 2.5%;
  z-index: 6;
  background: #fff;
}
header img {
  height: 4.5rem;
  width: 4.5rem;
}
header nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}
header nav a {
  color: #000;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  height: 2px;
  width: 0%;
  transition: 0.15s ease;
}
header nav a:hover::after {
  width: 100%;
}
header #ham {
  height: 2.25rem;
  width: 2.25rem;
  background: none;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header #ham div {
  height: 0.25rem;
  width: 100%;
  background: #160B58;
  margin: 0.25rem 0;
  border-radius: 10px;
  transition: 0.5s ease;
}
header #ham div.active:first-child {
  transform: translate(0, 12px) rotate(45deg);
}
header #ham div.active:nth-child(2) {
  opacity: 0;
}
header #ham div.active:nth-child(3) {
  transform: translate(0, -12px) rotate(-45deg);
}

#offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 50%;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 5;
}
#offcanvas.active {
  transform: translateX(0);
}
#offcanvas a {
  color: #000;
  text-decoration: none;
  font-size: 1.25em;
}

@media only screen and (max-width: 900px) {
  header {
    height: 5rem;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
  }
  header img {
    height: 4rem;
    width: 4rem;
  }
  header nav {
    display: none;
  }
  header #ham {
    display: flex;
  }
  #offcanvas {
    display: flex;
  }
}
footer {
  padding: 1.5rem 10%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
footer nav a {
  font-size: 1.15em;
  text-decoration: none;
  color: #000;
  position: relative;
}
footer nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  height: 2px;
  width: 0%;
  transition: 0.15s ease;
}
footer nav a:hover::after {
  width: 100%;
}
footer img {
  height: 4rem;
  width: 4rem;
}

@media only screen and (max-width: 850px) {
  footer {
    flex-flow: column;
    gap: 1.5rem;
  }
  footer nav {
    gap: 1rem;
    flex-flow: row wrap;
  }
  footer nav a {
    font-size: 1em;
  }
}
main {
  padding: 0 10%;
  position: relative;
}
main h1 {
  font-size: 12em;
  font-weight: 900;
  letter-spacing: -15px;
  transform: translateX(-3px);
}
main .star {
  position: absolute;
  top: 2rem;
  right: 0;
  z-index: -1;
  height: 25rem;
  width: 25rem;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 1;
  transform: translateX(15%);
}
main section {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  margin: 4rem 0;
}
main section .text {
  width: 90%;
}
main section .text h2 {
  font-size: 3em;
  letter-spacing: -4px;
  line-height: 1em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
main section .text p {
  margin-bottom: 0.5rem;
  font-size: 1.1em;
  text-align: justify;
}
main section .text p a {
  color: #021199;
}
main section .image-parent {
  width: 90%;
}
main section .image-parent img {
  width: 100%;
}
main section div:nth-child(2) p {
  text-align: justify;
}

@media only screen and (max-width: 1500px) {
  main h1 {
    font-size: 8em;
    letter-spacing: -7px;
  }
}
@media only screen and (max-width: 1200px) {
  main section .text h2 {
    font-size: 2.5em;
  }
  main section .text p {
    font-size: 0.8em;
  }
  main section .image-parent {
    width: 95%;
  }
}
@media only screen and (max-width: 850px) {
  main h1 {
    font-size: 6em;
    text-align: center;
  }
  main .star {
    height: 12rem;
    width: 12rem;
  }
  main section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  main section .image-parent {
    width: 100%;
    order: 2;
  }
}
@media only screen and (max-width: 700px) {
  main h1 {
    font-size: 5em;
  }
  main .star {
    height: 8rem;
    width: 8rem;
  }
  main section .text {
    width: 100%;
  }
  main section .text p {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */