@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskRegular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskRegularItalic.ttf");
  font-weight: normal;
	font-style: italic;
}
@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskBold.ttf");
  font-weight: bold;
	font-style: normal;
}
@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskBoldItalic.ttf");
  font-weight: bold;
	font-style: italic;
}
@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskLight.ttf");
  font-weight: lighter;
	font-style: normal;
}
@font-face {
  font-family: PxGrotesk;
  src: url("../fonts/PxGroteskLightItalic.ttf");
  font-weight: lighter;
	font-style: italic;
}
html, body {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--border-color);
	font-family: PxGrotesk;
}

.container{
  padding-top: 100px;
}


.corSVG{
    fill:var(--border-color);
  }
h3,h4,h5,h6{
  font-weight: normal;
  
}
:root {
  --border-color: #282828;
}



h1, h2, h3, h4, h5, h6 {
  font-family: PxGrotesk;
  margin: 0;
  color: var(--border-color);
}
h1 {
  font-weight: bold;
  line-height: 1.2;
  
}
h2{
  font-weight: bold;
  line-height: 1.2;
}
h3{
  line-height: 1.5;
}
h4{
  line-height: 1.4;
}
h5{
  line-height: 1.5;
}

p {
  font-family: "Space Mono", monospace;
  margin-bottom: 0px;
  line-height: 1.6;
}

a:focus, a:hover {
  color: inherit;
  text-decoration: none;
}


/*
GENERIC BTN

.btn {
  background-color: var(--border-color);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
.btn:before{
  content:"";
  width:100%;
  height:100%;
  position: absolute;
  top: -7px;
  left: 7px;
  border: 2px solid var(--border-color);
}
.btn:active{
  transform: translateX(7px) translateY(-7px);
}
.btn:active:before{
  transform: translateX(-7px) translateY(7px);
}
*/
.flexer{
  display: flex;
}
.flexer404{
  width: 150px;
  height: 443px;
  display: flex;
  flex-flow: column wrap;
  
  justify-content: space-around;
}

.btnFooter {
  background-color: var(--bg-color);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  color: var(--border-color);
  margin: 0 auto;
  transition: padding 300ms ease 300ms;
}
.btnFooter .setinha{
  display: block;
  opacity: 0;
  background-color:var(--border-color);
  height: 2px;
  width: 0px;
  top:calc(50% - 1px);
  position: absolute;
  left: calc(100% - 35px);
  transition: all 300ms ease 0ms;
}
.btnFooter .setinha::before{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  right:1px;
  background-color:var(--border-color);
  transform: rotate(0deg);
  transform-origin: 100% 50%;
}
.btnFooter .setinha::after{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  right:1px;
  background-color:var(--border-color);
  transform: rotate(0deg);
  transform-origin: 100% 50%;
}
.btnFooter:hover{
  transition: padding 300ms ease;
  padding-right: 60px;
}
.btnFooter:hover .setinha{
  transition: opacity 300ms ease 300ms, width 300ms ease 300ms;
  position:absolute;
  width: 20px;
  opacity:1;
}
.btnFooter:hover .setinha::before{
  transition: transform 300ms ease 600ms;
  transform: rotate(35deg);
}
.btnFooter:hover .setinha::after{
  transition: transform 300ms ease 600ms;
  transform: rotate(-35deg);
}
.btnFooter:before{
  content:"";
  width:100%;
  height:100%;
  position: absolute;
  top: -4px;
  left: 4px;
  border: 2px solid var(--bg-color);
}
.btnFooter:active{
  transform: translateX(4px) translateY(-4px);
}
.btnFooter:active::before{
  transform: translateX(-4px) translateY(4px);
}







