* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

@keyframes animate {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 20px;
  margin-top: 5px;
  animation: loading 2.2s infinite;
}

.nav-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 20px;
  height: 70px;
  border-radius: 2px;
  transition: all 0.7s;
  position: relative;
  color: black;
  background-color: white;
  box-shadow: 3px 3px 3px 3px rgb(196, 192, 192);
}

.menu-top {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  color: white;
}

.getStarted_btn {
  width: 120px;
  height: 40px;
  background-color: rgb(46, 252, 46);
  border-radius: 10px;
  outline: none;
  border-style: none;
  cursor: pointer;
  transition: all 0.5s;
  font-family: 'Poppins', sans-serif;
}

.get {
  transition: all 0.5s;
}


.menu-top a {
  cursor: pointer;
  text-decoration: none;
  font-size: small;
  color: black;
  opacity: 0.7;
  transition: all 0.6s;
}

.menu-top a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}


.home-intro {
  border: solid red;
  width: 700px;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  border: 1px solid rgb(193, 255, 177);
  color: black;
  padding-bottom: 40px;
  animation: animate 1s ease-in-out;
  margin: auto;
  margin-top: 60px;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.get_Started_Home {
  width: 120px;
  height: 40px;
  background-color: rgb(46, 252, 46);
  border-radius: 10px;
  outline: none;
  border-style: none;
  cursor: pointer;
  transition: all 0.5s;
  font-family: 'Poppins', sans-serif;
}

.search_input_field {
  width: 500px;
  height: 50px;
  border-radius: 30px;
  outline: none;
  border-style: none;
  text-align: center;
  opacity: 0.8;
  transition: all 0.5s;
}

.search_input_field:focus {
  opacity: 1;
}

.trendingSearches_div {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: fit-content;
  height: 50px;
  position: relative;
  margin: auto;
  margin-top: 40px;
  color: black;
  align-items: center;
  animation: animate 1s ease-in-out;
}

.trending {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  outline: none;
  border: 1px solid rgb(193, 255, 177);
  background-color: transparent;
  color: black;
  cursor: pointer;
  transition: all 0.5s;
  font-family: 'Poppins', sans-serif;
}

.trending:hover {
  border: 1px solid rgb(80, 253, 41);
}


.svg-icon {
  width: 2.5em;
  height: 2.5em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #4691f6;
}

.svg-icon circle {
  stroke: #4691f6;
  stroke-width: 1;
}