* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  list-style: none;
  text-decoration: none;
  outline: none;
  font-family: "Poppins";
}

@font-face {
  font-family: "Poppins";
  src: url("../typography/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Amarante";
  src: url("../typography/Amarante/Amarante-Regular.ttf") format("truetype");
  font-weight: 400;
}
.important-text {
  color: #ee1720;
}

.important-text-2 {
  color: #201d1d;
}

.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

hr {
  width: 100%;
  height: 1px;
  background-color: white;
}

.section {
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Amarante";
  color: #ee1720;
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

.shown {
  display: flex;
  opacity: 1;
}

.btn {
  padding: 0.7rem 2rem;
  border-radius: 25px;
  background-color: #ee1720;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
}
.btn:hover {
  opacity: 0.6;
}
.btn:active {
  transform: scale(0.9);
}

.ghost-btn {
  background: transparent;
  border: solid 2px #ee1720;
  color: #ee1720;
}
.ghost-btn:hover {
  background-color: #ee1720;
  opacity: 1;
  color: white;
}

.warning-text {
  color: red;
}

body {
  background-color: #201d1d;
}

.body-container, .hero-content {
  padding: 1rem;
  max-width: 1000px;
  min-height: 100vh;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 2rem;
  color: white;
}

.auto-show {
  animation: autoShowAnimation both;
  animation-timeline: view(70% 5%);
}

@keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
.auto-blur {
  animation: autoBlurAnimation both;
  animation-timeline: view(90% auto);
}

@keyframes autoBlurAnimation {
  0% {
    filter: blur(40px);
    transform: scale(0.3);
  }
  to {
    filter: blur(0px);
    transform: scale(1);
  }
}
@keyframes svgDraw {
  0% {
    fill: transparent;
    stroke-dashoffset: 440;
  }
  10% {
    fill: transparent;
  }
  40% {
    stroke-dashoffset: 0;
    fill: #ee1720;
  }
  50% {
    fill: #ee1720;
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 440;
  }
}
.navbar {
  padding-block: 0.5rem;
  padding-inline: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 1000;
}

.navbar-icon {
  width: 40%;
  max-width: 200px;
}

.navbar-links {
  display: none;
}

.sidebar {
  top: 0px;
  backdrop-filter: blur(15px);
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  transform: translateX(-200%);
  padding: 1rem;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  z-index: 1;
}

.sidebar-link {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 5px;
  color: white;
}
.sidebar-link:hover {
  color: #ee1720;
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
}
.toggle-btn .line {
  transition: transform 0.4s ease, opacity 0.2s ease;
  height: 2px;
  width: 100%;
  background-color: #ee1720;
  border-radius: 2px;
}
.toggle-btn.toggled .line:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .line:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .line:nth-child(2) {
  opacity: 0;
}

.hero {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-image: url(../assets/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  inset: 0;
  mask-image: url(../assets/ink_mask.gif);
  mask-size: cover;
  mask-position: center;
}

.hero-content {
  top: 10px;
  display: flex;
  max-width: 1000px;
}

.hero-text {
  z-index: 0;
  display: flex;
  max-width: 600px;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  color: #ee1720;
  font-size: 3rem;
  font-family: "Amarante";
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img-container {
  display: flex;
  flex-direction: column;
  z-index: 0;
  position: absolute;
  bottom: -15px;
}

.hero-img {
  width: 100%;
}

.info-img {
  width: 50%;
}
.info-img:nth-child(1) {
  float: left;
  margin-right: 20px;
}
.info-img:nth-child(3) {
  margin-left: 20px;
  float: right;
}

.info-text {
  text-align: justify;
  margin-bottom: 2rem;
}

.separator {
  position: relative;
}

.separator-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 393/454;
  opacity: 0.5;
}

.separator-text {
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
}

.separator-text path {
  fill: transparent;
  stroke: #ee1720;
  stroke-width: 2;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  animation: svgDraw 15s ease-in-out infinite;
}

.cards-section {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-container {
  display: flex;
  flex-direction: column;
}

.card {
  position: relative;
}

.card-img {
  border-radius: 8px;
  width: 100%;
  margin-top: 2rem;
}

.card-info {
  color: white;
  position: absolute;
  width: 100%;
  aspect-ratio: 6/2;
  bottom: 1.7%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-info .card-title {
  font-family: "Amarante";
  font-size: 1.3rem;
}

@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
  .navbar {
    justify-content: space-around;
  }
  .navbar-links {
    display: flex;
    gap: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-items: center;
  }
  .navbar-links p {
    color: white;
  }
  .navbar-links p:hover {
    color: #ee1720;
  }
  .navbar-links img {
    width: 20px;
  }
  .navbar-links .btn {
    border-radius: 100vh;
    text-transform: uppercase;
  }
  .navbar-link {
    padding: 0.5rem;
    padding-inline: 1rem;
    display: flex;
    gap: 10px;
    border-radius: 100vh;
  }
  .hero-content {
    flex-direction: row;
  }
  .hero-text {
    gap: 60px;
  }
  .hero-buttons {
    display: flex;
    flex-direction: row;
  }
  .hero-img-container {
    right: 10px;
    width: 40%;
  }
  .info-img {
    width: 50%;
  }
  .info-img:nth-child(1) {
    float: left;
    margin-right: 40px;
  }
  .info-img:nth-child(3) {
    margin-left: 40px;
    float: right;
    width: 40%;
  }
  .separator-img {
    aspect-ratio: 1280/475;
  }
  .separator-text {
    transform: scale(5);
  }
  .cards-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .card {
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  .card:hover + .card * {
    transform: rotateY(30deg) translateZ(30px);
    filter: brightness(0.7);
  }
  .card:hover .card-img {
    transform: scale(1.1);
  }
  .card:hover .card-info {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0);
  }
  .card:has(+ *:hover) * {
    transform: rotateY(-30deg) translateZ(30px);
    filter: brightness(0.7);
  }
}
.footer {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  color: white;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    text-align: left;
  }
}
.footer .footer-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .footer .footer-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer .footer-group {
  display: flex;
  flex-direction: column;
}
.footer .group-title {
  text-transform: uppercase;
}
.footer .group-link {
  text-transform: capitalize;
}
.footer .footer-copyright {
  color: #ee1720;
  text-align: center;
}
.footer .social-link {
  width: 40px;
}

/*# sourceMappingURL=style.css.map */
