/* ----------------------------------------------- General */ 
:root {
  --body-font-size:16px;
  --body-font-family: Jost;
  --white5:rgb(255 255 255 / 5%);
  --white10:rgb(255 255 255 / 10%);
  --white50:rgb(255 255 255 / 50%);
  --white:#FFF;
  --black:#000;
  --black5:rgb(0 0 0 / 5%);
  --black10:rgb(0 0 0 / 10%);
  --black20:rgb(0 0 0 / 20%);
  --black50:rgb(0 0 0 / 50%);
  --black70:rgb(0 0 0 / 70%);
  --grey:#a3a3a3;
  --grey-light:#777;
  --grey-superlight:#efefef;
  --grey-dark:#555;
  --grey-superdark:#333;
  --azzurro-astori: #f0f9ff;
  --blu-astori: #006A9B;
  --blu-astori-activecolor: #00aeff;
  --blu-astori-hover: #3998dd;
}

.blu-astori{color: var(--blu-astori);}
.blu-astori-activecolor{color: var(--blu-astori-activecolor);}

h1,h2,h3,h4,h5,h6{
	font-family: var(--body-font-family);
    font-weight: bold;
    line-height: 1;
}

blockquote{
	border-left: 3px solid	var(--azzurro-astori);
	padding-left: 40px;
	margin-left: 20px;
}

ul.checkbullet {
	margin: 0;
	padding: 0;
}

ul.checkbullet li{
	list-style: none;
	background: url(../img/line/check-azzurro.svg)no-repeat;
	background-size: 17px;
	background-position:0 5px;
	padding-left: 30px;
	padding-top:5px ;
	font-size: 14px;
}

.bb{
	border-bottom: 1px solid var(--grey-superdark);
}

.bblight{
	border-bottom: 1px solid var(--black20);
}

/*::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: var(--official-grey);
}

::-webkit-scrollbar{
	width: 12px;
	background-color: var(--official-grey);
}

::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--official-red);
}

::selection {
  background: var(--official-red); 
}
::-moz-selection {
  background: var(--official-red); 
}
*/

body{
	font-family: var(--body-font-family);
	font-weight: 300;
	background:var(--white);
	color:var(--grey-dark);
	font-size:var(--body-font-size);
}

a:link,a:visited{ transition: all 0.2s ease-in-out; color: #000; transition: all 0.3s ease-in-out;}
a:hover{ color: var(--blu-astori);}


a.cta-standard{
	color: var(--white);
  text-decoration: none;
  background: var(--blu-astori-activecolor);
  padding: 7px 20px;
  display: block;
  width: max-content;
  transition: all 0.3s ease-in-out;
}
a.cta-standard:hover{
	color: var(--white);
  background: var(--blu-astori);
}

a.cta-standard-outline{
	color: var(--blu-astori);
  text-decoration: none;
  background: var(--white);
  border: 1px solid  var(--blu-astori);
  padding: 7px 20px;
  display: block;
  width: max-content;
  transition: all 0.3s ease-in-out;
}
a.cta-standard-outline:hover{
	color: var(--white);
  background: var(--blu-astori);
}

a.cta-standard.white{
	color: var(--black);
  text-decoration: none;
  background: var(--white);
  padding: 7px 20px;
  display: block;
  width: max-content;
  transition: all 0.3s ease-in-out;
}
a.cta-standard.white:hover{
	color: var(--white);
  background: var(--black);
}

button.btn-primary{
	background: var(--blu-astori);
	border-color: var(--blu-astori);
}

button.btn-primary:hover{
	background: var(--blu-astori-hover);
	border-color: var(--blu-astori-hover);
}


hr {
	margin: 1rem 0;
	color: inherit;
	border-bottom: 1px solid var(--black10);
	opacity: 0.15;
}

/* preNav */

#preNav{
	background: var(--grey-dark);
	color: var(--white);
	padding: 5px 0px;
}
#preNav a{
	color: var(--white);
	text-decoration: none;
}
#preNav a i{
	font-size: 20px;
	padding: 0 10px;
}

#preNav a:hover{
	color: var(--white);
	opacity: 0.5;
}
#preNav .sitedescript{
	text-transform: uppercase;
	font-size: 12px;
}

#preNav a.goToStore {
    background: #333;
    padding: 0 10px;
    border-radius: 8px;
}
#preNav a.goToStore i{
		padding: 0;
		margin-right: 4px;
}

/* topNav */


