* {
  margin: 0;
  padding: 0;
  font-family: sans-serif, "Poppins";
  box-sizing: border-box;
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#f44336, #730228);
  display: flex;
  align-items: center;
  justify-content: center;
}

.selector {
  width: 350px;
}

#selectField {
  width: 100%;
  padding: 15px 20px;
  margin: 0 0 30px 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#selectField i {
  width: 12px;
  transition: transform 0.5s;
}

.fa-caret-down {
  transform: scale(1.5);
}

#list {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  overflow: hidden;
}

.option {
  width: 100%;
  /* padding: 7px 0 0 70px; */
  list-style: none;
  cursor: pointer;
  /* margin: 5px; */
  /* box-sizing: border-box; */
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

li i {
  margin-top: 20px;
  transform: scale(1.5);
  position: relative;
  left: 25px;
  top: 18px;
}
p {
  margin: 0 0 10px 60px;
}

.option:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hide {
  visibility: hidden;
}
.rotate {
  transform: rotate(180deg) scale(1.5);
}
