@media (max-device-width: 1000px) and (min-device-height: 300px) {
  * {
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(240, 239, 239);
  }

  .nav-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0px;
    height: 70px;
    border-radius: 2px;
    transition: all 0.7s;
  }

  .menu-top a {
    color: rgb(53, 51, 51);
  }

  .get {
    display: none;
  }

  .home-intro {
    width: 100%;
    height: fit-content;
    top: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    padding-bottom: 40px;
    animation: animate 1s ease-in-out;
    margin-top: 30px;
    background-color: rgb(221, 253, 229);
    box-shadow: 3px 3px 3px 3px rgb(213, 216, 213);
    color: rgb(53, 51, 51);
  }

  .home-intro h1 {
    text-align: center;
  }

  .search_input_field {
    display: none;
  }

  .trendingSearches_div {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    color: rgb(53, 51, 51);
    margin-top: 0px;
  }

  .bg {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    height: 0%;
    filter: blur(1px);
    margin-bottom: 10px;
    display: none;
  }

  .screen-1,
  .screen-2,
  .screen-3,
  .screen-4 {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 15px;
    gap: 0px
  }

  .screen-1 {
    margin-top: -80px;
  }

  .screen-1 img,
  .screen-2 img,
  .screen-3 img {
    width: 90%;
  }

  .inside-1,
  .inside-2,
  .inside-3,
  .inside-4 {
    height: fit-content;
    width: 90%;
  }

  .trending {
    width: fit-content;
    height: 40px;
    color: rgb(53, 51, 51);
    border: 0.3px solid rgb(80, 253, 41);
  }
}