* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

.disclaimer {
  height: 10vh;
  background-color: #333;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  z-index: 100;
  top: 0px;
  left: 0px;
}

.wrapper-disclaimer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}

.wrapper-disclaimer h6 {
  font-size: 1rem;
  color: #fff;
}

.aams {
  max-width: 220px;
  width: 100%;
  display: block;
}

.eighteen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eighteen::after {
  content: " gioca senza esagerare";
  color: #fff;
  text-transform: uppercase;
}

.pippo {
  position: relative;
  z-index: 1;
  background: url(../../images/cover-background.jpg) center/cover no-repeat;
  height: 60vh;

}

/* navbar */
/* nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 10vh;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  z-index: 50;
border: 1px solid red;
} */

/* .logo {
  position: absolute;
  left: 5%;
  top: 10px;
} */

/* .logo img {
  max-width: 200px;
  width: 100%;
  display: block;
} */

/* 
.navItem {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  position: absolute;
  left: 20%;
  top: 40%;
  border: 1px solid #000;


}



.navItem li {
  list-style-type: none;
  text-transform: uppercase;
}

.navItem i {
 border: 1px solid #000;
 display: inline-block;

}

.navItem a {
  text-decoration: none;
  color: #333;
  padding: 18px;
  transition: 0.8s ease-in-out;
}

.navItem a:hover {
  color: white;
  background-color: rgb(218, 218, 218);
  color: #333;
  text-decoration: none;
}

.active-menu {
  background-color: crimson;
  color: black;
} */

.wrapper-drop {
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	right: 10%;
}

.wrapper-drop li {
	list-style-type: none;
}

/* hamburger */
.burger {
  position: absolute;
  right: 5%;
  top: 40px;
  cursor: pointer;
  display: none;

}

.burger:hover {
  opacity: 0.5;
  transition: ease-in 0.5s;
}

.line {
  margin: 5px;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
}

.isactive .line:nth-child(2) {
  opacity: 0;
}

.isactive .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.isactive .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* end hamburger */

/* end navbar */


/* BOX COVER */

.container-wrapper-box {
  max-width: 1280px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;

}

.container-wrapper-box img {
  width: 100%;
  border: 1px solid #fff;
  cursor: pointer;
}


.wrapper-btn-cover {
  top: 10%;
  position: absolute;
  right: 10%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
}

.wrapper-btn-cover h4 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
}

.mainBody {
  /* max-width: 1280px; */
  width: 100%;
  position: relative;
  margin: auto;
  background: url(../img/bgc-home.jpg) center/cover no-repeat;
}

.mainBody img {
  width: 100%;
  padding: 1rem;
}

#footer-home {
  bottom: 0px;
  position: relative;
}
#footer-home p{
  font-size: 10px;
}
/* MEDIA QUERIES */
@media (min-width: 1200px)
.d-xl-login-register-flex {
    display: flex!important;
    gap: 10px;
}
@media (min-width: 992px)
.d-lg-login-register-flex {
    display: flex!important;
    gap: 10px;
}


@media screen and (max-width:1124px) {



  .navItem {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 50%;
    height: 45vh;
    position: absolute;
    z-index: -2;
    top: 10vh;
    left: 50%;
    background-color: #0098dffb;
    /* nascondo il menu tramite la posizioe X  */
    transform: translateY(-130%);
    /* animo l'altezza tramite  */
    transition: transform 0.8s ease-in-out;
  }

  .navItem li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: ease-in-out 0.8s;
    text-align: center;
  }

  .navItem li:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    color: white;
    background-color: rgb(218, 218, 218);
    color: #333;
  }

  .navItem a {
    background-color: transparent;
    color: white;
  }

  .navItem a:hover {
    background-color: transparent;
    text-decoration: none;
  }

  .navItemActive {
    transform: translateY(0%);
  }

  .burger {
    display: block;
    z-index: 10000;

  }

}

@media screen and (max-width:770px) {
  .container-wrapper-box {
    max-width: 1280px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    /* transform: translate(-50%, -68%); */

  }

  .wrapper-btn-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    background-color: #0197dca1;
    padding: 1rem;
    border-radius: .5rem;
  }

  .wrapper-btn-cover h5 {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0.5rem;
    text-align: center;
  }

}

@media screen and (max-width:750px) {
  .navItem {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    height: 45vh;
    left: 0px;
    position: absolute;
    z-index: -2;
    top: 10vh;

  }

  .wrapper-disclaimer h6 {
    font-size: 1rem;
  }

  .aams {
    max-width: 180px;
    width: 100%;
  }

  .eighteen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }

  .eighteen::after {
    content: " gioca senza esagerare";
    color: #fff;
    text-transform: uppercase;
    font-size: 8px;
    text-align: center;
  }

}


@media screen and (max-width: 1384px) {
  .wrapper-disclaimer h6 {
    font-size: 12px;
    text-align: center;

  }

  .eighteen::after {
    content: " gioca senza esagerare";
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
  }
}

@media screen and (max-width:460px) {
  .wrapper-disclaimer h6 {
    display: none;
  }
  .logo {
  position: absolute;
  left: 5%;
  top: 25px;
}

.logo img {
  max-width: 150px;
  width: 100%;
  display: block;
}

}