* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0px;
}

.hamburgermain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
}

.hamburgermain img {
  height: 13px;
  cursor:pointer;
}

.hamburgermain p {
  font-family: "Hurme Geometrical Sans 1", sans-serif;
  color: #5b6f7b;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
}

.sevenlogo img {
  height: 66px;
}

.header .btn {
  font-family: "Hurme Geometrical Sans 1", sans-serif;
  font-weight: 600;
  font-size: 12.71px;
  color: #fff !important;
  background: #125451;
  border-radius: 79.21px;
  padding: 21px 40px;
  border: none;
  letter-spacing: 1.96px;
  text-decoration: none;
}

/* OVERLAY BASE */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #0C3634;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  visibility: hidden;
}

/* ACTIVE STATE */
.menu-overlay.active {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.6s ease;
}

/* TOP BAR */
.menu-header {
  height: 80px;
  /* padding: 22px 68px; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 90%;
  margin: auto;
  padding-top: 40px;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 22px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  display: flex;
  gap: 17px;
  align-items: center;
  font-family: "Conqueror Sans", sans-serif;
  color: #e1dad2;
  cursor: pointer;
}

.close-btn img {
  width: 20px;
  height: 20px;
}

/* MENU CONTENT */
.menu-inner {
  display: flex;
  height: calc(100vh - 80px);
  gap: 100px;
  width: 90%;
  margin: auto;
}

/* LEFT IMAGE COLUMN */
.menu-image {
  width: 86%;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  object-position: top;
}

/* RIGHT MENU COLUMN */
.menu-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-links a {
  font-size: 36px;
  text-decoration: none;
  color: #e1dad2 !important;
  position: relative;
  width: fit-content;
  font-weight: 400;
  transition: font-weight 0.2s ease;
  opacity: 40%;
  font-family: "Conqueror Sans", sans-serif;
  line-height: 80px;
}

.menu-links a:hover {
  opacity: 100%;
}

.menu-links a.active {
  font-weight: 400;
  opacity: 100%;
}

.mobilemenu-logo {
  display: none;
}

@media screen and (max-width: 1000px) {
  .hamburgermain,
  .header {
    width: 33.33%;
  }

  .header {
    display: flex;
    justify-content: flex-end;
  }

  .hamburgermain p {
    display: none;
  }
  .header .btn {
    font-size: 12px;
    padding: 15px 15px;
  }
  .hamburgermain img {
    height: 10px;
  }
  .menu-inner {
    display: flex;
    height: calc(100vh - 80px);
    gap: 50px;
    width: 90%;
    margin: auto;
  }
  .menu-links a {
    font-size: 30px;
    line-height: 60px;
  }
  .menu-image {
    width: 70%;
  }
  .menu-links {
    width: 50%;
  }
  .close-btn img {
    width: 13px;
    height: 13px;
  }

  .close-btn {
    font-size: 15px;
    gap: 8px;
  }
  .header:nth-of-type(3) {
    display: none;
  }
  .header {
    justify-content: normal;
  }
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    flex-direction: row-reverse;
  }
  .hamburgermain {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 23px;
  }
}

@media screen and (max-width: 600px) {
  .mobilemenu-logo {
    display: block;
  }
 .mobilemenu-logo svg{
         width: 150px;
         height:auto;
 }
  .menu-image {
    display: none;
  }
  .menu-inner {
    display: flex;
    height: calc(100vh - 80px);
    gap: 50px;
    width: 100%;
    margin: auto;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
  }
  .menu-links a {
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 100%;
  }
  .menu-header {
    height: 80px;
    /* padding: 22px 68px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding-top: 40px;
  }
  .mobilemenu-logo img {
    width: 150px;
  }
  .header.sevenlogo svg{
      width:185px;
  }
}
