* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

body {
  background-color: #f5f6fa;
}

.container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.container li {
  list-style: none;
}

header {
  background-color: #182C61;
  position: sticky;
  top: 0;
  left: 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
header .container .menu {
  display: flex;
}
header .container .menu li {
  font-weight: bold;
  margin-left: 24px;
}
header .container .menu li a {
  color: #fff;
  text-decoration: none;
}

.products {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 32.66%);
  column-gap: 1%;
  row-gap: 4%;
  width: 100%;
}

section {
  padding: 56px 0;
}
section .product-item img {
  width: 100%;
  border-radius: 16px;
}
section .product-item .product-button {
  display: block;
  background-color: #44bd32;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  margin-top: 8px;
  text-decoration: none;
}
section .product-item .product-button:hover {
  background-color: #4fcc3d;
}

@media screen and (max-width: 1023px) {
  .container {
    max-width: 80%;
  }
  .container .products {
    grid-template-columns: repeat(2, 48.5%);
    column-gap: 3%;
  }
}
@media screen and (max-width: 767px) {
  .products {
    display: block;
  }
  .products .product-item {
    margin-bottom: 32px;
  }
}

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