.btn {
  background-color: var(--border-color);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  color: var(--bg-color);
  transition: padding 300ms ease 300ms;
}
.btn .setinha{
  display: block;
  opacity: 0;
  background-color:var(--bg-color);
  height: 2px;
  width: 0px;
  top:calc(50% - 1px);
  position: absolute;
  left: calc(100% - 35px);
  transition: all 300ms ease 0ms;
}
.btn .setinha::before{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  right:1px;
  background-color:var(--bg-color);
  transform: rotate(0deg);
  transform-origin: 100% 50%;
}
.btn .setinha::after{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  right:1px;
  background-color:var(--bg-color);
  transform: rotate(0deg);
  transform-origin: 100% 50%;
}
.btn:hover{
  transition: padding 300ms ease;
  padding-right: 60px;
}
.btn:hover .setinha{
  transition: opacity 300ms ease 300ms, width 300ms ease 300ms;
  position:absolute;
  width: 20px;
  opacity:1;
}
.btn:hover .setinha::before{
  transition: transform 300ms ease 600ms;
  transform: rotate(35deg);
}
.btn:hover .setinha::after{
  transition: transform 300ms ease 600ms;
  transform: rotate(-35deg);
}
.btn:before{
  content:"";
  width:100%;
  height:100%;
  position: absolute;
  top: -4px;
  left: 4px;
  border: 2px solid var(--border-color);
}
.btn:active{
  transform: translateX(4px) translateY(-4px);
}
.btn:active::before{
  transform: translateX(-4px) translateY(4px);
}


.btnLeft {
  background-color: var(--border-color);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  color: var(--bg-color);
  transition: padding 300ms ease 300ms;
  border: 1px solid transparent;
}
.btnLeft .setinhaLeft{
  display: block;
  opacity: 0;
  background-color:var(--bg-color);
  height: 2px;
  width: 0px;
  top:calc(50% - 1px);
  position: absolute;  
  right: calc(100% - 35px);
  transition: all 300ms ease 0ms;
}
.btnLeft .setinhaLeft::before{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  left:1px;
  background-color:var(--bg-color);
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}
.btnLeft .setinhaLeft::after{
  content:"";
  height: 2px;
  width: 8px;
  position: absolute;
  top: 0;
  left:1px;
  background-color:var(--bg-color);
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}
.btnLeft:hover{
  transition: padding 300ms ease;
  padding-left: 60px;
}
.btnLeft:hover .setinhaLeft{
  transition: opacity 300ms ease 300ms, width 300ms ease 300ms;
  position:absolute;
  width: 20px;
  opacity:1;
}
.btnLeft:hover .setinhaLeft::before{
  transition: transform 300ms ease 600ms;
  transform: rotate(35deg);
}
.btnLeft:hover .setinhaLeft::after{
  transition: transform 300ms ease 600ms;
  transform: rotate(-35deg);
}
.btnLeft:before{
  content:"";
  width:100%;
  height:100%;
  position: absolute;
  top: -4px;
  left: 4px;
  border: 2px solid var(--border-color);
}
.btnLeft:active{
  transform: translateX(4px) translateY(-4px);
}
.btnLeft:active::before{
  transform: translateX(-4px) translateY(4px);
}
/*
END GENERIC BTN
*/

/*
MENU
*/
.menu{
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
.menu-item{
  float: left;
  position: relative;
  
}
.menu-item:first-child {
  margin-left: 0px;
}
.menu-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 2.4;
  font-family: PxGrotesk;
  font-weight: bold;
  font-size: 16px;
}

.menu-item .borderTop,
.menu-item .borderRight, 
.menu-item .borderBottom, 
.menu-item .borderLeft{
  background-color: var(--border-color);
  position: absolute;
  transition: all 200ms ease-out;
} 

.menu-item .borderTop{
  width: 100%;
  height: 3px;
  top: 0px;
  left: 0px;
  
}
.menu-item .borderRight{
  width: 3px;
  height: 100%;
  bottom: 0px;
  right:0px;
  
}
.menu-item .borderBottom{
  width: 100%;
  height: 3px;
  bottom: 0px;
  right: 0px;
  
}
.menu-item .borderLeft{
  width: 3px;
  height: 100%;
  top: 0px;
  left: 0px;
  
}

