@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gruppo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

::selection {
  background-color: green;
  color: white;
}

.colorBody{
  animation: colorCycle 100s ease-in-out infinite;
}

section {
  overflow: hidden;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.button-card {
  transition: 0.5s all ease-in-out;
}

.button-card:hover {
  font-weight: 400;
  font-size: 1.1rem;
  transform: scale(1.03);
  cursor: pointer;
  transition: 0.5s all ease-in-out;
  border-radius: .8rem;
}

.card-stores img {
  border-radius: .6rem;
  object-fit: cover;
  object-position: center;
  transition: all ease-in-out .9s;
  width: 100%;
}

.card-stores img:hover{
  scale: 1.3;
  transition: all ease-in-out .9s;
}

.svg-filter svg{
  filter: grayscale(100%);
  transition: all ease-in-out .8s;
}

.svg-filter svg:hover{
  filter: grayscale(0);
  transition: all ease-in-out .8s;
}

.overflow-img {
  border-radius: .6rem;
  overflow: hidden;
}

/* LOGO WEST - START */

.dev-west {
  position: absolute;
  transform: rotate(10deg);
  opacity: .9;
  margin-top: 3px;
  margin-left: -20px;
}

a .dev-west:hover {
  opacity: 1;
  cursor: pointer;
  transition: all 1s ease-in-out;
}

.west:hover {
  cursor: pointer;
  transition: all 1s ease-in-out;
}

.font-gruppo {
  font-family: 'Gruppo';
}

.font-pro{
    font-family: "Advent Pro", serif;
    font-optical-sizing: auto;
    font-weight: 200;
}

/* LOGO WEST - END */

@keyframes colorCycle {
  0% {
    background-color: #02974a;
  }

  25% {
    background-color: #007BFF;
  }

  50% {
    background-color: #a85a92;
  }

  75% {
    background-color: #ff8573;
  }

  100% {
    background-color: #62428e;
  }
}

@media (max-width: 1024px) {
  #menu {
      display: none;
  }
  #menu.show {
      display: flex;
      flex-direction: column;
  }
}