#topNav{
	height: 70px;
	background: var(--white);
	box-shadow: 0px 0px 20px rgb( 0 0 0 / 30%);
	display: flex;
  align-items: center;
}

header.hasNoticeBar #topNav.fixed-top{
	transition: all 0.3s ease-in-out;
	top: 58px;
}

#topNav .siteSwitcher {
	margin-top: 4px;
	display: flex;
}
#topNav .siteSwitcher a{
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 2px 8px;
	text-decoration:none;
	border-radius: 10px;
	color: var(--blu-astori);
	transition: all 0.3s ease-in-out;
}
#topNav .siteSwitcher a i{
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	font-size: 0;
}
#topNav .siteSwitcher a:hover i{
	visibility: visible;
	opacity: 1;
	font-size: 10px;
	color: var(--white);
}
#topNav .siteSwitcher a:hover{
	background: var(--blu-astori-activecolor);
	color: var(--white);
}
#topNav .siteSwitcher a.sel{
	background: var(--blu-astori);
	color: var(--white);
}
#topNav .siteSwitcher a.sel:hover{
	background: var(--blu-astori-activecolor);
}

#topNav .siteSwitcher a:first-child{
	margin-right: 6px;
}

#topNav ul{
	margin: 0;
	padding: 0;
}
#topNav ul li{
	list-style: none;
}

#topNav ul li a{
	font-weight: 400;
	text-decoration: none;
	display: block;
	position: relative;
}
#topNav ul.mainMenu li > a{
	padding: 23px 12px;
}
#topNav ul.mainMenu li > a:hover{
/*	background: linear-gradient(180deg, rgba(133,133,133,1) 0%, rgba(85,85,85,1) 41%, rgba(51,51,51,1) 100%);*/
	background: var(--grey-superdark);
	color: var(--white);
}
#topNav ul.mainMenu{
	display: flex;
}

#topNav ul.mainMenu > li{
	position: relative;
}


#topNav ul.mainMenu li ul.subMenu{
	position: absolute;
	top: 100px;
	left: 0;
	opacity: 0;
	visibility:hidden;
	z-index: 3;
  column-count: 3;
  padding: 10px 20px;
  border:1px solid #efefef ;
  border-radius:10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: var(--white);
  box-shadow: 0 0 0 #ccc;
	transition: all 0.2s ease-in-out;
}



#topNav ul.mainMenu li:hover ul.subMenu{
	top: 70px;
	opacity: 1;
	box-shadow: 5px 5px 20px #eee;
	visibility:visible;
}

#topNav ul.mainMenu li ul.subMenu.noCols,
#topNav ul.mainMenu li:hover ul.subMenu.noCols{
	column-count: initial;
}


#topNav ul.mainMenu li ul.subMenu li a{
	padding: 8px 15px;
	font-size: 15px;
	border-radius:8px;
	 white-space: nowrap;
}

#topNav ul.mainMenu li ul.subMenu li a:hover{
	background: var(--grey-superdark);
}

#topNav ul.mainMenu li ul.subMenu li a + ul li a{
	font-size: 13px;
}




/*
#topNav ul li a::after{
	content: "";
	position: absolute;
	width: 0%;
	top: 55px;
	height: 2px;
	background: var(--white);
	display: block;
	transition: all 0.2s ease-in-out;
}

#topNav ul li a:hover::after{
	content: "";
	position: absolute;
	width: 100%;
	top: 50px;
	height: 2px;
	background: var(--blu-astori-hover);
	display: block;
	transition: all 0.2s ease-in-out;
}
*/

#topNav .menuwrap ul.mainMenu li.hasChildMob,
#topNav .menuwrap ul.mainMenu li  a.hasChildMob{
		display: none;
	}


#hamburger{
	width: 40px;
	height: 40px;
	padding-top:2px;
	cursor: pointer;
}

#hamburger span{
	background: var(--grey-dark);
  border-radius:5px;
  height:3px;
  margin: 7px 0;
  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: block;
}

#hamburger span:nth-of-type(1){
  width:50%;
  
}

#hamburger span:nth-of-type(2){
  width:100%;
}

#hamburger span:nth-of-type(3){
  width:75%;
 
}

#hamburger.is-active span:nth-of-type(1){
  transform-origin:bottom;
  transform:rotatez(45deg) translate(5px,0px)
}

#hamburger.is-active span:nth-of-type(2){
  transform-origin:top;
  transform:rotatez(-45deg)
}

#hamburger.is-active span:nth-of-type(3){
  transform-origin:bottom;
  width:50%;
  transform: translate(16px,-4px) rotatez(45deg);
}



