/*CSS HANDLER */
body.landing {
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	background-size: cover;
}
body.landing.casino {
	background-image: url("../img/bg_landing.casino.jpg");
}
body.landing.livecasino {
	background-image: url("../img/bg_landing.livecasino.jpg");
}
body.landing.poker {
	background-image: url("../img/bg_landing.poker.jpg");
}
body.landing.virtual {
	background-image: url("../img/bg_landing.virtual.jpg");
}
#main_content {
	min-height: 550px;
	min-width: 1200px;
}
.landing_container {
	display: inline-block;
	min-height: 70vh;
	width: 100%;
}
._main_title {
    background: linear-gradient(45deg, #f09433 0%,#AA0601 100%);
    color: var(--testo_gradiente);
    padding: 10px;
    margin: 0;
    text-transform: capitalize;
}
.landing_box {
	float: left;
	width: calc(50% - 5px);
	margin: 5px;
}
.landing_box:hover {
	text-decoration: none;
}
.nbox_4.landing_box:nth-child(2n+1),
.landing_box:nth-child(2n+1) {
	margin-left: 0;
	margin-right: 5px;
}
.nbox_4.landing_box:nth-child(2n),
.landing_box:nth-child(2n) {
	margin-right: 0;
	margin-left: 5px;
}
.nbox_1 .landing_box,
.nbox_2 .landing_box,
.nbox_3 .landing_box{
	width: 100%;
	margin: 5px 0;
}
.nbox_1 {
    background: url('../img/casinonew.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
}
.nbox_4 .landing_box {
	width: calc(50% - 10px);
	margin: 5px;
}
.landing_box img {
	width: 100%;
  -webkit-transition: filter 0.3s ease-in-out;
  -moz-transition: filter 0.3s ease-in-out;
  -ms-transition: filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
}
.landing_box:hover img {
	filter: grayscale(1);
}
.landing_box img {
    width: 100%;
    height: 220px;
}
.landGameName {
	background: var(--colore_principale);;
  color: var(--testo_gradiente);
	display: block;
	padding: 4px;
	text-align: center;
	font-size: 20px;
  width: calc(100% - 8px);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.landing_box:hover .landGameName {
	background: var(--colore_principale2);;
  color: var(--testo_gradiente2);
}

.landingBanner {
	width: 100%;
	height: 340px !important;
}