* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
}

.main-container {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 0px 14px 14px rgba(255, 255, 255, 0.774);
  font-family: "Roboto", sans-serif;
}
/************Header*************/
.header {
  max-width: 100%;
  width: 100%;
  height: 50px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.telephoneIcon {
  color: white;
  font-size: 20px;
  padding-right: 4px;
}
.contactClass {
  padding-left: 28px;
}
.number {
  color: white;
  font-size: 18px;
}
.languages {
  padding-right: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link {
  font-size: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
}
.link:hover {
  color: gray;
  transition: 0.3s ease-in;
}
.lang {
  padding: 0 8px 0 2px;
}
/*******************Nav bar******************/

.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 120px;
  max-width: 100%;
}
.logo {
  padding-left: 20px;
}
.burger-menu{
  display: none;
}
.burger{
  font-size: 28px;
  cursor: pointer;
  color:black
}
/* .hide-menu{
  display: none;
} */
.list ul {
  display: flex;
  gap: 25px;
}
.list ul li a {
  color: black;
  font-size: 16px;
  font-weight: 450;
  padding: 5px 10px;
  border-radius: 4%;
  transition: all 0.2s ease-in;
}
.list ul li a:hover {
  background-color: black;
  color: white;
  transition: all 0.2s ease-in;
}
.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
}
/****************First Section***************/

main {
  max-width: 100%;
  background-color: white;
  box-shadow: 0px 0px 14px 14px rgba(255, 255, 255, 0.774);
}

.first-section {
  background-image: url("../assets/background.jpeg");
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
}
/**************** Second Section****************/

.about-us {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 150px 70px 150px 70px;
  max-width: 100%;
  max-height: max-content;
  gap: 30px;
}
.about-us-h1 {
  font-size: 34px;
}
.about-company {
  border-bottom: 0.5px solid rgba(128, 128, 128, 0.349);
  padding-bottom: 20px;
  width: 80%;
  display: block;
  margin: 0 auto;
  font-size: 16px;
}
/*****************third section*******************/
.products {
  max-width: 100%;
  height: max-content;
  padding: 70px 0 70px 0;
}
#display-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.product-item {
  width: 300px;
  height: 350px;
  border: 1px solid black;
  cursor: pointer;
  box-shadow: 0 0 3px 2px black;
  border-radius: 8px;
  background-color: rgba(250, 235, 215, 0.498);
  transition: all 0.3s ease-in;
}
.product-item:hover {
  transform: scale(1.07);
  z-index: 999;
}
.product-image {
  width: 100%;
  height: 90%;
  object-fit: fill;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.productsTitle {
  display: flex;
  justify-content: space-between;
  padding: 0 30px 30px 30px;
}
.product-title {
  display: flex;
  justify-content: center;
  padding: 6px 0 6px 0;
}
#search {
  width: 220px;
  height: 35px;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid beige;
  box-shadow: 0 0 3px 3px black;
  padding-left: 12px;
  border-radius: 8px;
}
#search:focus {
  border: none;
  outline: none;
}

.search {
  position: relative;
}
.srch {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
  transition: 0.2s ease-in;
}
.no-results {
  font-size: 24px;
  font-weight: 500;
}
.hidden {
  opacity: 0;
}

/********************Footer**********************/

footer {
  max-width: 100%;
  background-color: black;
  box-shadow: 0px 0px 14px 14px rgba(255, 255, 255, 0.774);
  height: 400px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

}
.contact-address{
    color: white;
}
.contact-address span {
    font-size: 18px;
}
.contact-information{
    display: flex;
    flex-direction: column;
    gap: 20px
}

.arrow-up{
    color:white;
    font-size: 34px;
    margin-left: 20px;
}