/* Code By Webdevtrick ( https://webdevtrick.com ) */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Roboto:400,100,300,500|Roboto+Slab:400,100,300,700);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Russo One', sans-serif;
}

.flex-container {
    position: absolute;
    height: 100vh;
    width: 100%;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    overflow: hidden;
}

.Montserrat-Light {  font-family: 'Montserrat', sans-serif !important; font-weight:300; }

@media screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column;
		position: relative !important;
		height: 83vh !important;
		 
    }
}

.flex-title {
    color: #f1f1f1;
    position: relative;
    font-size: 1.5vw;
    margin: auto;
    text-align: center;
    transform: rotate(0deg) translateY(-50%) skewX(15deg);
	top:50%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
	z-index:10;
	background: rgba(0,0,0,0);
	padding:5px;
}

@media screen and (max-width: 768px) {
    .flex-title {
        transform: rotate(0deg) translateY(-50%) !important;
		font-size: 6vw !important;
		top:50%;
		background: rgba(0,0,0,0);
    }
}

.flex-about {
    opacity: 1;
    color: #f1f1f1;
    position: relative;
    width: 35%;
    font-size: 25px;
	display:none;
    top: 60%;
	transform: translateY(-60%) rotate(0deg);
    border-radius: 10px;
    line-height: 1.3;
    margin: auto;
    text-align: left;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
	z-index:10;
}

@media screen and (max-width: 768px) {
    .flex-about {
        padding: 0%;
        border: 0px solid #f1f1f1;
    }
}

.flex-slide {
    -webkit-flex: 1;
    /* Safari 6.1+ */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
	transform: skewX(-15deg);
	z-index:1;
}

@media screen and (max-width: 768px) {
    .flex-slide {
        overflow: auto;
        overflow-x: hidden;
		transform: skewY(0deg);
    }
}

@media screen and (max-width: 768px) {
    .flex-slide p {
        font-size: 2em;
    }
}

@media screen and (max-width: 768px) {
    .flex-slide ul li {
        font-size: 2em;
    }
}

.flex-slide:hover {
    -webkit-flex-grow: 3;
    flex-grow: 3;
}

.grow {
	-webkit-flex-grow: 3;
    flex-grow: 3;
}


@media screen and (min-width: 768px) {
    .home {
        /*-moz-animation: aboutFlexSlide;
        -moz-animation-duration: 3s;
        -moz-animation-iteration-count: 1;
        -moz-animation-delay: 0s;
        -webkit-animation: aboutFlexSlide;
        -webkit-animation-duration: 3s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-delay: 0s;
        animation: aboutFlexSlide;
        animation-duration: 3s;
        animation-iteration-count: 1;
        animation-delay: 0s;*/
    }
}

@keyframes aboutFlexSlide {
    0% {
        -webkit-flex-grow: 1;
        flex-grow: 1;
    }
    50% {
        -webkit-flex-grow: 3;
        flex-grow: 3;
    }
    100% {
        -webkit-flex-grow: 1;
        flex-grow: 1;
    }
}

@media screen and (min-width: 768px) {
    .flex-title-home {
        transform: rotate(0deg) translateY(-50%) skewX(15deg) !important;
        top: 50%;
        -moz-animation: homeFlextitle;
        -moz-animation-duration: 3s;
        -moz-animation-iteration-count: 1;
        -moz-animation-delay: 0s;
        -webkit-animation: homeFlextitle;
        -webkit-animation-duration: 3s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-delay: 0s;
        animation: homeFlextitle;
        animation-duration: 3s;
        animation-iteration-count: 1;
        animation-delay: 0s;
    }
}

@keyframes homeFlextitle {
    0% {
        transform: rotate(0deg) translateY(-50%) skewX(15deg);
        top: 50%;
    }
    50% {
        transform: rotate(0deg) translateY(-50%) skewX(15deg);
        top: 50%;
    }
    100% {
        transform: rotate(0deg) translateY(-50%) skewX(15deg);
        top: 50%;
    }
}

.flex-about-home {
    opacity: 0;
}

@media screen and (min-width: 768px) {
/*   
   .flex-about-home {
        -moz-animation: flexAboutHome;
        -moz-animation-duration: 3s;
        -moz-animation-iteration-count: 1;
        -moz-animation-delay: 0s;
        -webkit-animation: flexAboutHome;
        -webkit-animation-duration: 3s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-delay: 0s;
        animation: flexAboutHome;
        animation-duration: 3s;
        animation-iteration-count: 1;
        animation-delay: 0s;
    }*/
}