/* Owl */

  #HeroVideoNewOwl .item{
    position: relative;
    height:600px;
    width: 100%;
    overflow: hidden;
  }

  #HeroVideoNewOwl .item .overText{
    position: absolute;
    z-index: 2;
    background: var(--black50);
    width: 100%;
    height: 100%;
    display: block;
  }
  
  #HeroVideoNewOwl .item .overText .slideTitle{
    color: var(--white);
    font-weight: 500;
    font-size: 50px;
    line-height: 1em;
  }
  
  #HeroVideoNewOwl .item .overText .slideTitle span{
    font-family: var(--font2);
    font-size: 50px;
    color: var(--brand-red);
  }

  #HeroVideoNewOwl .item .overText .slideSubTitle{
    color: var(--white);
    font-size: 24px;
  }
  #HeroVideoNewOwl .item .overText a.slideCta{
    color: var(--white);
    text-decoration: none;
    background: var(--blu-astori-activecolor);
    padding: 7px 20px;
    transition: all 0.3s ease-in-out;
    display: block;
    width: max-content;
  }
  
  #HeroVideoNewOwl .item .overText a.slideCta:hover{
    color: var(--blu-astori);
    background: var(--white);
  }
  
  #HeroVideoNewOwl .item a.continueBut{
    color: var(--white);
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    z-index: 5;
    border:1px solid var(--white);
    padding: 7px 20px;
    left: 50%;
    transform: skew(-20deg) translate(-50%, -50%);
    display: block;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  #HeroVideoNewOwl .item a.continueBut span{
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
    transform: skew(20deg);
    display: block;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-right: 15px;
  }

  #HeroVideoNewOwl .item a.continueBut:hover{
    background: var(--white);
  }
  #HeroVideoNewOwl .item a.continueBut:hover span{
    color: var(--black);
  }

  #HeroVideoNewOwl .item a.continueBut span:after{
    content:'≫';
    color: var(--white);
    transform: rotate(90deg);
    position: absolute;
    right: 0;
    top: 2;
    z-index: 2;
    transition: all 0.3s ease-in-out;
  }
  #HeroVideoNewOwl .item a.continueBut:hover span:after{
    color: var(--black);
  }

  #HeroVideoNewOwl .item .HeroVideoImgWrapper{
    position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
  }
  
  #HeroVideoNewOwl .item .HeroVideoImgWrapper video,
  #HeroVideoNewOwl .item .HeroVideoImgWrapper img{
  	position: absolute;
  	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
		width: 100%;
    object-fit: cover;
    object-position: center center;
    min-height: 600px;
  }


  #HeroVideoNewOwl .owl-nav{
    position: absolute;
    z-index: 2;
    top:calc(50% - 20px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:30px;
  }

 #HeroVideoNewOwl .owl-nav button{
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
 }

 #HeroVideoNewOwl .owl-nav button i{
  color: var(--white);
  transition: all 0.3s ease-in-out;
 }
  #HeroVideoNewOwl .owl-nav button:hover{
  background: var(--white10);
  transition: all 0.3s ease-in-out;
 }

 #HeroVideoNewOwl .owl-nav button:hover i{
  color: var(--brand-dark-blu);
 }

 .owl-carousel .owl-item img {
	height: 100%;
	object-fit: cover;
 }


#productCategoryOwl{
	margin-bottom: 5px;
}

#productCategoryOwl .item{
	position: relative;
}
#productCategoryOwl .item .overText{
	position: absolute;
	background: var(--black50);
	color: var(--white);
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: all 0.3s ease-in-out;
}
#productCategoryOwl .item .overText:hover{
	background: var(--black70);
}

#productCategoryOwl .item .overText p{
	margin-bottom: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}







/* END Owl */

.trustWidgetBar{
	overflow: hidden;
}

.trustWidget1 i,.trustWidget2 i,.trustWidget3 i{
	font-size: 40px;
}

.trustWidget3{
	background: var(--grey-dark);
	color: var(--white);
	position: relative;
}
.trustWidget3:after{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	background: var(--grey-dark);

}
.vertImgPresentationWrapper{
	display: flex;
	justify-content: flex-end;
}
.vertImgPresentationWrapper .ctaSquare{
	float: left;
	width: 110px;
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white);
}

/* focusSlider */

