.element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 24px;
  width: 100%;
  background-image: url(https://c.animaapp.com/QmdFUQL5/img/--------------------2.png);
  background-size: cover;
  background-position: 50% 50%;
}

.logo {
  width: 156px;
  height: 72px;
  object-fit: cover;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  width: 100%;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 195px;
}

.hero-icon {
  position: absolute;
  width: 117px;
  height: 122px;
  top: 73px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.hero-text {
  font-family: "IBM Plex Sans", Helvetica;
  font-weight: 600;
  color: var(--mainblack);
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 24px;
  width: 100%;
}

.event:nth-child(odd) {
  background-image: url(https://c.animaapp.com/QmdFUQL5/img/--------------1-2.png);
  background-size: cover;
  background-position: 50% 50%;
}

.event:nth-child(even) {
  background-image: url(https://c.animaapp.com/QmdFUQL5/img/---------------2-2.png);
  background-size: cover;
  background-position: 50% 50%;
}

.event-title {
  font-family: "IBM Plex Serif", Helvetica;
  font-weight: 600;
  color: #322708;
  font-size: 44px;
  letter-spacing: 0;
  line-height: 1.28;
  text-align: center;
  margin-bottom: 42px;
}

.event-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  width: 100%;
}

.event-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.divider {
  width: 100px;
  height: 6px;
  background-color: #655b40;
}

.event-text p {
  font-family: "IBM Plex Sans", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 22px;
  letter-spacing: 0.22px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 44px;
  background-color: #655b40;
  font-family: "IBM Plex Sans", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0.22px;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #4a4230;
}

.event-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-image {
    width: 40%;
  }

  .hero-text {
    width: 55%;
    text-align: left;
  }

  .event-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .event-text,
  .event-image {
    width: 48%;
  }

  .event:nth-child(even) .event-content {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1280px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 57px 370px;
  }

  .logo {
    margin-right: 60px;
  }

  .hero {
    width: auto;
  }

  .event {
    padding: 113px 370px;
  }

  .event-title {
    font-size: 56px;
  }

  .event-content {
    gap: 128px;
  }

  .event-text,
  .event-image {
    width: 45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
