/* ------------------------------------------------ */
/* ----------------GENERAL STRART------------------ */
/* ------------------------------------------------ */

:root {
  --main-bg-color: black;
  --main-body-color: rgb(245, 236, 236);
  --main-font-color: rgb(230, 223, 223);
  --secondary-font-color: rgba(0, 0, 0, 0.836);
  --main-line-color: rgb(136, 136, 136);
  --bosh-font-color: #005587;
  --main-bg-dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Sans-Serif;
}

html {
  scroll-behavior: smooth;
}

/* ------------------------------------------------ */
/* --------------------NAV STRART------------------ */
/* ------------------------------------------------ */

.myNavBar {
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--main-font-color);
  padding: 15px;
}

.mySearchIconJS:hover,
.myLoginIcon:hover {
  font-size: 2rem;
  transition: 150ms;
}

.mySearchField {
  width: 0;
  transition: all;
  visibility: hidden;
  margin: 0 0 0 0;
}

@media (min-width: 601px) {
  .myNavBarMedia {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .myNavSection {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .MyNavMenu {
    top: 80px;
  }
}

@media (max-width: 600px) {
  .myNavBarMedia {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: space-around; */
  }

  .myLogo {
    margin-bottom: 12px;
  }

  .myNavSection {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .MyNavMenu {
    top: 130px;
  }
}

#MyNavBtn {
  /* position: fixed;
  z-index: 100;
  top: 20px;
  right: 20px; */
  width: 35px;
  height: 35px;
  border: 1px solid black;
  background-color: rgba(0, 0, 0, 0.255);
  font-size: 1.5rem;
  rotate: 90deg;
  display: flex;
  justify-content: center;
  align-items: center;
}

.MyNavMenu {
  width: 250px;
  border: 1px solid, black;
  height: 350px;
  padding-top: 25px;
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color: var(--main-bg-dark);
  /* top: 80px; */
  right: 0;
  transform: translate(250px);
  transition: all 350ms ease-in;
  gap: 2rem;
}

.welcome {
  margin-right: auto;
  margin-left: auto;
}

/* ------------------------------------------------ */
/* -------------------BODY STRART------------------ */
/* ------------------------------------------------ */

.myTitle {
  color: var(--bosh-font-color);
  font-weight: bold;
}

.myBody {
  background-color: var(--main-body-color);
  color: var(--secondary-font-color);
}

.myText {
  color: var(--secondary-font-color);
  text-align: justify;
}

/* ------------------------------------------------ */
/* ------------------FOOTER START------------------ */
/* ------------------------------------------------ */

.myFooter {
  height: 200px;
  color: var(--main-font-color);
  border-top: solid 1px var(--main-line-color);
  background-color: var(--main-bg-color);
  text-align: center;
}
