html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
	background: #626262;
}

::selection {
    background-color: #5e5e5e;
}

img,
svg{
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
    width: 80%;
}

body{
    background: #fff;
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none outside none;
    margin: 0;
}
.pos-rel{
    position: relative;
}
.pos-abs{
    position: absolute;
}
.pos-fix{
    position: fixed;
}
.full-width{
    width: 100%;
    max-width: 1440px;
}
.full-height{
    height: 100%;   
}
.full-size{
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}
.pos-top{
    top:0;
}
.pos-left{
    left: 0;
}
.pos-right{
    right: 0;
}
.pos-bottom{
    bottom: 0;   
}
.relh100{
    position:relative; height: 100%;   
}
/* Make page full width so reset foundation restriction on max-width*/
.row{
/*    width: 100%;*/
    max-width: 100%;
}


ul, li{
    list-style: none outside none;
    margin: 0;
}

.full-width{
    width: 100%;
    max-width: 100%;
    
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.fullscreen-width{
    width: 100%;
    max-width: 100%;
}
.table{
    display: table;
    height: inherit;
    margin: auto;
}
.table-cell{
    display: table-cell;
/*    height: inherit;*/
    vertical-align: left;
}
.align-center{
    text-align: center;   
}
.align-left{    
    text-align: left;
}
.align-right{
    text-align: right;   
}
.align-justify{
    text-align: justify;   
}

/** 0. color Color */
.mask:before
{
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    opacity: 0.8;
/*    z-index: 10;*/
}
.title.bg-red,
.bg-red,
.mask-red:before{    
    background: #e51c23;
}
.title.bg-yellow,
.bg-yellow,
.mask-yellow:before{    
    background: #ffeb3b;
}
.title.bg-blue,
.bg-blue,
.mask-blue:before{    
    background: #5677fc;
}
.title.bg-pink,
.bg-pink,
.mask-pink:before{    
    background: #e91e63;
}
.title.bg-green,
.bg-green,
.mask-green:before{    
    background: #259b24;
}
.title.bg-white,
.bg-white,
.mask-white:before{    
    background: #fff;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #1f1f1f;
}
.title.bg-orange,
.bg-orange,
.mask-orange:before{    
    background: #ff9800;
/*    background: #ef6c00;*/
}
.title.bg-purple,
.bg-purple,
.mask-purple:before{    
    background: #9c27b0;
}
.title.bg-lime,
.bg-lime,
.mask-lime:before{    
    background: #cddc39;
}
.title.bg-bluegrey,
.bg-bluegrey,
.mask-bluegrey:before{    
    background: #607d8b;
}

.title.bg-bluegreylight,
.bg-bluegreylight,
.mask-bluegreylight:before{    
    background: #f0f0f0;
}
.title.bg-bluegreydark,
.bg-bluegreydark,
.mask-bluegreydark:before{    
    background: #37474f;
}
.title.bg-indigo,
.bg-indigo,
.mask-indigo:before{    
    background: #3f51b5;
}
.title.bg-black,
.bg-black,
.mask-black:before{    
    background: #000;
}
.title.bg-black1,
.bg-black1,
.mask-black1:before{    
    background: #333;
}
.title.bg-amber,
.bg-amber,
.mask-amber:before{    
    background: #ffc107;
}

.text-white{
    color: #fff;   
}
.text-black{
    color: #333333;   
}
.text-bold{
    font-weight: bold;   
}
.text-red{
    color: #e51c23;   
}
.text-blue{
    color: #455ede;   
}
.text-orange{
    color: #ff9800;   
}
.text-yellow{
    color: #ffd600;   
}
.text-amber{
    color: #ffc107;   
}
.text-pink{
    color: #e91e63;   
}
.text-lightblue{
    color: #03a9f4;   
}

.small-col-20{
    width: 20%;
}
.box-shadow {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
     0 2px 2px rgba(0,0,0,0.2),
     0 0 4px 1px rgba(0,0,0,0.1);
}

 .ohnohoney {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }

/* Viewport visibility animation  */
.hidden{
     opacity:0;
     -webkit-transition: 0.6s;
     -ms-transition: 0.6s;
     transition: 0.6s;
}
.visible{
     opacity:1;
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.invisible{
    display: none !important;  
}
.s-visible-medium-up{
    opacity:0;
}

.bold {font-weight: bold;}

strong {
    color: #ed6a28;
}
.column, .columns{
    padding: 0;   
}
.row .row{
    margin: 0;   
}

/* 1. Link and logo at top  */
.header-top{
    position: absolute;
    top: 25px;
    z-index: 20;
	height: 56px;
    width: 100%;
    text-align: center;
}
.header-top.material{
	background: rgba(255, 255, 255, 0.15);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}

	.header-top>div{
		display: inline-block;
	}
	.header-top .logo img{
		height: 45px;
		width: auto;
	}
	.header-top .logo{
		transition: 0.3s;
	}

	.header-top.material .menu{
		border-right: 1px solid #f5f5f5;
	}
	.header-top.material .menu:last-child{
		border-right: none;
	}
	.header-top.material .menu a,
	.header-top .menu a{
		height: 56px;
		display: block;
		float: left;
		background: #fff;
		color: #5677fc;
		text-transform: capitalize;
		text-align: center;
		font-size:18px;
    	font-family: 'Asap';
		font-weight: normal;
		padding: 14px 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.header-top .menu a{
		background: transparent;
		font-weight: normal;
		color: #fff;
		position: relative;
	}
	.header-top.material .menu a:first-child:after{
		display: none;
	}
	.header-top .menu a:first-child:after{
		position: absolute;
		left: 0;
		top: 25%;
		height: 50%;
		width: 1px;
		background: #fff;
		content: "";
	}

	.header-top.material .menu a:hover{
		background: #5677fc;
	}
	.header-top .menu a:hover{
		background: rgba(255, 255, 255, 0.15);
		color: #fff;
	}

	
	rc-anchor-light.rc-anchor-normal, .rc-anchor-light.rc-anchor-compact {
    border: 1px solid #555555;
}

.rc-anchor-dark {
    width: 425px;
}

.rc-anchor-dark > iframe {
    width: 425px;
}

        .g-recaptcha > iframe{
    width: 500px !important;
    margin: 0 auto; /* Center the reCAPTCHA widget */
}
	
	


/* 4. Page footer */
.page-footer{
	position: fixed;
	bottom: 20px;
	right: 56px;
	margin-right: -8px;
	color: #fff;
	font-size:18px;
	font-family: 'Asap';
	font-weight: normal;
}

.page-footer2{
	position: fixed;
	bottom: 23px;
	left: 35px;
	margin-right: -8px;
	font-size:20px;
	font-family: 'SVN-Gilroy', sans-serif;
	font-weight: normal;
}

.page-footer2 a{
    color: #ababab;
    text-decoration: none;
    transition: 0.5s;
}

.page-footer2 a:hover{
    color: #808080;
    transition: 0.5s;
}
.page-footer a:first-child{
	margin-left: 8px;
}
.page-footer a{
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
	padding: 5px 8px;
}
.page-footer a .ion{
	font-size: 1.2em;
}
.page-footer a:hover{
	opacity: 0.8;
}


/* 5. Page cover */
.page-cover{
     background-image: linear-gradient(135deg, #262726, #1a191a);
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 0;
}
    /* 5.1. Page cover background image,color */
    .page-cover .cover-bg{
           
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: -3;
    }
	.page-cover .cover-bg.bg-color{
        background-image: none;
        z-index: -3;
    }

    /* 5.2 Page cover  background mask */
    .page-cover .cover-bg.cover-bg-mask{
        background: rgba(0, 0, 0, 0.12);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed; 
        z-index: 0;
        -webkit-transition: 2s;
        -ms-transition: 2s;
        transition: 2s;
    }
/*
.page-cover .cover-bg:after{
        animation: grain 8s steps(10) infinite;
  background-image: url(https://cdn.residente.com/assets/images/dynamic/main/noise.gif);
  content: "";
  height: 300%;
  left: -50%;
  opacity: .015;
  position: fixed;
  top: -110%;
  width: 200%;
    }
*/

@keyframes grain {
  0%, 100% { transform:translate(0, 0) }
  10% { transform:translate(-5%, -10%) }
  20% { transform:translate(-15%, 5%) }
  30% { transform:translate(7%, -25%) }
  40% { transform:translate(-5%, 25%) }
  50% { transform:translate(-15%, 10%) }
  60% { transform:translate(15%, 0%) }
  70% { transform:translate(0%, 15%) }
  80% { transform:translate(3%, 35%) }
  90% { transform:translate(-10%, 10%) }
}

	/* 5.3 background slide */
	.page-cover .vegas-timer {
		display: none;
	}
/* 6. Main Page */
.page-main{  
    position: relative;
    width: 100%;
    height: 100%;
}
 
/* 6.0 Page footer with scroll down button */
.p-footer {
    bottom: 0;
    position: absolute;
    width: 100%;
    padding-top: 1rem;
}
.p-footer .icon{
	position: absolute;
	top: 24px;
	color: #fff;
	text-align: center;
	width: 24px;
	margin-left: -12px;
	font-size: 20px;
	transition: 0.3s;
}
	.p-footer .text{
		font-size: 12px;
		font-family: "Asap";
		text-transform: uppercase;
	}
.p-footer:hover .icon{
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.p-footer .arrow-d{
    position: relative;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    height: 48px;
    width: 48px;
    left: 50%;
    bottom: 32px;
	margin: 0;
	display: block;
	border: 0px solid #fff;
	border-radius: 100%;
    margin-left: -24px;   
	transition: 0.3s;
	font-family: "Asap";
	color: #fff;
	font-size: 14px;
    
    z-index: 20000;
}
	.p-footer .arrow-d:hover{
		background: #5677fc;
	}
	.p-footer .arrow-d.gone{
		-webkit-transform: scale(0);   
		transform: scale(0);   
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	.p-footer .arrow-d .circle{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.p-footer .arrow-d .circle:after{
		top: 12px;
		bottom: 12px;
		left: 12px;
		right: 12px;
		position: absolute;
		content: "";
		background: #fff;
		border-radius: 100%;
		-webkit-transition: 0.3s ;
		transition: 0.3s ;
	}
	.p-footer .arrow-d .after,
	.p-footer .arrow-d .before{
		top: 14px;
		position: absolute;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		opacity: 1;
	}
	/* Hover animation */
	.p-footer .arrow-d:hover .after,
	.p-footer .arrow-d:hover .before{
		opacity: 0.15;
	}
	.p-footer .arrow-d:hover .circle{
		background: #5677fc;
		background: rgba(86, 119, 252, 0);
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px; 
	}
	.p-footer .arrow-d:hover .circle:after{	
		border-radius: 0;
		left: 23px;
		right: 23px;
	}
	.p-footer .arrow-d .before{
		text-align: right;
		float: right;
		right: 72px;
	}
	.p-footer .arrow-d .after{
		text-align: left;
		float: left;
		left: 72px;
	}
	.p-footer .arrow-d:after,
	.p-footer .arrow-d:before{
		position: absolute; content: ' ';
		width: 24px;
		height: 24px;
		left: 12px;
		margin-left: 0.5px;
	/*
		-webkit-transform: rotateY(45deg);
		-ie-transform: rotateY(45deg);
	*/
		border-left-color: transparent;
		border-top-color: transparent;  
		-ms-transition: 0.3s;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	
	.p-footer .arrow-d.no-change:after, 
	.p-footer .arrow-d:hover:after{ 
		top: 14px; 
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;
		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-right-color: transparent; 
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer .arrow-d.no-change:before,
	.p-footer .arrow-d:hover:before{
		top: 14px;
		left: 14px;
		bottom: 14px;
		right: 14px;
		width: auto;
		height: auto;

		border: 2px solid #fff;
		border-left-color: transparent;
		border-top-color: transparent;  
		border-bottom-color: transparent;
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
	.p-footer:hover .arrow-d.no-change:after, 
	.p-footer:hover .arrow-d.no-change:before{
		top: 4rem;
	}
	.p-footer .arrow-d a{
		color: inherit;
	}
/* 6.1 Page general params */

.page{    
    position: relative;
    width: 100%;
    height: 100%;
}
.page-cent{
    width: 100%;   
    position: relative;
    text-align: center;
}
.page-cent:nth-child(2){
    width: 100%;   
    position: relative;
    text-align: left;
}

.page-cent .content p{
}
.page-cent .content{
    float: left;
    margin-top: 10%;
    box-sizing: border-box;
    width: 57%;
/*    width: auto;*/
    margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 21%;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Gilroy Light';
	color: #fff;
}



.page-cent .contentabout{
    width: 30%;
/*    width: auto;*/
    margin: 0 auto;
    margin-top: -20%;
	padding-top: -70%;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Gilroy Light';
	color: #fff;
}

.page-cent .p-title{
    display: block;
    margin-bottom: 0.5rem;
}
.page-cent .p-title h3{
/*    text-transform: capitalize;   */
    font-size: 40px;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 5px;
    text-align: left;
    display: inline-block;
	color: #fff;
    font-family: 'Asap';
	border-bottom: 1px solid #5677fc;
}
.page-cent .p-title h2{
    text-transform: uppercase;   
    font-size: 22.5px;
	line-height: 12px;
    text-align: left;
    padding-top: -2%;
	margin-top: -2%;
	margin-bottom: 0.3em;
    display: block;
	color: #fff;
    font-family: 'Asap';
}

/* Page general structure */
.page .p-title i{
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 0em;
	font-size: 0.8em;
}
.page-cent .text{	
    font-family: 'Asap';
	color: #fff;
	text-align: left;
    
}
.page p{    
    font-family: 'Asap';
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0.75rem;
}
.page p.small{
	font-size: 14px;
}
.page p.center{
	text-align: left;
    font-size: 17px;
}
.page p.upper{
    text-transform: uppercase;
}
.page p.light{
    font-family: 'OpenSans-Light';
}
.page h4{
	text-transform: uppercase;
	font-weight: bold;
    color: #ffffff;
    font-size: 20px;
	margin-bottom: 0;
	margin-top: 0;
}

.page h2,
.page h3,
.page h4{
    font-family: 'Asap';
    color: #ffffff;
    font-size: 70px;
}

/* 6.2 Page and slide animation */
.slide,
.page .content,
.page-home .logo-container ,
.page{
	-webkit-transition: 0.8s background , 0.6s transform, 0.6s opacity;
	transition: 0.8s background , 0.6s transform, 0.6s opacity;
	-webkit-transform: none;
	transform: none;
	background: transparent;
	border: none;
}
.page .content{
	z-index: 1;
}
.page:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	content: '';
	z-index: 0;
	-webkit-visibility: hidden;
	visibility: hidden;
	-webkit-transition: 0.9s background , 0.6s transform, 0.8s visibility;
	transition: 0.9s background , 0.6s transform, 0.8s visibility;
	-webkit-transform: none;
	transform: none;
}
.page.transition:before{
	-webkit-visibility: visible;
	visibility: visible;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}
.page-home.transition .logo-container{
	-webkit-transform: translateY(20px) scale(0.1);
	transform: translateY(20px) scale(0.1);
	opacity: 0;
}
/*
.page.transition .content, .contenti, .content2{
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	background: rgba(255, 255, 255, 0.15);
}
*/
.slide.transition{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	background: rgba(255, 255, 255, 0.15);
}
/* 6.3 Home page */
.page-home .content ,
.page-home.page-cent .content {
	position: relative;
	max-width: 1200px;
	width: 100%;
    text-align: left;
}
.page-home .logo-container{
	position: absolute;
	top: 80px;
	width: 100%;
	text-align: center;
}

.page-home .logo-container img.h-logo{
	position: absolute;
    text-align: center;
	height: 30px;
	width: 100%;
}

.page-home .content .header{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.page-home .content .header>div{
	display: inline-block;
	position: relative;
}

.page-home .content h2{
	text-transform: uppercase;
	font-size: 94px;
	text-align: left;
	line-height: 1em;
}

.page-home .content h3{
	text-align: left;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 1em;
	font-weight: bold;
	border-left: 4px solid currentColor;
	padding-left: 10px;
	margin-left: 10px;
	max-width: 180px;
}

.page-home .content .subhead{
	display: block;
	text-align: left;
	position: absolute;
	left: 20px;
	color: rgba(255,255,255,0.2);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.page-home .content .subhead:hover{
	color: #fff;
}

.page-home .content .subhead a{
	color: inherit;
}

.page .form input{ 
    background: none;
    border: none;
    color: #fff;
    padding: 0em 1em;
	padding-bottom: 0.3em;
    font-family: 'Asap';
    font-size: 15px;
    box-shadow: none;
    display: inline-block;
	position: absolute;
        width: 91.5%;
    height: 34px;
	bottom: 0;
	left: 25px;
	right: 0;
	margin-bottom: 0;
    top: 9px;
}

.page .form.send_email_form .fields{
	margin-top: 72px;
	padding-left: 16px;
	height: 42px;
	min-height: 36px;
    width: 420px;
}

.page .form.send_email_form .buttons,
.page .form.send_email_form .buttons button{
	height: 35px;
}
.page .form label{
	display: inline-block;
    font-family: 'Asap';
	font-weight: bold;
    font-size: 20px;
    color: #fff;
	text-transform: uppercase;
    display: inline-block;
	margin-bottom: 0.35em;
	padding-top: 0.40em;
}
.page .form .fields{
	margin-top: 15px;
	position: relative;
    border-bottom: 1px solid #8c8c8c;
}

.page .form .fields.no-border{
	border: none;
}
.page .form .fields>div{
	float: left;
}
.page .form .fields .buttons{ 
	position: absolute;
	bottom: 0;
	right: -.5px;
}
.page .form button{ 
    background: #5677fc;
    color: #fff;
    font-family: 'Asap';
    font-size: 15px;
    text-transform: uppercase;
    padding: 0.4rem 2rem;
    position: absolute;
    margin-left: -117.7px;
    -webkit-transition: 0.3s;
    -webkit-clip-path: polygon(30px 0px, 138px 0px, 53px 145px, 0px 46px);
    clip-path: polygon(30px 0px, 138px 0px, 53px 145px, 0px 46px);
    transition: 0.3s;
    z-index: 2;
}
.page .form button:after{
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	content: "";
	background: #fff;
	opacity: 0;
	border-radius: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;	
}
.page .form button:hover:after{
	opacity: 1;
	border-radius: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.page .form button:hover{
	background: transparent;
	color: #ed6a28;
}
.page .form textarea{ 
    background: #fff;
    border: 1px solid currentColor;
    color: #626262;
    padding: 0.5em 1em;
    min-width: 200px;    
    font-size: 20px;
	font-family: "Asap";
    display: block;
    width: 100%;
    box-shadow: none;
    min-height: 108px;
	margin-top: 3px;
} 

.page .form textarea:focus { 
    border: 1px solid #ed6a28 !important;
    transition: 0.3s;
}

.page .message-ok{
    margin-bottom: 0;
    position: absolute;
    font-size: 20px;
}

/* 6.6 About us */
.page-about .content{
    align-content: left;
    border: none;
    padding-top: 2%;
    padding-bottom: 25%;
    margin-left: 6%;
}
.page-about .article{
       max-width: 480px;
    margin: auto;
}

.page-contact .fp-controlArrow {
	display: none;
}
.page-contact .p-title{
	position: relative;
}
.page-contact .p-title .buttons{
	position: absolute;
	bottom: 8px;
	right: 0;
	background: rgba(255,255,255,0.15);
    -webkit-clip-path:  polygon(20px 0, 330px 0, 165px 300px, 0px 39px);
	display: inline-block;
}

.page-contact .p-title .buttons li{
	position: relative;
	display: block;
	width: 48px;
	float: left;
}
.page-contact .p-title .buttons a{
	text-align: center;
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	margin: 0;
}
.page-contact .p-title .buttons a i{
	margin: 0;
	font-size: 24px;
	padding-top: 0.5em;
}

.page-contact .p-title .buttons a:after{
	position: absolute;
	content: "";
	background: rgba(255,255,255,0);
	border-radius: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.page-contact .p-title .buttons a:hover:after{
	border-radius: 0;
	background: rgba(255,255,255,0.15);
}
.page-contact .contact li{
	margin-top: 20px;
}
.page-contact .contact img{
	height: 56px;
	width: auto;
}
.page-contact a{
    color: #fff;
}
.page-contact .right{
	text-align: right;
}
	.page-contact .social-links .page-header .header-title{
        display: none;
    }
    .page-contact .socialnet{
		margin-right: -10px;
	}
    .page-contact .socialnet a{
        color: #fff;
		font-size: 24px;
        margin-bottom:  0.25rem;
        display: inline-block;
		width: 1.5em;
        border-radius: 1em;
        background: transparent; 
		position: relative;
		text-align: center;
    }
    .page-contact .socialnet a:after{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: transparent;
        -ms-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
		border-radius: 100%;
	}
    .page-contact .socialnet a:hover:after{
        border-radius: 0;
        background: rgba(255, 255, 255, 0.15); 
        color: #fff;       
    }
/* Form */


.content2 {
    float: left;
    margin-top: 30%;
    box-sizing: border-box;
    width: 30%;
    margin: 0 auto;
	padding-top: 5%;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Gilroy Light';
	color: #fff;
}

.content2 p {
    cursor: default;
    padding-left: 4.8%;
    padding-top: 2px;
}

.content2 span:hover {
    color: white;
    transition: all 0.1s ease; 
}


.member {
    height: 50px;
    margin-bottom: 15px;
}

.underline {
    height: 30px;
    background-color: #ef7d19;
    color: white;
    transition: all 0.2s ease; 
    -webkit-clip-path: polygon(20px 0,  21.1px 0, -112px 255px, 0 39px);
    clip-path: polygon(20px 0,  21.1px 0, -112px 255px, 0 39px);
}

.content2 a {
    cursor: default;
}

.content2 a:hover .underline {
    -webkit-clip-path:  polygon(20px 0, 330px 0, 165px 300px, 0px 39px);
    clip-path:  polygon(20px 0, 330px 0, 165px 300px, 0px 39px);
}

.boldi {
    position: absolute;
    margin-top: -20px;
    padding-left: 1.3%;
    padding-bottom: 1%;
    padding-right: 10%;
    padding-top: 3px;
    font-weight: bold;
} 

.image-member {
    opacity: 0;
    position: absolute;
    left: 21%;
    bottom: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    width: auto;
}

.image-member:hover {
    visibility: hidden;
    display: none;
    pointer-events: none; 
}


.image-member img {
   transition: all 0.4s;
    height: 640px;
    opacity: 0;
}

.content2 div:hover .image-member {
    transition: all 0.4s;
    opacity: 1;
    transform: translateY(0);
    
}

.content2 div:hover .image-member img {
    pointer-events: none; 
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s;
}

.contenti {
    float: center;
    margin-top: 10%;
    box-sizing: border-box;
    width: 460px;
    margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 72px;
    padding-left: 1em;
    padding-right: 1em;
    display: inline-block; 
    -ms-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
	text-align: left;
    font-family: 'Gilroy Light';
	color: #fff;
}

.contenti .p-title h3{
    padding-right: 145px;
    font-size: 45px;
    font-weight: bold;
}

#new {
    font-size: 45px;
}

#reg-email {
    float: left;
}

.logo-container img {
    height: 45px;
}


a:hover circle {
    stroke: white;
}

.quick-link a:active circle {
    stroke: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #949494 inset !important;
    box-shadow: 0 0 0 30px #949494 inset !important;
}


.bg-img {
        background-image: linear-gradient(135deg, #262726, #1a191a);
}


