nav{
  margin: 2%;
}

.our-solutions{
  background-size: cover;
  background-image: url("/images/background-images/5g-towers.png");
  background-position: center;
  height: 80vh;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.our-solutions p{
  width: 90%;
}

.search-bar{
  border-radius: 50px;
  display: flex;
  align-items: center;
  background-color: white;
  width: 90%;
  width: 30rem;
  min-height: 0.05rem;
  padding: 0.3rem 0.3rem;
}

.search-bar input{
  background: transparent;
  height: 0.5vh;
  flex: 1;
  border: 0;
  outline: none;
  padding: 20px 15px;
  font-size: 1vw;
}

.search-bar button{
  background-color:#d2b48c;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 50px;
}

.search-bar button img{
  height: 30px;
}
::placeholder{
  color: gray;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 6rem;
  width: 80%;

}

.document-container {
  user-select: none;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 20rem;
  height: 100%;
  background-color:#d2b48c;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.document-container img{
  display: flex;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  border-radius: 20px;
}

.document-container span{
  padding: 2vh;
  width: 100%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
}

.document-container p{
  height: 5rem;
  width: 90%;
  color: gray;
  margin-bottom: 2rem;
}

.document-container a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: black;
  color: #d2b48c;
  width:  10rem;
  height: 3rem;
  border: none;
  border-radius: 60px;
  text-decoration: none;
  text-align: center;
}

.document-container a:hover{
  color:white;
}

.download-button{
  padding-bottom: 1vh;
  
}

.inline-items{
  width: 70%;
  display: flex;
  justify-content:space-evenly;
}

.inline-items span{
  margin-top: 10%;
}

#example-slider{
  width: 100px;
}