#focusSlider{

}
#focusSlider .carousel-item {
	position: relative;
}
#focusSlider .carousel-item  .overTxt{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	padding: 10%;
	display: flex;
	flex-direction: column;
	color: #FFF;
	background: rgb(0 0 0 / 50%);
	justify-content: center;
}
#focusSlider .carousel-item  .overTxt h5{
	font-size: 60px;
}
#focusSlider .carousel-item  .overTxt p{
	font-size: 20px;
}

.ctaPrefooter{
	background: rgb(83,182,228);
	background: linear-gradient(150deg, rgba(83,182,228,1) 0%, rgba(0,106,155,1) 100%);
	color: var(--white);
}

.ctaPrefooter .containerwrapper{
	padding-top: 40px;
	background:url("../img/bck-project-buildings-steels-15.png")no-repeat bottom center;
	background-size: cover;
}

.ctaPrefooter h5{
	font-size: 30px;
}

ul.secondaryMnu,
ul.secondaryMnu ul{
  margin: 0;
  padding: 0;
}
ul.secondaryMnu li{
  list-style: none;
  font-size: 15px;
  color: #000;
  padding: 3px 0;
}
ul.secondaryMnu li a{
  font-size: 15px;
  text-decoration: none;
}


ul.secondaryMnu li strong{
  font-size: 16px;
  text-transform: uppercase;
}

ul.secondaryMnu ul li a{
  font-size: 14px;
  text-decoration: none;
  text-transform: initial;
}



ul.no-bullets{
	margin: 0;
	padding: 0;
}
ul.no-bullets li{
	list-style: none;
}
ul.menufooter li{
	padding: 4px;
}

ul.menufooter li a{
	font-weight: 400;
	text-decoration: none;
}


form .input-group.newsletter input{
	border-left: 0;
	border-top: 0;
	border-radius: 0;
}

.lawLink a{
	text-decoration: none;
	font-size: 14px;
	padding:0px 10px;
}

