/*-------general css -----*/
html,
body {
  width: 992px;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: black;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

/*---------------------------------------------main page css -----------------------------------------*/
/*-------header  -----*/
.header_div {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
}

.header_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.brand {
  width: 30%;
  font-size: 20px;
}

.header_nav {
  width: 70%;
}
/*-------mainPage slider  -----*/
.wellcome_section {
  width: 100%;
  height: 500px;
  margin-top: 20px;
}

.wellcome_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-------mainPage featured products  -----*/
.featured_products {
  width: 100%;
  height: 500px;
  margin-top: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-gap: 20px;
}

.card {
  display: grid;
  grid-template-rows: max-content 200px 1fr;
}

.card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/*-------mainPage last chance products  -----*/

/*------------------footer css  ----------------*/
.footer {
  margin-top: 50px;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: #ccc;
  padding: 30px;
}
/*------------------------------------------products page-----------------------------------------*/
.products_page_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
/*------------------------------------------About us page-----------------------------------------*/
.aboutPage_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aboutPage_headText {
  width: 70%;
  padding: 70px 50px;
  font-size: xx-large;
}

.aboutUs_mission_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/*------------------------------------------contact us page-----------------------------------------*/

.contact_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.contact_section_right_div {
  margin-top: 30px;
}

/* --------font awesome css -------------------- */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect to social icons */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3b5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55acee;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #c6d15c;
  color: white;
}

/* ----------------form contact us css--------------------- */

form.form_contact {
  display: table;
}

div.form_contact {
  display: table-row;
}

label,
input {
  display: table-cell;
  margin-bottom: 10px;
}

label {
  padding-right: 10px;
}

/* ----------------contact Us page - team section css--------------------- */
.contactUs_page_team_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding-top: 30px;
  background-color: #bdbfa5;
}

.contactUs_page_team {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
