/* The side navigation menu */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.head {
  position: sticky;
  z-index: 1;
  top: 0;
}

.bahar {
  width: 100%;
  margin: auto;
  /* height: auto; */
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* background-color: black; */
}

.daye {
  /* background-color: aqua; */
  width: 300px;
  border-right: 4px solid black;
}
.baye {
  /* background-color: aquamarine; */
  width: 1000px;
}

@media screen and (max-width: 1300px) {
  .daye {
    border-right: 0px solid black;
  }
}

.text-hamara {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  height: 60vh;
  position: relative;
}

.text-hamara h1 {
  margin: 20px;
}

.text-hamara p {
  text-align: justify;
  padding: 5px;
}

@media screen and (min-width: 1300px) {
  .text-hamara h1::after {
    content: "";
    position: absolute;
    width: 61%;
    height: 3px;
    background-color: black;
    top: 70px;
    left: 0;
  }
}
