.menu-box {
  display: flex;
  flex-direction: row;
  background-color: #1E1E1E;
  color: white;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
}

.menu-box-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 5rem;
}

.menu-section-1 {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 8%;
}

.menu-sec-1-box {
  display: flex;
  align-items: center;
}

.menu-sec-1-box-heading {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 600;
  user-select: none;
}

.menu-sec-1-box-heading:hover {
  font-weight: 700;
}

.menu-sec-1-box-img {
  display: none;
  margin-left: 5%;
  margin-right: 5%;
}

.menu-sec-1-box-line {
  border-bottom: 0.2rem solid white;
  width: 10rem;
}

.menu-sec-1-box-details {
  display: none;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0.3px;
}

.menu-sec-1-box-details-p:hover {
  color: #e1519b;
}

.menu-section-2 {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
  margin-right: 1rem;
}

/* .menu-sec-2-imgBox {
  width: 10rem;
  height: 10rem;
  margin-bottom: 1.5rem;
  background-color: grey;
} */

.menu-sec-2-box {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.menu-sec-2-box-img {
  margin-right: 1rem;
}

.menu-sec-2-box-p {
  margin: 0;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.3px;
}

.menu-sec-2-socials {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  width: 10rem;
  justify-content: space-between;
}

.menu-sec-2-socials a:hover img {
  filter: invert(41%) sepia(41%) saturate(1226%) hue-rotate(281deg) brightness(99%) contrast(86%);
}

.menuCloseBtn {
  position: absolute;
  right: 3rem;
  top: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-box {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: scroll;
  }
}

@media (max-width: 900px) {
  .menu-box-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .menu-section-1 {
    width: 90%;
    padding-left: 5%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 900px) {
  .menu-sec-1-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .menu-sec-1-box-details {
    line-height: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
  }
}

@media (max-width: 900px) {
  .menu-sec-1-box-details {
    padding-left: 2rem;
  }
}

@media (max-width: 900px) {
  .menu-section-2 {
    margin: 0;
    width: 90%;
    padding-left: 5%;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

.menu-links {
  color: white;
  text-decoration: none;
}

.menu-links:hover {
  color: #e1519b;
}