@keyframes flexAboutHome {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.about {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/vertical_optimized.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
	z-index:5;
}

/* Pseudo-elemento per l'immagine di hover */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/vertical_hover_optimized.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

/* Quando si passa sopra, l’immagine di hover diventa visibile */
.about:hover::before {
  opacity: 1;
}

/*
.about::before {
  content: "";
  transform: rotate(45deg) !important;
}*/

.contact-form {
    width: 100%;
}

input {
    width: 100%;
}

textarea {
    width: 100%;
}



.price {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/pro_optimized.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
	z-index:5;
}


/* Pseudo-elemento per l'immagine di hover */
.price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/pro_hover_optimized.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

/* Quando si passa sopra, l’immagine di hover diventa visibile */
.price:hover::before {
  opacity: 1;
}


.liveness {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/liveness_optimized.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
	z-index:5;
}


/* Pseudo-elemento per l'immagine di hover */
.liveness::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/liveness_hover_optimized.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

/* Quando si passa sopra, l’immagine di hover diventa visibile */
.liveness:hover::before {
  opacity: 1;
}


.loader{
	
	margin: auto;
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
    vertical-align: middle;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
	
	
}


.spinner {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 100%;
    z-index: 11;
    color: #fff;
    font-size: 4em;
}

.cube1,
.cube2 {
    background-color: #fff;
    width: 15px;
    height: 15px;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    }
    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
.home {
		z-index:1 !important}
		
		
@media screen and (min-width: 768px) {		

	.home::before
	 {
		
		height: 100vh;
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/homeevo_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		content: '';
		position: fixed;
		top: 0;
		left:0;
		transform: skew(15deg);
		z-index:0;
		width:170%;
		display:block;

	}

	.home::after{
		height: 100vh;
		background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/homeevo_hover_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		content: '';
		position: fixed;
		top: 0;
		left:0;
		transform: skew(15deg);
		z-index:1 !important;
		display:block;
		opacity:0;
		width:170%;
		transition: opacity 0.4s ease-in-out;

	}
	
	.home:hover::after{
		opacity: 1;
		z-index:1;
		
	}
	
	.contact::before {
		
		height: 100vh;
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/accessori_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		content: '';
		position: absolute;
		top: 0;
		left: -50%;
		right: 0;
		transform: skew(15deg);
		z-index:0;
	}

	.contact::after{
		height: 100vh;
		background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/accessori_hover_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		content: '';
		position: absolute;
		top: 0;
		left: -50%;
		right: 0px;
		transform: skew(15deg);
		z-index:0;
		opacity:0;
		transition: opacity 0.4s ease-in-out;
	}
	
	.contact:hover::after{
	
		opacity: 1;
		z-index:0;
		
	}
	
	footer {
		position:fixed; 
		bottom:0; 
		left:0; 
		z-index:10001; 
		width:100%
		color:white;
	}
	
	footer p { color:white;  }
	
}




.textshadow{text-shadow: 3px 3px 3px rgba(0,0,0,0.8);}


.border-green { border-left: 4px solid green !important } 
.border-white{ border-right: 4px solid white !important} 
.border-red { border-right: 4px solid red !important} 


@media screen and (max-width: 768px) {
    .border-green {  border-top: 1px solid rgba(255,255,255,0.5) !important; border-left: 0px solid white !important } 
	.border-white{  border-bottom: 1px solid rgba(255,255,255,0.5) !important; border-right: 0px solid white !important} 
	.border-red {  border-bottom: 1px solid rgba(255,255,255,0.5) !important; border-right: 0px solid white !important} 
	
	footer {
		position:relative !important; 
		bottom:0; 
		left:0; 
		z-index:10001 !important; 
		width:100%;
		padding:10px !important;
		background:#DB0028;
		color:white !important;
		border-top: 1px solid rgba(255,255,255,0.5) !important;
	}
	
	.logo, .logoEvo {
	
	position:relative !important;
	width: 100%;
	top:0px !important; 
	left:0;
	z-index:10001;
	text-align:center;
	background-color: rgba(255,255,255,1) !important;
	padding: 25px !important;
	}
	
	.logo img, .logoEvo img { max-width:200px !important; transform: skewY(0deg)  }
	
	.contact, .contactOut {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/accessori_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
	}


	.contact:hover, .contactOver {
		background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/accessori_hover_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
	}
	
	
	.home,.homeOut {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/homeevo_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
	}


	.home:hover, .homeOver {
		background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/homeevo_hover_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
	}
	
	.no-hover {
		
		content: '';
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		position: fixed;
		width: 100%;
		height: 100% !important;
		top:0;
		left:0;
	}
	
	.about, .aboutOut {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/vertical_mobile_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		z-index:5;
	}
	
	
	/* Pseudo-elemento per l'immagine di hover */
		.about::before {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/vertical_mobile_hover_optimized.jpg");
		  background-size: cover;
		  background-position: center center;
		  background-attachment: fixed;
		  opacity: 0;
		  transition: opacity 0.4s ease-in-out;
		  z-index: -1;
		}

		/* Quando si passa sopra, l’immagine di hover diventa visibile */
		.about:hover::before, .aboutOver {
		  opacity: 1;
		}
	
	
	
	
	.price, .priceOut {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/pro_mobile_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		z-index:5;
	}

	
	
	.price::before {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/pro_mobile_hover_optimized.jpg");
		  background-size: cover;
		  background-position: center center;
		  background-attachment: fixed;
		  opacity: 0;
		  transition: opacity 0.4s ease-in-out;
		  z-index: -1;
		}

		/* Quando si passa sopra, l’immagine di hover diventa visibile */
		.price:hover::before, .priceOver {
		  opacity: 1;
		}
	
	
	
	.liveness, .livenessOut {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/liveness_mobile_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		z-index:5;
	}

	.liveness:hover,.livenessOver {
		background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/liveness_mobile_optimized.jpg);
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
	}
	
	
	.liveness::before {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("https://www.toorx.it/sites/toorx_it_it/themes/Bootstrap4/images/prehomeevo/liveness_mobile_hover_optimized.jpg");
		  background-size: cover;
		  background-position: center center;
		  background-attachment: fixed;
		  opacity: 0;
		  transition: opacity 0.4s ease-in-out;
		  z-index: -1;
		}

		/* Quando si passa sopra, l’immagine di hover diventa visibile */
		.liveness:hover::before, .livenessOver {
		  opacity: 1;
		}
	
	
	

	.edge--both {
	  position: relative;
	  z-index: 1;
	}
	.edge--both:before, .edge--both:after {
	  background: inherit;
	  content: '';
	  display: block;
	  height: 50%;
	  left: 0;
	  position: absolute;
	  right: 0;
	  z-index: -1;
	  -webkit-backface-visibility: hidden;
	}
	.edge--both:before {
	  top: 0;
	  -webkit-transform: skewY(3deg);
			  transform: skewY(3deg);
	  -webkit-transform-origin: 100% 0;
			  transform-origin: 100% 0;
	}
	.edge--both:after {
	  bottom: 0;
	  -webkit-transform: skewY(-3deg);
			  transform: skewY(-3deg);
	  -webkit-transform-origin: 100%;
			  transform-origin: 100%;
	}
	
	.edge--both--reverse {
	  position: relative;
	  z-index: 1;
	}
	.edge--both--reverse:before, .edge--both--reverse:after {
	  background: inherit;
	  content: '';
	  display: block;
	  height: 50%;
	  left: 0;
	  position: absolute;
	  right: 0;
	  z-index: -1;
	  -webkit-backface-visibility: hidden;
	}
	.edge--both--reverse:before {
	  top: 0;
	  -webkit-transform: skewY(-3deg);
			  transform: skewY(-3deg);
	  -webkit-transform-origin: 0 0;
			  transform-origin: 0 0;
			 
	}
	.edge--both--reverse:after {
	  bottom: 0;
	  -webkit-transform: skewY(3deg);
			  transform: skewY(3deg);
	  -webkit-transform-origin: 0 0;
			  transform-origin: 0 0;
			 
	}
	
	.edge--top {
	  position: relative;
	  z-index: 1;
	}
	.edge--top:before {
	  background: inherit;
	  content: '';
	  display: block;
	  height: 50%;
	  left: 0;
	  position: absolute;
	  right: 0;
	  z-index: -1;
	  -webkit-backface-visibility: hidden;
	}
	.edge--top:before {
	  top: 0;
	  -webkit-transform: skewY(1.5deg);
			  transform: skewY(1.5deg);
	  -webkit-transform-origin: 100% 0;
			  transform-origin: 100% 0;
	}
	
	.edge--top--reverse {
	  position: relative;
	  z-index: 1;
	}
	.edge--top--reverse:before {
	  background: inherit;
	  content: '';
	  display: block;
	  height: 50%;
	  left: 0;
	  position: absolute;
	  right: 0;
	  z-index: -1;
	  -webkit-backface-visibility: hidden;
	}
	.edge--top--reverse:before {
	  top: 0;
	  -webkit-transform: skewY(-1.5deg);
			  transform: skewY(-1.5deg);
	  -webkit-transform-origin: 0 0;
			  transform-origin: 0 0;
	}
}


.logo {
	
	position:absolute;
	width: 100%;
	top:50px; 
	left:0;
	z-index:10001;
	text-align:center;
	background-color: rgba(0,0,0,0.1);
	padding: 50px;
}

.logo img { margin: 0px auto;position:relative; max-height:10vh; opacity:0.75 }


.logoEvo {
	
	position:absolute;
	width: 100%;
	top:0px; 
	left:0;
	z-index:10001;
	text-align:center;
	background-color: rgba(255,255,255,1);
	padding: 15px;
	border-bottom:5px solid #f4f4f4;
}

.ombra {
		-webkit-box-shadow: #000 0px 0px 5px !important;
		-moz-box-shadow: #000 0px 0px 5px  !important;
		box-shadow: #000 0px 0px 5px  !important;
	}
	
