body {
  background-color: var(--ea-black);
}
body.index header {
  visibility: hidden;
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 9999;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
header .header-burger-menu {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .header-container.header-image {
  height: 100%;
}
header .header-container.header-image a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-container.header-image a img {
  height: 90%;
}
header .header-container.header-nav nav {
  display: flex;
  gap: 2rem;
  padding: 1rem;
}
header .header-container.header-nav nav a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .header-container.header-nav nav a:hover {
  color: rgba(255, 255, 255, 0.5);
}
header .header-container.header-cta .header-cta-btn {
  padding: 1rem 3rem;
  border-radius: 4rem;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: black;
  color: var(--ea-white);
  font-size: 1rem;
  padding: 4rem;
}
footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
}
footer .footer-columns .footer-column {
  flex: 1;
  min-width: 250px;
}
footer .footer-columns .footer-column img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
footer .footer-columns .footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--ea-orange);
}
footer .footer-columns .footer-column p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
footer .footer-columns .footer-column ul {
  list-style: none;
  padding: 0;
}
footer .footer-columns .footer-column ul li {
  margin-bottom: 0.5rem;
}
footer .footer-columns .footer-column ul li a {
  color: var(--ea-white);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
footer .footer-columns .footer-column ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}
footer .footer-columns .footer-column ul li.login-link a {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-columns .footer-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
footer .footer-columns .footer-icons i {
  color: white;
  font-size: 1.1rem;
}
footer .footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
footer .footer-bottom a {
  color: var(--ea-orange);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
footer .footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  header .header-container {
    margin: 1rem;
    justify-content: initial;
  }
  header .header-container.header-image {
    height: 48px;
  }
  header .header-container.header-image a img {
    height: 48px;
  }
  header .header-container.header-nav nav {
    display: none;
  }
  header .header-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
  }
  header .header-cta {
    display: none;
  }
  header.active {
    display: flex;
    flex-direction: column;
    background-color: var(--ea-black);
    transition: all 0.3s ease-in-out;
  }
  header.active .header-container.header-nav nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: var(--ea-black);
    width: 100%;
    animation: navbarHeight 0.3s ease-in-out forwards;
    height: 0px;
    padding: 1rem;
    z-index: 1000;
  }
  header.active .header-container.header-nav nav a {
    padding: 0.5rem 0;
    text-align: center;
    color: var(--ea-orange);
    font-size: 2rem;
    font-family: "Nohemi", sans-serif;
    font-weight: 700;
    animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s forwards;
    opacity: 0;
  }
  header.active .header-container.header-cta {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes navbarHeight {
  from {
    height: 0;
  }
  to {
    height: calc(100vh - 80px);
  }
}/*# sourceMappingURL=layout.css.map */