html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h3{
  font-size: 50px;
  text-transform: uppercase;
}
h2{
  font-size: 30px;
  text-transform: uppercase;
  font-famil
}

p{
  font-size: 20px;
}

.bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  padding: 15px 20px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  z-index: 30;

  gap: 20px;
}

.home {
  width: 40px;
}

.nav-menu {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
}

.nav-menu:hover {
  color: #a32424;
  transition: 0.3s ease-in;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;

  width: 260px;
  height: 100%;

  display: grid;
  grid-auto-rows: min-content;
  gap: 15px;
  align-content: start;

  padding: 20px;

  background: rgba(133, 131, 131, 0.4);
  backdrop-filter: blur(15px);

  transform: translateX(100%);
  transition: 0.3s ease;

  z-index: 20;
}

.menu.active {
  transform: translateX(0);
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);

  opacity: 0;
  pointer-events: none;

  transition: 0.3s ease;

  z-index: 10;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.video-container {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;


}

.vid1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.carousel {
  margin: 100px auto;
  width: 100%;


  border: solid rgb(0, 0, 0);

  display: flex;
}

.group {
  display: flex;
  gap: 1em;
  width: max-content;

  animation: spin 20s linear infinite;
}

.card {
  flex: 0 0 300px;
  height: 300px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2em;
}

@keyframes spin {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.info {
  text-align: center;
}
 
 h3{
  text-align: center;
  text-transform: uppercase;
 }

 .steps{
  background-color: #ffffff;
 }

 .step1 {
   display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "title title"
    "image text";
  gap: 20px;
  align-items: center;
}

.step1 h3 {
   grid-area: title;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step1 p {
 grid-area: text;

  transform: translateX(100px);
  opacity: 0;

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.step1:hover p {
  transform: translateX(0);
  opacity: 1;
  filter: brightness(0.6);
}

.step1 img {
  grid-area: image;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.step2 {
   display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-areas:
    "title title"
    "text image";
  gap: 20px;
  align-items: center;
}

.step2 h3 {
   grid-area: title;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step2 p {
 grid-area: text;

  transform: translateX(-100px); 
  opacity: 0;

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.step2:hover p {
  transform: translateX(0);
  opacity: 1;
  filter: brightness(0.6);
}

.step2 img {
  grid-area: image;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.step3 {
   display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "title title"
    "image text";
  gap: 20px;
  align-items: center;
}

.step3 h3 {
   grid-area: title;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step3 p {
 grid-area: text;

  transform: translateX(100px);
  opacity: 0;

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.step3:hover p {
  transform: translateX(0);
  opacity: 1;
  filter: brightness(0.6);
}

.step3 img {
  grid-area: image;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.step4 {
   display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-areas:
    "title title"
    "text image";
  gap: 20px;
  align-items: center;
}

.step4 h3 {
   grid-area: title;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step4 p {
 grid-area: text;

  transform: translateX(100px);
  opacity: 0;

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.step4:hover p {
  transform: translateX(0);
  opacity: 1;
  filter: brightness(0.6);
}

.step4 img {
  grid-area: image;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.step5 {
   display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "title title"
    "image text";
  gap: 20px;
  align-items: center;
}

.step5 h3 {
   grid-area: title;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step5 p {
 grid-area: text;

  transform: translateX(100px);
  opacity: 0;

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.step5:hover p {
  transform: translateX(0);
  opacity: 1;
  filter: brightness(0.6);
}

.step5 img {
  grid-area: image;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
#how2{
  text-align: center;
}
#social {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  padding: 10px 20px;
  background-color: #ffffff;
}

.fa-instagram {
  font-size: 30px;
  color: #d62976;
  transition: 0.3s ease;
}

.fa-instagram:hover {
  transform: scale(1.2);
}