.current_page_item{
  background-color: var(--border-color);
}
.current_page_item a {
  color: var(--bg-color);
}
.current_page_item .borderTop, 
.current_page_item .borderRight, 
.current_page_item .borderBottom, 
.current_page_item .borderLeft{
  display: none;
} 


.menu-item:hover .borderTop, 
.menu-item:hover .borderBottom {
  width: 30px;
  
}
.menu-item:hover .borderRight, 
.menu-item:hover .borderLeft {
  height: 15px;
  
}


.no-gutter > [class*='col-'] {
  padding-right:0;
  padding-left:0;
}
.menu-item:first-child {
  margin-left: 0px;
}

.btnMenuMobile {
  display: none;
}
.container{
  padding-top:30px;
  padding-bottom: 30px;
}
.moldura>div{
  opacity: 1;
  transition: width 300ms ease-in, height 300ms ease-in, background 200ms ease-out 300ms;

}

.moldura .borderTop, .moldura .borderBottom{
  position: fixed;
  width: 100%;
  height: 0px;
  background-color: var(--border-color);
  /*transform: matrix(1, 0, 0, 1000, 0, 0);*/
  z-index: 9999;

}
.moldura .borderLeft, .moldura .borderRight{
  position: fixed;
  width: 0px;
  height: 100%;
  background-color: var(--border-color);
  /*transform: matrix(1000, 0, 0, 1, 0, 0);*/
  z-index: 9999;

}


.moldura .borderTop{
  top: 0;
  left: 0;
}
.moldura .borderBottom{
  bottom: 0;
  left: 0;
}
.moldura .borderLeft{
  top: 0;
  left: 0;
}
.moldura .borderRight{
  top: 0;
  right: 0;

}

.moldura .openedTopBottom{
  height: 10px;
}
.moldura .openedLeftRight{
  width: 10px;
}

