@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap");

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* .navigation { 
  display: flex;
  justify-content: space-around;
}

.rightnavi ul {
  list-style: none;
  display: flex;
}

.rightnavi ul li {
  display: flex;
}

.rightnavi ul li a {
  text-decoration: none;
} */

body {
  font-family: sans-serif;
}
.hero {
  background: #1d2026;
  min-height: 100vh;
  width: 100%;
  color: #fff;
  /* position: relative; */
}

.logo {
  font-size: 2rem;
}

.navi {
  display: flex;
  padding-top: 30px;
  /* flex-direction: row; */
  justify-content: space-around;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rightnavi ul {
  display: flex;
  gap: 20%;
  justify-content: space-between;
  list-style: none;
  margin-left: 27rem;
}
.rightnavi ul li {
  color: red;
}
.rightnavi ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
}

.rightnavi ul li a:hover {
  text-decoration: underline 0.3rem #7d6233;
}

.exp {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 4vmax;
  height: 3rem;
  width: 13rem;
  margin: auto;
  margin-top: 2rem;
}

.exp :hover {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7d6233;
  border-radius: 4vmax;
  height: 3rem;
  width: 13rem;
  /* margin-top: 5rem; */
}

.exp a {
  text-decoration: none;
  font-size: large;
  color: white;
}

.control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.control .line {
  width: 250px;
  height: 4px;
  background: #fff;
  margin: 20px;
  border-radius: 2px;
}

.line span {
  width: 50%;
  height: 8px;
  margin-top: -2px;
  border-radius: 4px;
  background-color: #000;
  display: block;
}

.navi .fa-bars {
  visibility: hidden;
  /* margin-right: 3000px; */
  color: white;
}
.navi .fa-x {
  visibility: hidden;
}

@media all and (max-width: 900px) {
  .navi {
    display: flex;
    padding-top: 30px;
    flex-direction: row;
    justify-content: space-around;
  }
  .rightnavi ul {
    display: block;
    padding: 30px;
    margin-left: 0rem;
  }
  .rightnavi ul li {
    margin: 20%;
    margin-left: 10%;
  }
  .rightnavi {
    /* text-align: left; */
    padding: 0px;
    position: absolute;
    background-color: #1d2026;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -300px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }

  .exp :hover {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-radius: 4vmax;
    height: 3rem;
    width: 13rem;
  }

  .control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }

  .navi .fa-x {
    visibility: visible;
    display: block;
    color: white;
    margin-top: 30px;
    margin-left: 20px;

    font-size: 20px;
    font-weight: 700;
    /* cursor: pointer; */
  }
  .navi .fa-bars {
    visibility: visible;
    display: flex;
    flex-wrap: wrap;
    font-size: 25px;
    font-weight: 700;
  }

  .container2 {
    /* flex-wrap: wrap; */
    /* display: flex; */
    /* flex-direction: column; */
    margin: 20%;
  }

  .ima {
    display: flex;
    justify-content: center;
    background-color: white;
    height: 100%;
    width: 100%;
    margin-top: 10%;
    /* transform: rotate(40deg); */
  }
}

/* <!-----------apple -------------- */

.container2 {
  display: flex;

  /* align-content: center; */
  margin-top: 17%;
  /* color: #7d6233; */
  text-align: center;
}
.container2 p {
  padding-top: 20px;
}

.ima {
  display: flex;
  /* justify-content: center;
  background-color: #424148; */
  height: 15rem;
  min-width: 50%;
  border-radius: 1rem;
  /* transform: rotate(40deg); */
}
.ima:hover {
  transform: rotate(0deg);
  transform: scale(1.1);
  transition: all 200ms ease-in-out;
}
