/* ! Stile generale */
body{
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

a{
  text-decoration: none;
  color: white;
}

h1, h2, h3, h5, p{
color: #fff;
padding-bottom: 30px;
}

.bianco{
  color: #fff;
}

.nero{
  color: #000;
}

.rosso{
  color: #e3001b;
}

.blu{
  color: #143b96;
}

.giallo{
  color: yellow;
}

h4{
color: #fff;
padding-bottom: 10px;
}

p{
  line-height: 20px;
  font-weight: 300;
}

.sottotitolo{
  color: #000;
}

.big_text{
font-size: 70px;
font-weight: 900;
}

.med_text{
font-size: 20px;
line-height: 25px;
max-width: 750px;
}

.normal_text{
font-size: 20px;
}

.small_text{
font-size: 14px;
}

.intro_text{
text-transform: uppercase;
font-size: 30px;
font-weight: bold;
padding-bottom: 5px;
}

.button{
padding: 18px 28px;
background: #dddd47;
color: #fff;
display: inline-block;
border-radius: 5px;
}

@media (max-width: 768px) {
  .big_text{
  font-size: 40px;
  font-weight: 900;
  }

  .intro_text{
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  }

  .normal_text{
  font-size: 16px;
  }

  .med_text{
  font-size: 25px;
  line-height: 30px;
  }
}

/* ! header */
.header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  display: flex;
  max-width: 1350px;
}

.logo{
  z-index: 1;
}

.logo-img{
  width: 500px;
}

.menu{
  width: 100%;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
  position: absolute;
  top:0;
  right:-110%;
  background: #000;
  opacity: 0.7;
  height: 10vh;
  padding-top: 20px;
  border-left: 3px solid white;
  z-index: 0;
}

.menu li a{
  color: #fff;
  padding: 15px;
  display: block;
}

.menu li{
  display: inline-block;
}

.menu li a{
  padding: 15px 30px;
  font-size: 20px;
}

.menu--open{
right: 0%;
}

.panino{
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 40px;
  right: 30px;
}

.panino span{
  background: #fff;
  height: 3px;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}




@media (max-width: 768px) {

  .menu{
    position: absolute;
    top:0;
    right:-110%;
    background: #000;
    opacity: 0.7;
    height: 10vh;
    padding-top: 20px;
    border-left: 3px solid white;
  }

  .menu li a{
    padding: 15px 20px;
    font-size: 16px;
  }

.menu--open{
  right: 0%;
}

  .panino{
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40px;
    right: 30px;
  }

  .panino span{
    background: #fff;
    height: 3px;
    width: 100%;
    display: block;
    margin-bottom: 5px;
  }

  .logo-img{
    width: 300px;
  }


}

/* ! hero */

.hero{
  height: 100vh;
  display: flex; width: 100%; align-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,.0) 70.71%),
  url('./img/back_reflect.jpg') no-repeat center center;
  background-size: cover;

}

.hero__content{
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 30px;
}

.evidenza{
  color: #ffff47;
}

@media (max-width: 768px) {
  .hero{
    height: 100vh;
    display: flex; width: 100%; align-items: center;
    background: linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,.0) 70.71%),
    url('./img/back_mobile.jpg') no-repeat center center;
    background-size: cover;

  }

  .hero__content{
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 30px;
    margin-top: 100px;
  }
}


/* ! Intro */

.intro{
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
}

.intro__immagine{
  width: 60%;
  height: 100%;
}

.intro__immagine img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.intro__testo{
  width: 40%;
  padding: 50px;
}

.intro__testo h3{
  color: #000;
}

.intro__testo p{
  color: #000;
}

@media (max-width: 768px) {
  .intro{
    flex-wrap: wrap;
    height: auto;
  }

  .intro__immagine{
    width: 100%;
  }

  .intro__testo{
    width: 100%;
  }


}

/* ! Chi Cosa Come */

.chi_cosa_come{
  display: flex;
  padding: 100px 0;
  background: linear-gradient(0deg, rgba(0,0,0,.3), rgba(0,0,0,.3) 70.71%),
  #e3001b;
  background-size: cover;
}

.chi_cosa_come__title{
  width: 50%;
  padding: 50px;
  align-items: center;
}

.chi_cosa_come__title h3,
.chi_cosa_come__title p{
  color: #fff;
}

.cosa_come__text{
  width: 50%;
  padding: 30px;
}

.cosa_come__text h4,
.cosa_come__text p{
  color: #fff;
}

@media (max-width: 768px) {

  .chi_cosa_come{
    flex-wrap: wrap;
    height: auto;
  }

  .chi_cosa_come__title,
    .cosa_come__text{
    width: 100%;
  }
}

/* ! Grid */

.grid{
  display: flex;
  max-width: 1350px;
  padding: 0 30px;
  margin: 0 auto;
}

.grid .col{
  width: 100%;
}

.col h3,
.col p{
  color: #000;
}

/* ! Modal */

.link-modal{
  color: red;
  font-weight: bold;
}


.button{
  background-color: black;
  padding: 5px 20px;
}

.modal-window{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 400ms;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-window .display{
  width: 80%;
  padding: 20px;
  background: #e3001b;
  opacity: 0.9;
}

.modal-window:target{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-close{
  color: rgba(255, 255, 255, 0.8);
  line-height: 50px;
  font-size: 22px;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}

.modal-close:hover{
  color: black;
}

.modal-window h1 {
  color: white;
  font-size: 25px;
  margin: 0 0 -50px;
}

.modal-window p {
  font-size: 16px;
  color: #black;
  text-align: left;
  padding-top: 20px;
}

.critica {
  width: 100%;
  height: 600px;
  overflow: auto;
}

@media (max-width: 768px) {
  .grid{
    flex-wrap: wrap;
  }
}


/* ! helpers */
.mt1 {
  margin-top: 50px;
}

.mt2 {
  margin-top: 80px;
}

.mt3 {
  margin-top: 120px;
}

.mt4 {

  padding-top: 80px;
}

/* ! Carousel */

* { box-sizing: border-box; }

body { font-family: sans-serif; }

.carousel {
  background: #fefefe;
  position: relative;
  z-index: 1;
}

.carousel-image {
  display: block;
  height: 300px;
  /* set min-width, allow images to set cell width */
  min-width: 150px;
  max-width: 100%;
  margin-right: 10px;
  /* vertically center */
  top: 50%;
  transform: translateY(-50%);
}

.carousel.is-fullscreen .carousel-image {
  height: auto;
  max-height: 100%;
}

/* ! Footer */

footer{
  background: #000000;
  padding: 150px 0;
}


.titoli-footer{
  font-weight: 900;
}

.bord1 {
  border-left: 3px solid yellow;
  padding: 20px;
}

.bord2 {
  border-left: 6px solid #183f9c;
  padding: 20px;
}

.bord3 {
  border-left: 12px solid red;
  padding: 20px;
  color: white;
}

.bord4 {
  border-left: 18px solid white;
  padding: 20px;
  color: white;
}

.paragrafo-footer{
  color: #fff!important;
}

.arrow{
  float: right;
  position: absolute;
  right: 20px;
}

.arrow a:hover{
opacity: 0.6;
}

.copyright{
  float: left;
  position: relative;
  left: -120px;
  bottom: 132px;
  transform: rotate(-90deg);
}

.copy{
  color: white;
}

.maskamente{
  float: left;
  position: relative;
  left: -230px;
  bottom: -10px;
}
























*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