@media (max-width: 767px) {/** XS **/
  .footerLogo{
    display: none;
  }
  h1{ font-size: 35px; }
  h2{ font-size: 30px; }
  h3{ font-size: 16px; }
  h4{ font-size: 16px; }
  h5{ font-size: 12px; }
  p{ font-size: 12px; }
  #msg{
    font-size: 20px;
  }

  .container{
    padding-top:30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }


  #mobile-navigation {
    display: block;
    position: fixed;
    z-index: 10;
    width: 0;
    height: 0;
    -webkit-transition: width 200ms ease-in, height 200ms ease-out;
    -moz-transition: width 200ms ease-in, height 200ms ease-out;
    -ms-transition: width 200ms ease-in, height 200ms ease-out;
    -o-transition: width 200ms ease-in, height 200ms ease-out;
    transition: width 200ms ease-in, height 200ms ease-out;
    background-color:var(--border-color);
    overflow: hidden;
    
    top:15px;
    right:15px;
  }
  #site-navigation {
    display: none;
  }
  .menu{
    padding-top: 25px;
  }
  .menuOpen{    
    
    width: calc(100% - 30px)!important;
    height: calc(100% - 30px)!important;
  }
  .menu-item {
    width: 100%;
    height: 60px; 
    border: none;
  }
  .menu-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: left;
    vertical-align: middle;
    line-height: 2;
    font-family: PxGrotesk;
    font-weight: bold;
    font-size: 22px;
    color: var(--bg-color);
  }
  .menu-item a {
    position: relative;
    left: -240px;
    font-size:40px;
  }
  
  .menu-item{
    overflow: hidden;
    margin-bottom: 15px;
  }
  .firstElement{
    left: 20px!important;
    transition: all 200ms ease-out 200ms;
  }
  .secondElement{
    left: 20px!important;
    transition: all 200ms ease-out 300ms;
  }
  .thirdElement{
    left: 20px!important;
    transition: all 200ms ease-out 400ms;
  }
  .fourthElement{
    left: 20px!important;
    transition: all 200ms ease-out 500ms;
  }
  .fifthElement{
    left: 20px!important;
    transition: all 200ms ease-out 600ms;
  }
  .sixthElement{
    left: 20px!important;
    transition: all 200ms ease-out 600ms;
  }
  .menu-item .borderTop, 
  .menu-item .borderRight, 
  .menu-item .borderBottom, 
  .menu-item .borderLeft{
    display: none;
  } 
  .molduraComMenuAberto{
    background-color: var(--bg-color)!important;
  }
  .molduraComMenuAbertoTopBottom{
    height:10px!important;
  }
   .molduraComMenuAbertoLeftRight{
    width:10px!important;
  }
  

  .btnMenuMobile {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
    z-index: 20;
    background-color:var(--border-color);
  }
  .btnMenuMobile>div {
    display: block;
    width: 70%;
    left: 15%;
    height: 4px;
    background-color: var(--bg-color);
    position: absolute;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
  }
  .btnMenuMobile>div:nth-child(1) {
    top: 8px;
  }
  .btnMenuMobile>div:nth-child(2) {
    top: 18px;
  }
  .btnMenuMobile>div:nth-child(3) {
    top: 28px;
  }
  .btnMenuActive>div:nth-child(2){    
    opacity: 0;
  }
  .btnMenuActive>div:nth-child(1){
    -moz-transform: rotate(45deg) translateX(7px) translateY(7px);
    -webkit-transform: rotate(45deg) translateX(7px) translateY(7px);
    -o-transform: rotate(45deg) translateX(7px) translateY(7px);
    -ms-transform: rotate(45deg) translateX(7px) translateY(7px);
    transform: rotate(45deg) translateX(7px) translateY(7px);
  }
  .btnMenuActive>div:nth-child(3){
    -moz-transform: rotate(-45deg) translateX(7px) translateY(-8px);
    -webkit-transform: rotate(-45deg) translateX(7px) translateY(-8px);
    -o-transform: rotate(-45deg) translateX(7px) translateY(-8px);
    -ms-transform: rotate(-45deg) translateX(7px) translateY(-8px);
    transform: rotate(-45deg) translateX(7px) translateY(-8px);
  }
	.site-footer .containerFooter{
		padding-top: 30px!important;
    padding-left: 5px!important;
    padding-right: 5px!important;
	}

	.site-footer .info {
		margin-bottom: 20px;
	}

  .site-footer .social p{
		text-align: left!important;
  }
  .site-footer .social .socialIcons{
  	justify-content: flex-start;
  	margin-left: 0px!important;
  	margin-right: 10px!important;
  }
  .site-footer .social .socialIcons .fa{
  	margin-left: 0px!important;
  	margin-right: 10px!important;
  }
  .socialIconsMenu{
    position:absolute;
    width: auto;
    height: 50px;
    left: 25px;
    bottom: 65px;
    overflow:hidden;
    
  }

  .socialIconsMenu .tit{
    content:"follow us on..";
    font-family: PxGrotesk;
    font-size: 12px;
    color: var(--bg-color);
    position: absolute;
    left: -100px;
    top: 0px;
    transition: left 300ms ease-in 50ms;
  }

  .titSocialOpened{
    left: 0px!important;
    
  }

  .socialIconsMenuOpened{
    margin-top: 20px!important;
  }
  .socialIconsMenu .fa{
    margin-top: 70px;
  }

  .socialIconsMenu .fa-facebook-square{
    transition: margin 200ms ease-in 100ms;
    
  }
  #mobile-navigation h6{
    position:absolute;
    bottom: 15px;
    left: 25px;
    opacity: 0;
    color: var(--bg-color);
    
  }
  .h6Opacity{
    transition: opacity 200ms ease-in 1000ms;
    opacity: 0.7!important;
  }

  .socialIconsMenu .fa-youtube-play{
    transition: margin 200ms ease-in 200ms;

    
  }

  .socialIconsMenu .fa-twitter-square{
    transition: margin 200ms ease-in 300ms;
    
  }

  .socialIconsMenu .fa-linkedin-square{
    transition: margin 200ms ease-in 400ms;
    
  }

  .socialIconsMenu .fa-instagram{
    transition: margin 200ms ease-in 600ms;
    
  }

  .socialIconsMenu .fa-google-plus-square{
    transition: margin 200ms ease-in 500ms;
    
  }

  .socialIconsMenu .fa{
    color:var(--bg-color);
    font-size: 30px;
    margin-right: 10px;
    display: block;
    float: left;
  }

  .typed-cursor{
  	font-size: 20px!important;
  }
  .footerlink:visited{
  	color: #f4f4f4;
  }
  .subfooter p {
  	text-align: left!important;
  }
  

  /** PÁGINA CONTACTOS **/
  #divNewBiz, #divSayHi{
    text-align: center;
  }
  
  #divSayHi{
    margin-top: 15px;
  }

}
@media (min-width: 768px) and (max-width: 991px) {/** SM **/
  h1{ font-size: 60px; }
  h2{ font-size: 50px; }
  h3{ font-size: 20px; }
  h4{ font-size: 16px; }
  h5{ font-size: 13px; }
  p{ font-size: 13px; }
  #msg{
    font-size: 30px;
  }
  #mobile-navigation {
    display: none;
  }
  #site-navigation {
    display: block;
  }
  .btnMenuMobile{
    display:none;
  }
  
  .menu-item {
    width: 100px;
    height: 35px; 
    margin-left: 5px;
  }
  .footerlink:visited{
    color: #f4f4f4;
  }

  /** PÁGINA CONTACTOS **/
  #divNewBiz, #divSayHi{
    text-align: center;
  }

  #divSayHi{
    margin-top: 20px;
  }


}
@media (min-width: 992px) and (max-width: 1199px){/** MD **/
  h1{ font-size: 80px; }
  h2{ font-size: 60px; }
  h3{ font-size: 25px; }
  h4{ font-size: 18px; }
  h5{ font-size: 14px; }
  p{ font-size: 14px; }
  #msg{
    font-size: 40px;
  }
  #mobile-navigation {
    display: none;
  }
  #site-navigation {
    display: block;
  }
  .btnMenuMobile{
    display:none;
  }
  
  .menu-item {
    width: 120px;
    height: 35px; 
    margin-left: 25px;
  }
  .footerlink:visited{
    color: #f4f4f4;
  }

  /** PAGINA CONTACTOS **/
  .formDivs legend{
    font-size: 20px;
  }
  .formDivs input[type=text], .formDivs textarea{
    font-family: "Space Mono", monospace;
    border-bottom: 3px solid #282828;
  }

  #newBiz{
    float: right;
  }

  #divNewBiz, #divSayHi{
    text-align: left;
  }
}
@media (min-width: 1200px) {/** LG **/
  h1{ font-size: 90px; }
  h2{ font-size: 75px; }
  h3{ font-size: 30px; }
  h4{ font-size: 20px; }
  h5{ font-size: 16px; }
  p{ font-size: 16px; }
  #msg{
    font-size: 50px;
    display:block;
    height: 55px;
    margin-bottom: 20px;
    font-weight: normal!important;
  }
  #mobile-navigation {
    display: none;
  }
  #site-navigation {
    display: block;
  }
  .btnMenuMobile{
    display:none;
  }
  
  .menu-item {
    width: 120px;
    height: 35px; 
    margin-left: 35px;
  }


  /** PAGINA CONTACTOS **/
  #newBiz{
    float: right;
  }

   #divNewBiz, #divSayHi{
    text-align: left;
  }
}

