/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}



/* New css */
.event-hero-item {
  position: relative;
  overflow: hidden;
}

.main-header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.main-header .container {
  max-width: 1300px;
}

.header-wrap {

  background: #ffffff;
  border-radius: 18px;
  min-height: 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, .08);
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #232323;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 40px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  list-style: none;
}

.nav-menu ul li a {

  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.book-btn {
  background: #009a71;
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.book-btn:hover {
  color: #fff;
}

.menu-toggle,
.close-menu {
  display: none;
}


.hero-main-title {
    font-size: 110px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: .9;
}
.hero-description {
  right: 0;
  width: 380px;
}


@media (max-width: 991px) {

  .menu-toggle {
    display: block;
    background: transparent;
    border: 0;
    font-size: 28px;
    cursor: pointer;
  }

  .header-center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 80px 30px;

    transition: all .4s ease;

    z-index: 99999;
  }

  .header-center.active {
    right: 0;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 0;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .header-right {
    margin-top: 30px;
    width: 100%;
  }

  .book-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-menu ul li a {
    color: #fff;
  }

  .hero-main-title {
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 1px;

  }
}