/* VISUALIZZAZIONE DA LAPTOP */
.top {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80px;
  background-color: rgb(245, 243, 243);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 5px solid rgb(167, 167, 104);
}
.left-section {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 350px;
  min-width: 200px;
}
.titolo {
  color: rgb(167, 167, 104);
}
.right-section {
  flex: 5;
  color: rgb(167, 167, 104);
  display: flex;
  flex-shrink: 0;
}
.logo {
  margin-top: 5px;
  width: 70px;
  background-color: rgb(245, 243, 243);
  margin-right: 5px;
}
.immagine {
  border-radius: 50px;
  width: 70px;
}
.chi-siamo,
.storia {
  margin-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  height: 84px;
  display: flex;
  align-items: center;
}
.storia:hover,
.chi-siamo:hover {
  background-color: rgb(167, 167, 104);
  color: white;
}

/* VISUALIZZAZIONE DA MOBILE VERTICALE */
@media (max-width: 800px) {
  .top {
    height: 32px;
    border-bottom: 2px solid rgb(167, 167, 104);
  }
  .left-section {
    max-width: 140px;
    min-width: 120px;
  }
  .logo {
    margin-top: 0px;
    width: 27px;
    margin-right: 0px;
  }
  .immagine {
    border-radius: 20px;
    width: 27px;
  }
  .chi-siamo,
  .titolo,
  .storia {
    margin-top: 0.8px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 8px;
    height: 33.6px;
  }
  .storia:hover,
  .chi-siamo:hover {
    background-color: rgb(167, 167, 104);
    color: white;
  }
.titolo{
  margin-top: 20px;
}
}
