@import url("https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea,
select,
button {
  font-family: "Josefin Sans", sans-serif;
}

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background-color: #333;
}

header.menu {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  gap: 9rem;
  padding: 30px 20px;
  width: 100%;
  background: url("../images/mobile/image-hero.jpg") no-repeat center;
  background-size: cover;
  height: 33.125rem;
}

.menu__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__title-img {
  width: 6.25rem;
}

.menu__hamburguer-img {
  height: 12px;
  width: 18px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}
.menu__hamburguer-img:hover {
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
}

.hidden {
  position: absolute;
  transform: translateY(-117%);
}

.menu__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 0%);
  opacity: 0.95;
  padding: 1.875rem 1.25rem;
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
  display: flex;
  flex-flow: column nowrap;
  gap: 9.375rem;
}

.menu__icon-x {
  width: 0.9375rem;
  transition: transform 0.5s ease-in-out;
}
.menu__icon-x:hover {
  cursor: pointer;
  transform: scale(1.4);
  transition: transform 0.5s ease-in-out;
}

.menu__list {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  list-style-type: none;
  padding-top: 1.25rem;
}

.menu__list-item {
  text-transform: uppercase;
  font-weight: 300;
}

.menu__link {
  position: relative;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 0.125rem;
  background-color: hsl(0, 0%, 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}
.menu__link:hover::after {
  transition: transform 0.4s ease-in-out;
  transform: scaleX(1);
}

.menu__title {
  border: 0.0625rem solid white;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.9375rem;
  color: hsl(0, 0%, 100%);
  padding: 1.25rem;
}

.main {
  background-color: hsl(0, 0%, 100%);
  width: 100%;
}

.main__img {
  padding: 0 1.25rem;
  margin-top: 6.25rem;
  width: 100%;
}

.main__title {
  padding: 1.875rem;
  text-align: center;
  color: hsl(0, 0%, 0%);
  text-transform: uppercase;
  font-weight: 350;
  font-size: 1.625rem;
}

.main__description {
  color: hsl(0, 0%, 41%);
  line-height: 1.4375rem;
  padding: 0 2.5rem;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.main__section2 {
  position: relative;
  padding-bottom: 8.125rem;
}

.main__link {
  position: absolute;
  bottom: 5.1875rem;
  left: 50%;
  transform: translate(-50%);
  text-transform: uppercase;
  color: hsl(0, 0%, 0%);
  border: 0.09375rem solid black;
  padding: 0.4375rem 2.5rem;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1.4375rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  transition: background-color 0.3s ease-in-out;
}
.main__link:hover {
  transition: background-color 0.3s ease-in-out;
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}

article.products {
  position: relative;
  margin: 1.25rem auto;
  width: 90%;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
  font-weight: 300;
  background-color: black;
  height: auto;
  overflow: hidden;
}
article.products .products__img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
article.products .products__img:hover {
  transition: transform 0.4s ease-in-out;
  transform: scale(1.3) rotate(5deg);
}

.products__title {
  position: absolute;
  bottom: 7%;
  left: 10%;
  transform: translate(-7%, -10%);
  font-weight: 300;
  font-size: 1.125rem;
}

.footer {
  padding-top: 2.5rem;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 0%);
}

.footer__logo-img {
  width: 9.375rem;
  margin-bottom: 1.875rem;
}

.footer__list {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5625rem;
  list-style: none;
}

.footer__link {
  position: relative;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 0.125rem;
  background-color: hsl(0, 0%, 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

a:hover::after {
  transition: transform 0.4s ease-in-out;
  transform: scaleX(1);
}

.footer__icons {
  margin-top: 2.5rem;
}

.footer__icons-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__icon-img {
  transition: transform 0.4s ease-in-out;
}
.footer__icon-img:hover {
  transform: scale(1.2);
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.footer__date {
  font-size: 0.875rem;
  margin: 1.25rem 0 2.5rem 0;
  color: hsl(0, 0%, 55%);
}

/*# sourceMappingURL=style.css.map */