.heroStandard{
	height: 350px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.heroStandard .overText{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 350px;
	z-index: 2;
	background: var(--black50);
}


.sectionBck{
	height: 600px;
	overflow: hidden;
	position: relative;
}
.sectionBck .overText{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	z-index: 2;
	background: var(--black50);
}


.noLinkDecor a:link,
.noLinkDecor a:visited{
	text-decoration: none;
}


.productGrid .col a:hover{
	background: var(--black5);
	border-radius: 8px;
}

/*.productGrid .col .imgWrap{
	overflow: hidden;
	border-radius: 8px;
	width: 150px;
	height: 150px;
	display: block;
}
.productGrid .col a img{
	transition: all 0.3s ease-in-out;
}
.productGrid .col a:hover img{
	transform: scale(1.2);
}*/


.breadcrump{
	background: var(--blu-astori);
	padding: 5px 0;
}
.breadcrump a:link,.breadcrump a:visited{
	font-size: 12px;
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.breadcrump a:hover{
	opacity: 0.5;
}
.breadcrump i{
	color: var(--azzurro-astori);
} 

.similarItemList li.list-group-item.active{
	background: var(--blu-astori-activecolor);
	border-bottom: none;
}
.similarItemList li.list-group-item a:link,
.similarItemList li.list-group-item a:visited{
	text-decoration: none;
	display: block;
	font-size: 14px;
}
.similarItemList li.list-group-item.active a{
	color: var(--white);
}



.similarItemFaqList li.list-group-item.active{
	background: var(--blu-astori-activecolor);
	border-bottom: none;
}
.similarItemFaqList li.list-group-item a:link,
.similarItemFaqList li.list-group-item a:visited{
	text-decoration: none;
	display: block;
	width: 100%;
	font-size: 16px;
	transition: all 0.2s ease-in-out;
}
.similarItemFaqList li.list-group-item.active a{
	color: var(--white);
}

.similarItemFaqList li.list-group-item:hover{
	background: var(--grey-superlight);
}




.boxIconDesc{
	display: flex;
	align-items: center;
}
.boxIconDesc a:link,
.boxIconDesc a:visited{
	text-decoration: none;
	color: var(--grey-dark);
}
.boxIconDesc .iconWrap{
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid var(--grey-superlight);
}
.boxIconDesc .iconWrap i{
	font-size:32px;
	color: var(--blu-astori);
}
.boxIconDesc .desc{
	font-size: 18px;
	font-weight: 500;
}

.bt-blue{
	border-top: 1px solid var(--azzurro-astori);
}

.featureList .card{
	background: transparent;
	color: var(--grey-dark);
}
.featureList .boxIconDesc{
	display: flex;
	align-items: start;
}


.featureList .boxIconDesc .iconWrap{
	border-left: 0;
	width: 150px;
	height: 150px;
	display: block;
	margin-right: 20px;
}
.featureList .boxIconDesc .iconWrap img{
	width: 150px;
}


.featureList.darkgrey .boxIconDesc .iconWrap i{
	color: var(--blu-astori-activecolor);
}
.featureList.darkgrey .boxIconDesc .desc{
	color: var(--grey-light);
	font-weight: normal	;
}
.featureList.darkgrey .boxIconDesc .desc h5{
	color: var(--grey);
}

/* WZAPP  -------------------------------------------------------------- */

.whats-float {
    position: fixed;
    transform:translate(140px,0px);
    top:75%;
    right:0;
    width:180px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}






/* MEDIAQUERY  -------------------------------------------------------------- */


@media (max-width: 575px) {}	
@media (max-width: 767px) {
	#topNav ul.mainMenu{
		display: none;
	}

	#HeroVideoNewOwl .item{
    height:100%;
    min-height: 600px;
  }

	#topNav .menuwrap.is-active{
		position: absolute;
		top: 107px;
		width: 100%;
		height: 600px;
		overflow: auto;
		left: 0;
		z-index: 2;
		background: var(--white);
		box-shadow: 0px 11px 20px rgb(0 0 0 / 7%);
	}

	#topNav.fixed-top .menuwrap.is-active{
		position: absolute;
    top: 69px;
    width: 100%;
    height: 600px;
    overflow: auto;
    left: 0;
    z-index: 2;
    background: var(--white);
    box-shadow: 0px 11px 20px rgb(0 0 0 / 7%);
	}

	#topNav .menuwrap.is-active ul.mainMenu{
		display: inherit;
	}

	#topNav ul.mainMenu li ul.subMenu{
		column-count: 1;
	}

	/*#topNav .menuwrap.is-active ul.mainMenu li  a.expandsubNav{
		position: absolute;
		right:20px;
		top:-5px;
		border-radius: 30px;
		background: transparent;
		transition: all 0.2s ease-in-out;
	}

	#topNav .menuwrap.is-active ul.mainMenu li  a.expandsubNav.is-active{
		transform: rotate(45deg);
	}

	#topNav .menuwrap.is-active ul.mainMenu li  a.expandsubNav i{
		font-size: 22px;
	}*/


	#topNav .menuwrap.is-active ul.mainMenu li > a {
    padding: 15px 20px;
	}

	#topNav ul.mainMenu li:hover ul.subMenu{
		position: relative;
		top: 0;
		width: 100%;
		box-shadow: initial;
		border:none ;
	}

	#topNav ul.mainMenu li:hover ul.subMenu li a + ul.no-bullets{
		 margin-left: 30px;
     border-left: 1px solid #d6f0fe;
	}

	#topNav ul.mainMenu li:hover ul.subMenu li a + ul.no-bullets li a{
		font-size: 14px;
	}


	#topNav .menuwrap.is-active ul.mainMenu li  a.hasChildDesk{
		display: none;
	}

	#topNav .menuwrap ul.mainMenu li.hasChildMob,
	#topNav .menuwrap.is-active ul.mainMenu li  a.hasChildMob{
		display: block;
	}

	#topNav .whatsApp{
		display: block;
		position: absolute;
		z-index: 3;
		top:52px;
		right: 80px;
		cursor: pointer;
	}


	#topNav.fixed-top .whatsApp{
		display: block;
		position: absolute;
		z-index: 3;
		top:16px;
		right: 80px;
		cursor: pointer;
	}

	#HeroVideoNewOwl .videoMobile video{
    object-fit: contain;
  }

  #focusSlider .carousel-item {
    position: relative;
    min-height: 500px;
	}

	#focusSlider .carousel-item img{
	   width: initial !important;
    height: 500px;
	}

  #focusSlider .carousel-item .overTxt h5{
  	font-size: 30px;
  }

  
  #HeroVideoNewOwl .owl-nav{
	top:initial;
 bottom:20px;
}

}
@media (max-width: 1024px) {}

@media (min-width: 768px) {
	#hamburger{
		display: none;
	}
	.whatsApp{
		display: none;
	}
}
@media (min-width: 992px)  {}
@media (min-width: 1025px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}



/* Cta Argument  */
.fourResHero{
	position: relative;
	height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
  }
  .fourResHero .textOverlay{
	position: absolute;
	padding:0 10%;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgb(0 0 0 /60%);
  }


/* Google reCaptcha */
.grecaptcha-badge {
	visibility: hidden;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
  }
  .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }



















