* {
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 0;
  font-family: 'Montserrat', sans-serif;
}

/*      Header      */

.menu {
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.menu-items {
  display: flex;
  margin-right: 30px;
  font-size: 16px;
}

.subMenu-items {
  display: none;
  position: absolute;
  background-color: white;
  padding-top: 21px;
  border-radius: 3px;
  text-align: left;
  z-index: 10;
}

.menu-items li:hover > ul {
  display: block;
}

.margin-rigth {
  margin-right: 10px;
}

.menu-items li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 7px 10px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
}

.menu-items li {
  transition: .4s;
}

.subMenu-items li a {
  padding: 5px 5px;
  margin: 0px;
  margin-bottom: 10px;
}

.menu-items li:hover, li.active {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 2px;
  transition: .4s;
}

.nav-logo {
  margin: 0 40px;
  width: 150px;
}

.menu-btn {
  margin-right: 30px;
  font-size: 25px;
  color: black;
  cursor: pointer;
  display: none;
}

ul.show {
  top: 49px;
  z-index: 10;
}

@media (max-width: 952px){
  .menu-items li a {
    font-size: 16px;
  }
}

@media (max-width: 1130px) {
  .menu-btn {
    display: inline-flex;
  }
  .menu-items {
    position: absolute;
    width: 100vw;
    height: calc(100% - 65px);
    background: #414141;
    top: -100vh;
    text-align: center;
    transition: all .4s;
    flex-direction: column;
    z-index: 900;
  }
  .menu-items li {
    margin: 15px 0 0 0;
    line-height: 30px;
  }
  .menu-items li:hover {
    background: none;
  }
  .menu-items li a {
    font-size: 20px;
    color: #fff;
  }
  .menu-items li a:hover {
    color: cornflowerblue;
  }
  .menu {
    height: 50px;
  }
  .nav-logo {
    margin-left: 15px;
    padding-top: 5px;
    width: 115px;
  }
  .menu-items li:hover > ul {
  display: none;
  }
}

@media (max-width: 885px) and (orientation: landscape){
  .menu-items li {
    margin: 15px 0 0 0;
  }
  .menu-items {
    overflow: scroll;
    height: calc(100% - 65px);
  }
}

/*      Products      */

.products-container {
    background-color: #011553;
    color: white;
    padding-bottom: 50px;
}

.products-title {
    font-size: 27px;
    text-align: center;
    padding-top: 50px;
    color: white;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.item-container {
    padding-top: 50px;
    margin-left: 25px;
    margin-right: 25px;
}

.product-p {
    margin-top: 7px;
}

.product-img {
    display: block;
    width: 150px;
    margin-top: 25px;
    border-radius: 5px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

@media (min-width: 350px){
  .product-img {
    width: 200px;
  }
}

@media (min-width: 435px){
  .product-p {
    font-size: 17px;
  }
}

@media (min-width: 768px){
  .item-container {
    margin: 0 40px 0 40px;
  }
}

@media (min-width: 1024px){
  .item-container {
    margin: 0 60px 0 60px;
  }
}

@media (min-width: 1440px){
  .item-container {
    margin: 0 100px 0 100px;
  }
}

/*      Footer      */

footer {
  background-color: lightgray;
  padding: 20px 0 10px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 5px;
}

.footer-title {
  margin-bottom: 20px;
}

.footer-img {
  width: 30px;
}

.footer-ubi {
  margin-top: 20px;
}

.copyrigth {
  margin-top: 20px;
  font-weight: 700;
  font-size: 13px;
}