.footerlink:visited{
    color: #f4f4f4;
  }


.wrapper{
  width: 100%;
  height: auto;
  margin-bottom: 550px;
}

.site-footer{
  z-index: -1;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 550px;
  background-color: var(--border-color);
  padding-top: 40px;
}
.site-footer .upNext {
  color: var(--bg-color);
  text-align: center;
  font-style: PxGrotesk;
  font-size: 14px;
  margin-bottom: 10px;
}
.site-footer h2{
  color: var(--bg-color);
  text-align: center;
  margin-bottom: 40px;
}
.site-footer .linkNext{
  color: var(--bg-color);
  display: block;
  width: 100px;
  height: 40px;
  font-family: PxGrotesk;
  font-size: 18px;
  margin-left: calc(50% - 50px);
  text-align: center;
  line-height: 2;
  border: 2px solid var(--bg-color);
  margin-bottom: 0px;
}
.site-footer .info p, .site-footer .social p, .site-footer .subfooter p  { font-family:PxGrotesk; color: #f4f4f4; font-size: 12px; opacity: 0.5;}
.site-footer .social p{
  text-align: right;
}
.site-footer .subfooter {
  margin-top: 30px;
}
.site-footer .subfooter p {
  text-align: center;
}

.bold{
  font-weight: bold;
}


#formDivNewBiz{
  display: none;
}

