  * {
    margin: 0px;
    padding: 0px;
    font-family: 'Segoe UI';

  }

  header {
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: black;

  }



  ul {
    list-style: none;
    display: flex;
    column-gap: 20px;
    font-size: 16px;
  }

  li {
    cursor: pointer;
  }

  #menu {
    display: none;
    margin-left: 20px;
  }



  .right {
    width: 250px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .by-btn {
    font-size: 15px;
    padding: 10px;
    width: 100px;
    border: 2px black solid;
    background-color: white;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;

  }

  #search {
    display: none;
  }

  @media (max-width:1000px) {
    header {
      display: flex;
      justify-content: space-between;
      padding: 0px 25px;
    }

    ul {
      display: none;
    }

    .right {
      display: none;

    }

    #search {
      display: block;
    }

    #menu {
      display: block;
    }

    .search-menu {
      display: flex;
    }

  }


  /*  */
  section {
    width: 90%;
    margin: 20px auto;
    text-align: center;
  }

  #text {
    font-size: 50px;
    padding-top: 50px;
  }

  #text2 {
    font-size: 26px;
    margin-top: 50px;
  }

  #down-btn {
    background-color: #00b6d1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    width: 300px;
    height: 50px;
    margin-top: 50px;
    cursor: pointer;
  }

  @media (max-width:760px) {
    section {
      margin-top: 0px;
    }

    #text {
      font-size: 38px;
    }

    #text2 {
      font-size: 20px;

    }
  }

  @media (max-width:395px) {
    section {
      margin-top: 0px;
      padding-top: 0px;
    }

    #text {
      font-size: 35px;
      padding-top: 0px;
    }

    #text2 {
      font-size: 20px;

    }
  }

  /*  */
  /*  */
  .sec2 {
    width: 90%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  #text3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    column-gap: 10px;

  }

  #small-text {
    font-size: 13px;
    display: flex;
    align-items: center;
  }

  @media (max-width:625px) {

    #text3 {
      font-size: 18px;



    }

    #small-text {
      font-size: 14px;

    }

  }

  /* Grid */

  .grid {
    height: 95%;
    width: 80%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 25px;

  }

  .items {
    background-color: #f9f9f9;
    text-align: center;
    height: 200px;
    border-radius: 5px;
  }

  h2 {
    margin-top: 6px;
    margin-bottom: 13px;
  }

  .all-btn {
    color: white;
    background-color: #5cb85c;
    width: 150px;
    border-radius: 5px;
    margin-top: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    padding: 6px;
  }

  .sha {
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .little-text {
    font-size: 8px;
    padding-left: 15px;
    padding-right: 15px;
  }

  a {
    text-decoration: none;
    font-size: 15px;
    color: white;
  }

  @media (max-width:900px) {
    .grid {
      grid-template-columns: 1fr 1fr;
    }


  }

  @media (max-width:600px) {
    .grid {
      grid-template-columns: 1fr;
    }

    .items {
      width: 270px;
      margin: auto;
    }
  }

  /* Details */
  .Details {
    width: 100%;
    background-color: #222;
    color: white;
    display: flex;
    flex-direction: column;
    /* Make it vertical */
    align-items: center;
    padding: 50px 0;
    gap: 30px;
  }

  .details-sec1 {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;

  }

  .details-item {
    height: auto;
    width: 300px;
  }

  .detail-left {
    margin-top: 50px;
    width: 48%;
    min-width: 300px;
  }

  .detail-right {
    height: 270px;
    width: 48%;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  input {
    height: 50px;
    width: 250px;
    border: 1px solid rgb(197, 197, 197);
    margin: 10px auto
  }

  .signup-btn {
    height: 50px;
    width: 250px;
    margin-left: 40px;
    background-color: #4daaf2;
    box-shadow: 0px 0px 0px 5px #4daaf2;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 800;
    margin: 10px auto;
    margin-top: 0px;
  }

  .detail-below {
    width: 1000px;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
    padding-bottom: 50px;
  }


  @media (max-width:1050px) {
    .Details {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
      align-items: center;
      padding: 0px;
      margin: 0px;

    }

    .details-sec1 {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      text-align: center;
      row-gap: 50px;
      width: 90%;


    }

    .detail-left {
      width: 80%;
    }

    .detail-below {
      width: 80%;
      margin-top: 50px;
    }
  }

  /*  */

  .grid2 {
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }

  .grid2-text {
    height: auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-row: 1fr;
    gap: 10px;
  }

  .grid2-items p {
    color: #4c4747;
    font-size: 15px;
  }


  #input,
  #button {
    width: 200px;
    height: 30px;
    border-radius: 5px;
    margin-left: 0px;
    margin-top: 10px;
    padding: 5px;

  }

  #input {
    border: 1px solid grey;
  }

  #button {
    width: 215px;
    background-color: #00b6d1;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    height: 35px;
  }

  @media(max-width: 1000px) {
    .grid2-text {
      grid-template-columns: 1fr 1fr;
    }

  }

  @media(max-width: 400px) {
    .grid2-text {
      grid-template-columns: 1fr;
    }

  }

  /*  */

  .last {
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px auto;

  }

  .last-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
  }

  footer p {
    margin-bottom: 50px;
    text-align: center;
  }
