@font-face {
  font-family: detriot;
  src: url(../font/Broken-Detroit\ -\ PERSONAL\ USE\ ONLY.ttf);
}
@font-face {
  font-family: lexend;
  src: url(../font/Lexend_Giga/static/LexendGiga-Regular.ttf);
}
@font-face {
  font-family: lexend-semibold;
  src: url(../font/Lexend_Giga/static/LexendGiga-SemiBold.ttf);
}
@font-face {
  font-family: lexend-extrabold;
  src: url(../font/Lexend_Giga/static/LexendGiga-ExtraBold.ttf);
}
:root {
  --bg-clr: #131313;
  --violet: #99449f;
  --purple: #553a57;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-clr);
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1 {
  font: 160px detriot;
  margin-top: 2rem;
  letter-spacing: 1rem;
}

h2 {
  font: 72px detriot;
  margin-bottom: 3rem;
  text-align: center;
}
h2 > span {
  color: var(--violet);
}

h3 {
  font: 48px lexend-extrabold;
  color: #fff;
  margin-top: 10rem;
  letter-spacing: -6px;
  text-transform: capitalize;
}

h4 {
  font: 40px detriot;
  margin: 0.5rem 0 1rem;
}

p {
  font: 20px lexend;
}

a {
  all: unset;
  font: 24px detriot;
}
a:hover {
  color: transparent;
  background-image: linear-gradient(to right, var(--violet), var(--purple));
  -webkit-background-clip: text;
          background-clip: text;
  cursor: pointer;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 96px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 40px;
    letter-spacing: -5px;
  }
  a {
    font-size: 20px;
  }
}
@media (max-width: 769px) {
  h1 {
    font-size: 48px;
    letter-spacing: 0.3rem;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
    letter-spacing: -3px;
  }
  a {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
.container {
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@keyframes slideup {
  from {
    transform: translateY(400px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slidedown {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
main {
  overflow-x: hidden;
}

section:not(.hero) {
  padding: 5rem 0;
}

.hero {
  position: relative;
  background-image: url(../imgs/background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-bottom: 500px;
}
.hero h1,
.hero h3 {
  animation: slidedown 1.5s ease-in-out;
}
.hero nav {
  margin-top: 0.5rem;
  color: #fff;
  display: flex;
  gap: 2rem;
}
.hero .bg-char {
  position: absolute;
  bottom: 0;
  animation: slideup 1.5s ease-in-out;
}

@media (max-width: 1200px) {
  .hero {
    padding-bottom: 0;
  }
  .hero nav {
    width: 100%;
    justify-content: center;
    background-color: var(--bg-clr);
    margin-top: 0;
    gap: 1rem;
  }
  .hero .bg-char {
    position: static;
    width: 100%;
  }
}
.after-hero {
  position: relative;
}
.after-hero p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 0;
}
.after-hero img {
  position: absolute;
}
.after-hero img:nth-child(1) {
  width: 100px;
  top: 50px;
  right: 150px;
}
.after-hero img:nth-child(2) {
  width: 200px;
  bottom: 0;
  left: 0;
}

@media (max-width: 1200px) {
  .after-hero img:nth-child(1) {
    width: 70px;
    top: 20px;
    right: 0;
  }
  .after-hero img:nth-child(2) {
    display: none;
  }
  .after-hero img:nth-child(3) {
    bottom: 50px;
    left: 0;
  }
}
.characters .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 4rem;
}
.characters .content > div {
  text-align: center;
}
.characters .char img {
  margin-bottom: 1rem;
  filter: brightness(70%);
  transform: translateY(10px);
  transform-origin: bottom;
}
.characters .char img:hover {
  filter: brightness(100%);
  transform: translateY(-10px);
}
.characters img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  .characters .content {
    grid-template-columns: 1fr;
  }
  .characters p {
    max-width: 300px;
    margin: 0 auto;
  }
  .characters .char:nth-child(even) h4 {
    color: var(--purple);
  }
  .characters .char:nth-child(odd) h4 {
    color: var(--violet);
  }
}
.history .row {
  display: flex;
  justify-content: space-between;
}
.history .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.history .row > * {
  width: 49.5%;
}
.history .content1 {
  background-image: url("../imgs/par-1.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.history .content2 {
  background-image: url("../imgs/par-2.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.history .content3 {
  background-image: url("../imgs/par-3.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.history .content4 {
  background-image: url("../imgs/par-4.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.history .trans {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: saturate(30%) brightness(30%);
          backdrop-filter: saturate(30%) brightness(30%);
  padding: 4rem 2rem;
}

@media (max-width: 1200px) {
  .history .container {
    width: 100% !important;
    padding: 0;
    margin: 0;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .history .row {
    flex-wrap: wrap-reverse;
  }
  .history .row > * {
    width: 100%;
  }
  .history .row > div {
    padding: 1rem 3rem;
    background-image: none !important;
    background-color: transparent !important;
  }
  .history .trans {
    background-color: #131313;
  }
}
@media (max-width: 769px) {
  .history .row > div {
    padding: 0.5rem;
  }
  .history .trans {
    padding: 1rem 0.5rem;
  }
}
.cards .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cards img {
  width: 100%;
  filter: brightness(70%);
  transform: translateY(20px);
  transform-origin: bottom;
}
.cards img:hover {
  filter: brightness(100%);
  transform: translateY(-20px);
}

@media (max-width: 1200px) {
  .cards .content {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-content: center;
  }
}
.download {
  position: relative;
  margin-top: 800px;
}
.download h2 {
  font-family: detriot;
  letter-spacing: 0;
  max-width: 625px;
  text-align: center;
  margin: 0 auto 2rem;
  transform: translateY(-700px);
}
.download img:not(.button) {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
}
.download img:nth-child(1) {
  left: -50%;
}
.download img:nth-child(2) {
  right: -50%;
}
.download img.button {
  width: 545px;
  height: 145px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1200px) {
  .download {
    margin-top: 300px;
  }
  .download h2 {
    transform: translateY(-300px);
  }
}
footer {
  padding: 1rem 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  flex-wrap: wrap;
}
footer .rights {
  text-align: center;
}
footer span {
  color: var(--purple);
}
footer p {
  font: 16px lexend-semibold;
  margin-bottom: 1rem;
}
footer h6 {
  font: 16px detriot;
  margin-bottom: 0.5rem;
}
footer .rights p {
  font: 14px lexend;
  margin-bottom: 0.5rem;
}
footer .up {
  width: 40px;
  height: 40px;
}

@media (max-width: 769px) {
  footer h6 {
    font-size: 12px;
  }
  footer p,
  footer .rights p {
    font-size: 10px;
  }
  footer .socials img {
    width: 20px;
  }
}/*# sourceMappingURL=style.css.map */