*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* header */

header{
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

header .logo{
  width: 220px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: .8s;
  transition-property: transform, opacity;
  transform-origin: top left;
  transition-timing-function: ease;
  z-index: 100;
}

header .logo > img{
  display: inline-flex;
  /* height: 40px; */
  height: 60px;
  width: auto;
}

header .logo .loghiTxt{
  color: #000;
  font-weight: bold;
}

header .logo > div{
  font-size: 16px;
  color: #fff;
}

header .logo i{
  font-size: 75%;
  margin-right: 2px;
}

header .logo span{
  font-size: 70%;
}

/* main */

main{
  min-height: 100vh;
  font-size: 18px;
  /* padding-top: 80px; */
}

.container{
  max-width: 900px;
  margin: auto;
  /* color: #ddd; */
  padding: 120px 50px 40px;
  overflow-x: hidden;
}

h1{
  margin-bottom: 60px;
}

main > div:first-of-type{
  margin-bottom: 40px;
}

.riduzioni{
  margin-bottom: 60px;
}

ol{
  margin-left: 18px;
}

ol > li{
  margin-bottom: 20px;
}

ol ul{
  margin-left: 20px;
  margin-top: 8px;
}

ol ul li{
  list-style-type: disc;
}

ol ul li img{
  display: block;
  height: 100px;
  margin-top: 5px;
}