#formDivSayHi{
  display: none;
}

.showEl{
  display: block!important;
}

.hideEl{
  display: none!important;
}

.btnForm:visited{
  color: #d9d7d9;
}

.btnForm {
    background-color: var(--border-color);
    padding: 7px 10px;
    border-radius: 0;
    font-weight: bold;
    font-size: 13px;
    position: absolute;
    border: 2px solid #282828;
    color: #d9d7d9;
    margin-left: 20px;
    margin-top: 20px;
}

.btnForm:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -7px;
    left: 7px;
    border: 2px solid #282828;
}

.formDivs{
    background-color: #d9d7d9;
    padding: 25px;
    font-size: 20px;
}

.formDivs legend{
    color: #282828;
    border-bottom: 0px solid;
    padding: 0px 50px;
    font-size: 20px;
    font-family: PxGrotesk;
}

.formDivs input[type=text], .formDivs textarea{
  font-family: "Space Mono", monospace;
  border-bottom: 3px solid #282828;
}

.formDivs input{
    background-color: transparent;
    border: 0;
    border-bottom: 4px solid #282828;
    font-size: 20px;
    padding-top: 25px;
    border-radius: 0px;
    text-align: center;
}

.formDivs input:focus{
    outline: 0;
}

.formDivs textarea{
    background-color: transparent;
    resize: none;
    border: 4px solid #282828;
    width: 75%;
}

.formDivs textarea:focus{
    outline: 0;
}

.lineForm, .lineForm_form2{
    height: 7px;
    background-color: #282828;
    position: absolute;
    width: 0;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
}

.actions{
    overflow: hidden;
      padding-top: 30px;
}

.actions>ul{
    margin: 0;
    padding: 0;
    float: right;
}

.actions>ul li{
    list-style: none;
    float: left;
    margin-right: 30px;
}

.actions>ul li a{
    text-decoration: none;

    background-color: var(--border-color);;
      padding: 5px 10px;
    border-radius: 0;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    border: 2px solid #282828;
    color: #d9d7d9;
}

.actions>ul li a:before{
  content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -7px;
    left: 7px;
    border: 2px solid #282828;
}

.steps{
    display: none;
}

.content>.title {
    position: absolute;
    left: -999em;
}

fieldset{
    border: 0;
    text-align: center;
}

fieldset label{
    display: block;
    padding-top: 10px;
    font-size: 15px;
}

fieldset p{
  font-size: 12px;
}

.nomePersona, .nomePersona_form2{
  font-weight: bold;
}