/*  Styling for the  header  */
* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
}

.colors {
  margin: 0px auto;
  /* width: 100%; */
  height: 30px;
  background-color:#f0f0ed;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 20px;
  border-top: 4px solid black;
}

.colors2 {
  background-color: #f0f0ed;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 20px;
  cursor: pointer;
}

header {
  margin: 10px 10px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-evenly;
}

/* Search Input */
.search-input {
  width: 800px;
  height: 20px;
  display: flex;
  gap: 10px;
}

.search-input ion-icon {
  font-size: 30px;
  color: rgb(36, 108, 241);
}
.search-input input {
  margin-left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  border-radius: 15px;
  padding: 2px 8px;
}

/*    Contact Detailes    */
.search-input + div {
  width: 600px;
  /* background-color: aqua; */
  height: 70px;
  margin-right: -90px;
  margin-left: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.search-input + div span {
  font-size: 12px;
  color: rgb(36, 108, 241);
  text-align: start;
  margin-right: 20px;
}

/* Features */

.features {
  width: 85%;
  display: flex;
  justify-content: space-evenly;
  margin: 30px auto;
  height: 60px;
}

.features > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features > div ion-icon {
  font-size: 40px;
  color: blue;
}
/* Coding for icons */

ion-icon[name="bag-outline"] {
  font-size: 150px;
  color: rgb(25, 108, 216);
}

ion-icon[name="search-circle-oultine"] {
  font-size: 50px;
}
.colors a{
  border: none;
  background: none;
  text-decoration: underline;
  color:#08c;
  padding: 0;
  font-size: 12px;
}
.colors>p{
  font-size: 12px;
}