* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  display: block;
  text-decoration: none;
  color: currentColor;
  font-family: inherit;
}

img {
  display: block;
}

ul {
  list-style-type: none;
}

body {
  font-family: "Inter", sans-serif;
  color: black;
  background-color: #f1f1f1;
}

.container {
  max-width: 1110px;
  padding: 0 15px;
  margin: 0 auto;
}

/* !-------------------HEADER---------------- */
.site__header {
  /* width: 100%; */
  padding: 20px;
  padding-bottom: 50px;
  background-color: rgb(196, 203, 184);
  max-width: 1280px;
  margin: 0 auto;
}
.header__row {
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-padding-bottom: 17px;
}

.header__logo {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

.header__title {
  font-size: 35px;
  font-weight: 500;
}

.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 3;
}

.menu__link {
  font-size: 28px;
  transition: all 0.3s;
}

.menu__link:hover {
  font-weight: 700;
  text-decoration: underline;
}

/* ! -----------------------MAIN--------------------------- */

/* ----------------------HERO---------------------------------- */

.site__main {
  max-width: 1280px;
  margin: 0 auto;
  background-color: rgb(196, 203, 184);
}

.hero__section {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 255px;
  background-image: url(/img/hero-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero__title {
  font-size: 35px;
  font-weight: 500;
}

.hero__description {
  font-size: 25px;
  font-weight: 400;
}

/* -----------------------PRODUCTS---------------------- */

.product__section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.product__text-container {
  color: #262626;
}

.product__titel {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.product__text {
  font-weight: 500;
  text-align: center;
  margin-bottom: 75px;
}

.products__row {
  display: flex;
  gap: 67px;
  flex-basis: 350px;
}

.products-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid black;
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 20px 60px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}

.product__img {
  display: block;
}

.card__title {
  font-weight: 600;
}

.card__price {
  font-weight: 400;
}

.product__btn {
  display: inline-block;
  border-radius: 10px;
  padding: 7px 15px;
  color: #fff;
  background-color: #262626;
  transition: all 0.3s;
}

.product__btn:hover {
  transform: scale(0.95);
}

.product__link {
  display: block;
}

/* !---------------------FOOTER------------------------- */

.site__footer {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 191px;
  background-color: #373737;
}

.social__list {
  display: flex;
  justify-content: center;
  padding-top: 52px;
  padding-bottom: 40px;
  gap: 40px;
}

.footer__img {
  transition: all 0.3s;
}

.footer__img:hover {
  transform: scale(0.95);
}

.footer__text {
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
  font-size: 20px;
}
