* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  box-sizing: border-box;
}
header {
  display: flex;
  background-color: wheat;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #282c3f;
}
.myntrahome {
  height: 45px;
  mix-blend-mode: darken;
}
.logo_container {
  margin-left: 3%;
  padding: 3%;
}
.action_bar {
  margin-right: 4%;
}
.nav_bar {
  display: flex;
  min-width: 500px;
  justify-content: space-evenly;
}
.nav_bar a {
  font-size: 14px;
  letter-spacing: .3px;
  color: #282c3f;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 29px 0;
  border-bottom: 3px;
  
}
.nav_bar a:hover{
    border-bottom: 3px solid red;
}
.nav_bar a sup {
  color: red;
}
.search_bar {
  display: flex;
  height: 40px;
  min-width: 200px;
  align-items: center;
width: 30%;
}
.material-symbols-outlined {
  border-radius: 4px 0 0 4px;
  box-sizing: content-box;
  height: 20px;
  padding: 10px;
  background-color: #f5f5f5;
  color: #282c3f;
  font-weight: 300;

}
.search_input {
  border:0;
  background: #f5f5f6;
  flex-grow: 1;
  height: 40px;
  border-radius: 0 4px 4px 0;
}
.action_container {
  mix-blend-mode: darken;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}
.action_bar {
  display: flex;min-width: 200px;justify-content: space-evenly;
}
/*Main Section starts*/
.banner_container{
margin: 40px 0;
/* overflow: scroll; it creates scroll bar */
}
.banner{
 width: 100%;
}
.category_heading{
  text-transform: uppercase;
  color: #3e4152;
  letter-spacing: .15em;
  font-size: 1.8em;
  margin:50px 0 10px 30px ;
  max-height: 5em;
  font-weight: 700;
}

/* new update */
.container img {
  cursor: pointer;
  width: 98.5vw;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 25px;
}

.section {
  display: flex;
  margin: 3px 2px;
  justify-content: center;
}

.section img {
  cursor: pointer;
  width: 48vw;
  background-size: cover;
}

.section1 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section2 {
  display: flex;
  justify-content: center;
}

.section2 img {
  cursor: pointer;
  width: 285px;
  height: 380px;
}

.section3 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section4 {
  display: flex;
  justify-content: center;
}

.section4 img {
  cursor: pointer;
  width: 290px;
  height: 345px;
}

.section5 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section6 {
  display: flex;
  justify-content: center;
}

.section6 img {
  cursor: pointer;
  width: 291px;
  height: 375px;
}

.section7 img {
  cursor: pointer;
  width: 100vw;
  background-size: cover;
}

.section8 {
  display: flex;
  justify-content: center;
}

.section8 img {
  cursor: pointer;
  width: 261px;
  height: 351px;
}
/* new update close */
.category_items{
display:flex;
flex-wrap: wrap;
justify-content: space-evenly;

}
.offers{
  width:250px;
}
.footer{
padding: 30px 0px 40px 0px;
background: #FAFBFC;
/* display:flex; */
justify-content: space-evenly;
}
.footer_column{
display: flex;
flex-direction: column;

}
.footer_column h3{
font-size: 14px;
color: #282c3f;
margin-bottom: 25px;
}
.footer_column a{
  color: #696b79;
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 5px;

}
.copyright {
  color: #94969f;
  text-align: end;
  padding: 15px;
}
.contact{
background-color: black;
color: rgb(233, 22, 22);
text-align: center;
}
.email{
  background-color: black;
  color: rgb(208, 255, 0);text-align: center;

}
.headlines{
  background-color: black;
  color: rgb(0, 255, 42);
  text-align: center;

}
.logo{
  background-color: rgb(11, 138, 212);
  color: aqua;
  text-align: center;
 
}
.footer_section {
  display: flex; /* Use flexbox to align items in a row */
  justify-content: space-between; /* Space out the columns */
  padding: 15px; /* Add some padding around the section */
}
.closing_column {
  flex: 1; /* Allow each column to take equal space */
  margin: 0 10px; /* Add some margin between columns */
  flex-direction: column;
}

h3 {
  margin-bottom: 10px; /* Add space below the heading */

}

a {
  display: block; /* Make links block elements for better spacing */
  margin: 5px 0; /* Add some margin between links */
  text-decoration: none; /* Remove underline from links */
  color: #007bff; /* Link color */
}

a:hover {
  text-decoration: underline; /* Underline on hover */
}


