/* ALL PAGES */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }


body {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  overflow-x:hidden;
}





div, h1, h2, h3, h4, h6, p{
    font-family: 'Roboto';
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}


/* ALL PAGES */



/* Toda a customizaçao da navbar deve ter o seu ID anteriormente como abaixo indicado */

#mainNav {

}

#mainNav .navbar-default {

}

#mainNav .nav-right {

}




/* 480x767 MS COLUMN */

 .col-ms-1,
 .col-ms-2,
 .col-ms-3,
 .col-ms-4,
 .col-ms-5,
 .col-ms-6,
 .col-ms-7,
 .col-ms-8,
 .col-ms-9,
 .col-ms-10,
 .col-ms-11,
 .col-ms-12 {position:relative; padding-left:15px; padding-right:15px;}
@media (min-width: 480px) and (max-width: 767px) {
   .container {max-width:748px;}
   .col-ms-1,
   .col-ms-2,
   .col-ms-3,
   .col-ms-4,
   .col-ms-5,
   .col-ms-6,
   .col-ms-7,
   .col-ms-8,
   .col-ms-9,
   .col-ms-10,
   .col-ms-11 {float:left;}
   .col-ms-1 {width:8.33333333%;}
   .col-ms-2 {width:16.66666667%;}
   .col-ms-3 {width:25%;}
   .col-ms-4 {width:33.33333333%;}
   .col-ms-5 {width:41.66666667%;}
   .col-ms-6 {width:50%;}
   .col-ms-7 {width:58.33333333%;}
   .col-ms-8 {width:66.66666667%;}
   .col-ms-9 {width:75%;}
   .col-ms-10 {width:83.33333333%;}
   .col-ms-11 {width:91.66666667%;}
   .col-ms-12 {width:100%;}
   .col-ms-pull-0 {right:auto;}
   .col-ms-pull-1 {right:8.33333333%;}
   .col-ms-pull-2 {right:16.66666667%;}
   .col-sm-pull-3 {right:25%;}
   .col-sm-pull-4 {right:33.33333333%;}
   .col-sm-pull-5 {right:41.66666667%;}
   .col-sm-pull-6 {right:50%;}
   .col-sm-pull-7 {right:58.33333333%;}
   .col-ms-pull-8 {right:66.66666667%;}
   .col-ms-pull-9 {right:75%;}
   .col-ms-pull-10 {right:83.33333333%;}
   .col-ms-pull-11 {right:91.66666667%;}
   .col-ms-pull-12 {right:100%;}
   .col-ms-push-0 {left:auto;}
   .col-ms-push-1 {left:8.33333333%;}
   .col-ms-push-2 {left:16.66666667%;}
   .col-sm-push-3 {left:25%;}
   .col-sm-push-4 {left:33.33333333%;}
   .col-sm-push-5 {left:41.66666667%;}
   .col-sm-push-6 {left:50%;}
   .col-sm-push-7 {left:58.33333333%;}
   .col-ms-push-8 {left:66.66666667%;}
   .col-ms-push-9 {left:75%;}
   .col-ms-push-10 {left:83.33333333%;}
   .col-ms-push-11 {left:91.66666667%;}
   .col-ms-push-12 {left:100%;}
   .col-ms-offset-0 {margin-left:0;}
   .col-ms-offset-1 {margin-left:8.33333333%;}
   .col-ms-offset-2 {margin-left:16.66666667%;}
   .col-ms-offset-3 {margin-left:25%;}
   .col-ms-offset-4 {margin-left:33.33333333%;}
   .col-ms-offset-5 {margin-left:41.66666667%;}
   .col-ms-offset-6 {margin-left:50%;}
   .col-ms-offset-7 {margin-left:58.33333333%;}
   .col-ms-offset-8 {margin-left:66.66666667%;}
   .col-ms-offset-9 {margin-left:75%;}
   .col-ms-offset-10 {margin-left:83.33333333%;}
   .col-ms-offset-11 {margin-left:91.66666667%;}
   .col-ms-offset-12 {margin-left:100%;}
}

























/* Default Text CSS */

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

p {}


a {
/*  	color: #A9A9A9 !important ;*/
  	text-decoration: none;
  	-webkit-transition: 300ms;
  	-moz-transition: 300ms;
  	-o-transition: 300ms;
  	transition: 300ms;
  }


.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.shadow {
  text-shadow: 1px 1px 4px #000;
}

.white {
  color: #fff
}

.black {
  color: #000
}



/* BG-COLORS */

.bg-red {
  background-color: red;
}

.bg-purple {
  background-color: rgb(89, 50, 118);
}

.bg-pink {
  background-color: pink;
}

.bg-grey {
  background-color: grey;
}

.bg-darkgrey {
  background-color: #333;
}

.bg-black {
  background-color: #000;
}


/* MARGINS */
.no-margin{
  margin: 0;
}

.marg-top-10 {
  margin-top: 10px;
}

.marg-top-20 {
  margin-top: 20px;
}

.marg-top-30 {
  margin-top: 30px;
}

.marg-top-40 {
  margin-top: 40px;
}

.marg-top-50 {
  margin-top: 50px;
}

.marg-top-60 {
  margin-top: 60px;
}

.marg-top-70 {
  margin-top: 70px;
}

.marg-top-80 {
  margin-top: 80px;
}

.marg-top-90 {
  margin-top: 90px;
}

.marg-top-100 {
  margin-top: 100px;
}

.marg-bot-10 {
  margin-bottom: 10px;
}

.marg-bot-20 {
  margin-bottom: 20px;
}

.marg-bot-30 {
  margin-bottom: 30px;
}

.marg-bot-40 {
  margin-bottom: 40px;
}

.marg-bot-50 {
  margin-bottom: 50px;
}

.marg-bot-60 {
  margin-bottom: 60px;
}

.marg-bot-70 {
  margin-bottom: 70px;
}

.marg-bot-80 {
  margin-bottom: 80px;
}

.marg-bot-90 {
  margin-bottom: 90px;
}

.marg-bot-100 {
  margin-bottom: 100px;
}

.marg-left-10 {
  margin-left: 10px;
}

.marg-left-20 {
  margin-left: 20px;
}

.marg-left-30 {
  margin-left: 30px;
}

.marg-left-40 {
  margin-left: 40px;
}

.marg-left-50 {
  margin-left: 50px;
}

.marg-left-60 {
  margin-left: 60px;
}

.marg-left-70 {
  margin-left: 70px;
}

.marg-left-80 {
  margin-left: 80px;
}

.marg-left-90 {
  margin-left: 90px;
}

.marg-left-100 {
  margin-left: 100px;
}

.marg-right-10 {
  margin-right: 10px;
}

.marg-right-20 {
  margin-right: 20px;
}

.marg-right-30 {
  margin-right: 30px;
}

.marg-right-40 {
  margin-right: 40px;
}

.marg-right-50 {
  margin-right: 50px;
}

.marg-right-60 {
  margin-right: 60px;
}

.marg-right-70 {
  margin-right: 70px;
}

.marg-right-80 {
  margin-right: 80px;
}

.marg-right-90 {
  margin-right: 90px;
}

.marg-right-100 {
  margin-right: 100px;
}


/* PADDINGS */
.no-padding{
  padding: 0px;

}

.pad-right-10 {
  padding-right: 10px;
}

.pad-right-20 {
  padding-right: 20px;
}

.pad-right-30 {
  padding-right: 30px;
}

.pad-right-40 {
  padding-right: 40px;
}

.pad-right-50 {
  padding-right: 50px;
}

.pad-right-60 {
  padding-right: 60px;
}

.pad-right-70 {
  padding-right: 70px;
}

.pad-right-80 {
  padding-right: 80px;
}

.pad-right-90 {
  padding-right: 90px;
}

.pad-right-100 {
  padding-right: 100px;
}

.pad-left-10 {
  padding-left: 10px;
}

.pad-left-20 {
  padding-left: 20px;
}

.pad-left-30 {
  padding-left: 30px;
}

.pad-left-40 {
  padding-left: 40px;
}

.pad-left-50 {
  padding-left: 50px;
}

.pad-left-60 {
  padding-left: 60px;
}

.pad-left-70 {
  padding-left: 70px;
}

.pad-left-80 {
  padding-left: 80px;
}

.pad-left-90 {
  padding-left: 90px;
}

.pad-left-100 {
  padding-left: 100px;
}

.pad-top-10 {
  padding-top: 10px;
}

.pad-top-20 {
  padding-top: 20px;
}

.pad-top-30 {
  padding-top: 30px;
}

.pad-top-40 {
  padding-top: 40px;
}

.pad-top-50 {
  padding-top: 50px;
}

.pad-top-60 {
  padding-top: 60px;
}

.pad-top-70 {
  padding-top: 70px;
}

.pad-top-80 {
  padding-top: 80px;
}

.pad-top-90 {
  padding-top: 90px;
}

.pad-top-100 {
  padding-top: 100px;
}

.pad-bot-10 {
  padding-bottom: 10px;
}

.pad-bot-20 {
  padding-bottom: 20px;
}

.pad-bot-30 {
  padding-bottom: 30px;
}

.pad-bot-40 {
  padding-bottom: 40px;
}

.pad-bot-50 {
  padding-bottom: 50px;
}

.pad-bot-60 {
  padding-bottom: 60px;
}

.pad-bot-70 {
  padding-bottom: 70px;
}

.pad-bot-80 {
  padding-bottom: 80px;
}

.pad-bot-90 {
  padding-bottom: 90px;
}

.pad-bot-100 {
  padding-bottom: 100px;
}


 /* CORES */
 .white{
   color: white;
 }

/* ESTILOS */

.light{
  font-weight: 300;
}
.regular{
  font-weight: 400;
}
.semibold{
  font-weight: 500;
}
.bold{
  font-weight: 700;
}


/* ALIGN */

.center {
  text-align: center;
}

.left {
  text-align: left;
}
.txt-left {
  text-align: left;
}

.right {
  text-align: right;
}

.center-l {
  text-align-last: center;
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}


/* DISPLAY */

.hidden {
  display: none;
}

.inline {
  display: inline
}

.in-block {
  display: inline-block;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}


/* ---------------------------------------------------------- */


/* END OF MOST USED CLASSES */


/* ---------------------------------------------------------- */


/* ALIGN CHILD CONTENT TO CENTER OF PARENT */


/* HTML ->

<div class="parent">
<div class="child"></div>
</div>

*/


/* PARENT */

.parent {
  display: table;
}


/* CHILD */

.child {
  display: table-cell;
  vertical-align: middle;
}


/* ---------------------------------------------------------- */


/* END OF PARENT CHILD */


/* ---------------------------------------------------------- */








/* ---------------------------------------------------------- */



.bg-over-color {
  background-color: rgba(40, 40, 40, 0.7);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  height: 100vh;
  width: 100vw;
  display: table;
  z-index: 20;
}


/* ---------------------------------------------------------- */


/* END OF BG FULL IMAGE WITH OVER BG */


/* ---------------------------------------------------------- */


/* BUTTON ROUND SHAPE */

.round-white-btn {
  border-radius: 100px;
  border: solid 1px #fff;
  background-color: transparent;
}


/* HOVER */

.round-whitebg-btn {
  border-radius: 100px;
  border: solid 1px #fff;
  background-color: #fff;
}


/* HOVER */

.round-black-btn {
  border-radius: 100px;
  border: solid 1px #000;
  background-color: transparent;
}


/* HOVER */

.round-blackbg-btn {
  border-radius: 100px;
  border: solid 1px #000;
  background-color: #000;
}


/* HOVER */


/* BUTTON NORMAL SHAPE */

.white-btn {
  border: solid 1px #fff;
  background-color: transparent;
}


/* HOVER */

.whitebg-btn {
  border: solid 1px #fff;
  background-color: #fff;
}


/* HOVER */

.black-btn {
  border: solid 1px #000;
  background-color: transparent;
}


/* HOVER */

.blackbg-btn {
  border: solid 1px #000;
  background-color: #000;
}










/* SEcTION 1 ABOUT*/
.title-sec1{
    	color: #43484D;
      font-family: Roboto;
      font-size: 40px;
      font-weight: 300;
      letter-spacing: -1px;
      line-height: 53px;
      text-align: center;
}

.subtitle-sec1{

}
.text-sec1{
  	color: #5E6977;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: center;
}



/* Section 0 */

.ap-cartao {
  background: url('../../assets/img/cartao-pnid/img_back_desfoque.jpg') no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  height: 757px;
  width: 100vw;
  display: table;
}

.ap-cartao p{
  padding-left: 0px;
  padding-right: 0px;
}

.wrap-left {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}


.title-sec0{
  	color: #FFFFFF;
    font-family: Roboto;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 68px;
    margin-top: 70px;
}
.subtitle-sec0{
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 46px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 52px;
  margin-top: 70px;

}

.text-sec0{
  	opacity: 0.8;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 26px;
    font-weight: 300;
    line-height: 38px;
    padding-bottom: 30px;
}

.btn-sec0 {
  width: 200px;
  height: 50px;
  border: 0px;
  border-radius: 2px;
  background: #EC0928;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.5s;
  outline: 0;
}
.btn-sec0:hover {
  background-color: white;
  color: #EC0928;
}



.teaser-sec1 {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 300;
  line-height: 54px;
  color: #FFFFFF;
}


.btn-sec1 {
  background-color: #FFFFFF;
  border-radius: 2px;
  width: 200px;
  height: 50px;
  border: none;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #222222;
  text-transform: uppercase;
  transition: 0.9s;
  outline: 0;
}

.btn-sec1:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
}

.section-1 .fa {
  font-size: 50px;
  color: #fff;
}




/* Section 2*/

.video-sec{
  margin: 30px;
  background-image: url(../../assets/img/cartao-pnid/img_back_video.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.h1-sec2 {
  font-family: 'Roboto';
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  line-height: 43px;
  color: #FD474A;
}

.p-sec2 {
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 24px;
  color: #505050;
}

.hr-sec2 {
  width: 4px;
  height: 32px;
  background: linear-gradient(134.72deg, #FF0467 0%, #FC7437 100%);
  margin-right: -22px;
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0;
}

/*.ap-cartao-2 {
  width: 100vw;
  height: 580px;
  background: url('../img/ap-cartao-2.png') no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  display: table;
}*/

.banner-text {
  font-family: "Roboto";
  font-size: 28px;
  font-weight: 300;
  text-align: right;
  line-height: 38px;
  color: #FFFFFF;
}

.flex-align {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}


/* Section 4*/

.full-width-image {
  /*width: 50vw;
  position: absolute;
  left: 0px;
  left: 50%;
  margin-left: -50vw;*/
}


.full-width-image img{
  width: 100%;
}

.half-left  img,
.half-right img {
  height: auto;
  width: 100%;
}




@media (min-width: 481px) {
  .half-left,
  .half-right {
    overflow: hidden;
    padding: 0;
    position: responsive;
  }
  .half-left  > .container,
  .half-right > .container {
    position: absolute;
    top: 0;
  }
  .half-left  > .container { right: 0;}
  .half-right > .container { left: 0; }
}


.video-sec {}

.drop-shadow {
  box-shadow: 0 8px 42px 0 rgba(0, 0, 0, 0.10);
}

.icon-sec4{
  	/*background-color: #86939E;*/
    /*height: 50px;*/
    margin-bottom: 10px;
    /*width: 62px !important;*/
/*    margin-right: 2%;
    margin-left: 2%;*/
    margin-top: 30px;
}

.title-sec4 {
  font-family: 'Roboto';
  font-size: 31px;
  font-weight: 300;
  line-height: 40px;
  color: #43484D;
  letter-spacing: -1px;
}


.text-sec4 {
  color: #5E6977;
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.agreement-sec4 {
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 23px;
  color: #5D5858;
  font-style: italic;
}


/* section 5 */

.banner-1 {
  width: 100vw;
  height: 450px;
  background: url('../../assets/img/cartao-pnid/img_back_banner.jpg') no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  display: table;
}

.banner-1-over {
  /*background: linear-gradient(200.64deg, rgba(255,255,255,0.5) 0%, rgba(0,0,0,0.5) 100%);*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  width: 100vw;
  height: 450px;
  display: table;
  z-index: 20;
}

.title-sec5 {
  font-family: 'Roboto';
  font-size: 14px;
  font-weight: 300;
  line-height: 46px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.text-sec5 {
  font-family: 'Roboto';
  font-size: 32px;
  line-height: 38px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.info-sec5 {
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-sec5 {
  width: 200px;
  height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  background: transparent;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.9s;
  outline: 0;
}

.btn-sec5:hover {
  background-color: #fff;
  color: #333;
  transition: 0.3s;
}


/* section 6 —  O que inclui! */

.title-sec6 {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 500;
  line-height: 37px;
  color: #86939e;
  text-transform: uppercase;
}

.subtitle-sec6 {
  font-family: 'Roboto';
  font-size: 32px;
  font-weight: 500;
  line-height: 46px;
  color: #43484C;
}

.cta-sec6{
  font-family: 'Roboto';
  color: #FF0000;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 25px;
}
.cta-sec6 a{
  color: #FF0000 !important;
}

.thin-sec6 {
  font-family: 'Roboto';
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #5E6977;
}

.text1-sec6 {
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 28px;
  color: #5E6977;
}

.text2-sec6 {
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 28px;
  color: #5E6977;
}

.info-sec6 {
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 28px;
  color: #5E6977;
  /*font-style: italic;*/
}


.bk-cover{
  height: 550px;
  /*height: calc(100% / 0.2);*/
  background-size: cover;
  background-position: center center;
}


/* Section 7 */



.banner-2-over {
  background: linear-gradient(221.93deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  width: 100vw;
  height: 450px;
  display: table;
  z-index: 20;
}

.text-sec7 {
  font-family: 'Roboto';
  font-size: 28px;
  line-height: 33px;
  color: #FFFFFF;
}

.btn-sec7 {
  width: 200px;
  height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  background: transparent;
  margin-top: 50px;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.9s;
  outline: 0;
}

.btn-sec7:hover {
  background-color: #fff;
  color: #333;
  transition: 0.3s;
}

.subtext-sec7 {
  font-family: 'Roboto';
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
}


/* Section 8*/

.title-sec8 {
  font-family: 'Roboto';
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  color: #505050;
}

.tips-sec8 {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #5E6977;
}


.subtitle-sec8 {
  font-family: 'Roboto';
  font-size: 20px;
  line-height: 30px;
  color: #EB0928;
  text-transform: uppercase;
  padding: 0 15px 0 15px;
}


/* Section 9 */

.banner-3 {
  width: 100vw;
  height: 400px;
  background: url('../img/banner-3.jpg') no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  display: table;
}

.text-sec9 {
  font-family: 'Roboto';
  font-size: 28px;
  font-weight: 300;
  line-height: 33px;
  color: #FFFFFF;
}


/* Section 10 FORMULARIO */

.title-sec10 {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: bold;
  line-height: 37px;
  color: #505050;
  text-transform: uppercase;
}

.subtitle-sec10 {
  font-family: 'Roboto';
  font-size: 26px;
  font-weight: bold;
  line-height: 27px;
  color: #232323;
  text-transform: uppercase;
  margin-top: 30px;
}

.number-sec10 {
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #FF0000;
}

.address-sec10 {
  font-family: 'Lato';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
}

.divider-adress-sec10 {
  width: 100%;
  color: #fff;
  margin-bottom: 0px;
}

/* CONTROLA a altura e o tamanho do texto do botão para inscrição */
#conversion-modal-pnid-card-website-db984db31ad8300e0ea6 .modal-content section div.actions .call_button, #conversion-modal-pnid-card-website-db984db31ad8300e0ea6 .modal-content section div.actions a.call_button, #conversion-pnid-card-website-db984db31ad8300e0ea6 section div.actions .call_button, #conversion-pnid-card-website-db984db31ad8300e0ea6 section div.actions a.call_button {
  font-size: 18px !important;
  padding: 10px 20px 12px 20px!important;
}
#form-container-pnid-card-website-db984db31ad8300e0ea6 #conversion-pnid-card-website-db984db31ad8300e0ea6 #conversion-form-pnid-card-website-db984db31ad8300e0ea6 div.actions input.call_button {
  font-size: 18px !important;
  padding: 10px 20px 12px 20px!important;
}
#form-container-pnid-card-website-db984db31ad8300e0ea6 #conversion-pnid-card-website-db984db31ad8300e0ea6 section {
    padding: 10px!important;
}

#form-container-pnid-card-website-db984db31ad8300e0ea6 #conversion-pnid-card-website-db984db31ad8300e0ea6 {
  padding: 0px !important;
}


.field {
  font-family: 'Roboto' !important;
  font-size: 16px !important;
}

#cartao {
/*  margin-left: 30px;
  border-radius: 10px;*/
  -webkit-filter: drop-shadow(-5px 11px 23px rgba(0,0,0,0.5));
  filter: drop-shadow(-5px 11px 23px rgba(0,0,0,0.5));
  transition: 0.3s;
}


#cartao:hover{
  transform: translateY(-3px);
  -webkit-filter: drop-shadow(-3px 9px 20px rgba(0,0,0,0.5));
  filter: drop-shadow(-3px 9px 20px rgba(0,0,0,0.5));
}






/* Mão */

.fixed a {
   text-decoration:none ;
}

.fixed {
  position:fixed;
  right: 0px;
  top: 40vh;
  z-index: 9999;
}

.text-later {
  color: red;
  font-size: 25px;
  margin-left:37px;
  margin-bottom: 1vh;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  transition-delay: 0.1s;
  transition: 0.4s;


  color: #DB0000;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.img-hovered{
  transition: 0.4s;
  -webkit-filter: drop-shadow(-12px 14px 12px rgba(0,0,0,0.2));
  filter: drop-shadow(-12px 14px 12px rgba(0,0,0,0.2));
		-webkit-backface-visibility: hidden;
		position: relative;

}

.no-flick{
	-webkit-transform:translate3d(0,0,0);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
}

.fixed:hover .text-later {
  opacity:1;
  transition: 0.6s;
  transform: scale(1.2);
  margin-left:42px;
		-webkit-backface-visibility: hidden;
}

.fixed:hover .img-hovered {
	-webkit-backface-visibility: hidden;
  transform: scale(1.2);
	-webkit-transform:scale(1.2);
  margin-right: 15px;margin-top:20px;
  -webkit-filter: drop-shadow(-19px 21px 19px rgba(0,0,0,0.2));
  filter: drop-shadow(-19px 21px 19px rgba(0,0,0,0.2));
  transition: 0.6s;

	image-rendering: optimizeSpeed;             /*                     */
	image-rendering: -moz-crisp-edges;          /* Firefox             */
	image-rendering: -o-crisp-edges;            /* Opera               */
	image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */
	image-rendering: optimize-contrast;         /* CSS3 Proposed       */
	-ms-interpolation-mode: nearest-neighbor;   /* IE8+                */



	/*-webkit-transform: translateZ(0) scale(1.0, 1.0);*/
}






/* MEDIA QUERY */

@media (min-width: 320px) {

  .sdsrow {
    padding: 0px;
  }

  .rightSide {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .right {
    text-align: left;
  }

  .bk-cover{
    height: 400px;
    /*height: calc(100% / 0.2);*/
    background-size: cover;
    background-position: center center;
  }


  .pad-right-5 {
    padding-right:5px;
  }

  #navigation .navbar-right {
     margin-top: 0px;
}

  .logotipo {
    width: 230px;
  }

  .top-bar {display:none;}

  #navigation .navbar-right li a {
  	color:#000;
  	font-size:14px;
  	height: 100%;
  	text-transform:uppercase;
  	padding: 10px 18px;
  }

.nav>.separator {
  padding:0px;
  color: #9B9B9B;
  display:none;
  padding-top:10px;
}

.navbar-toggle {
    padding: 15px 5px 5px 5px;
}

  .navbar-brand {
    float: left;
    height: auto;
    padding: 15px 15px 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

  .navbar {
    /*position: relative;*/
    min-height: 50px;
    margin-bottom: 0px;
    border: 1px solid transparent;
    }

	.ap-cartao{
		background-position: right center;
	}

  .hide-me {
    display: none !important
  }
  .link-btn {
    margin-left: 10px;
    padding-bottom: 3px;
  }
  .subtitle-sec4 {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: bold;
    line-height: 37px;
    color: #505050;
    text-transform: uppercase;
    text-align: left;
  }
  .subtitle-video {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: bold;
    line-height: 37px;
    color: #FFF;
    text-transform: uppercase;
    text-align: left;
  }
  .mobi-plat {
    display: inline;
    background: #00324f;
    text-align: center;
  }
  .top-btn-sec3 {
    margin-top: 1px;
    display: inline;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: none;
    padding: 10px 15px;
    z-index: 999999;
    outline: 0;
    transition: 0.3s;
  }
  .top-btn-sec3:hover {
    outline: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  .top-btn-sec1-desktop {
    display: none;
  }
  .top-btn-sec1 {
    display: none;
  }

  .arrow-wrapper-sec1 {
    display: none;
  }
  .marg-top-80 {
    margin-top: 60px;
  }
  .marg-top-later-70 {
    margin-top: 0px;
  }
  .marg-bot-later-70 {
    margin-bottom: 20px;
  }
  .hide-from992 {
    display: none;
  }
  .subtitle-sec8 {
    margin-top: 50px;
  }
  .h1-sec1 {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: bold;
    line-height: 44px;
    color: #fff;
    margin-bottom: 30px;
  }
  .text-sec5 {
    font-family: 'Roboto';
    font-size: 26px;
    line-height: 33px;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .text-sec9 {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: 300;
    line-height: 33px;
    color: #FFFFFF;
  }
  .text-sec7 {
    font-family: 'Roboto';
    font-size: 26px;
    line-height: 33px;
    color: #FFFFFF;
  }
  .ap-cartao-2 {
    width: 100vw;
    height: 580px;
    background: url('../img/ap-cartao-2-mobile.png') no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
  }
  .teaser-sec1 {
    display: none;
  }
  .row .mobile-pad {
    padding-left: 0px;
    padding-right: 0px;
  }
  .center-till767 {
    text-align: center;
  }

  .hr-sec2 {
    margin-right: -14px;
  }
  .number-sec10 {
    font-size: 16px;
  }

}

@media (min-width: 480px) {

  .number-sec10 {
    font-size: 18px;
  }
  .center-till767 {
    text-align: left;
  }
  .logotipo {
    width: 250px;
  }
}

@media (min-width: 768px) {
    /* ALIGN CENTER IF DESKTOP */
    .desk-center {
      text-align:center;
    }

  .right {
    text-align: right;
  }

  .bk-cover{
    height: 400px;
    /*height: calc(100% / 0.2);*/
    background-size: cover;
    background-position: center center;
  }


  .navbar-toggle {
    padding: 25px 5px 5px 5px;
}

  .logotipo {
    width: 350px;
  }

  .marg-l-r {
    margin-left: 15px;
    margin-right: 15px;
  }
  .subtitle-video {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: bold;
    line-height: 37px;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
  }
  .subtitle-sec4 {
    font-family: 'Roboto';
    font-size: 26px;
    font-weight: bold;
    line-height: 37px;
    color: #505050;
    text-transform: uppercase;
  }
  .address-flex {
    display: flex;
  }
  .aligner-bottom {
    align-self: flex-end;
  }
  .wrap-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .aligner-item {
    max-width: 50%;
  }
/*  .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
    margin-left: -5px;
  }*/
  .marg-top-80 {
    margin-top: 80px;
  }
  .marg-top-later-70 {
    margin-top: 70px;
  }
  .marg-bot-later-70 {
    margin-bottom: 70px;
  }
  .arrow-wrapper-sec1 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 12%;
    display: block;
  }
  .center-from767 {
    text-align: center;
  }
  .h1-sec1 {
    font-family: 'Roboto';
    font-size: 36px;
    font-weight: bold;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 30px;
  }
  .text-sec5 {
    font-family: 'Roboto';
    font-size: 28px;
    line-height: 33px;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .text-sec7 {
    font-family: 'Roboto';
    font-size: 28px;
    line-height: 33px;
    color: #FFFFFF;
  }
  .text-sec9 {
    font-family: 'Roboto';
    font-size: 38px;
    font-weight: 300;
    line-height: 51px;
    color: #FFFFFF;
  }
  .teaser-sec1 {
    display: inline;
  }
  .hr-sec2 {
    margin-right: -22px;
  }
}

@media (min-width: 992px) {

  .logotipo{
  width: 285px;
}

  #navigation .navbar-right li a {
  	color:#000;
  	font-size:14px;
  	height: 100%;
  	text-transform:uppercase;
  	/*font-family: 'allerregular';*/
  	padding: 10px 9px;
  }

  #navigation .navbar-right {
     margin-top: 40px;
     margin-right: 0px;
}

.nav> .separator{
    padding:0px;
    color: #9B9B9B;
    display: block;
    padding-top:10px;
  }

  .top-bar {display:block;}

  .ap-cartao{
	background-position: center center;
  }
  .marg-l-r {
    margin: 0px;
  }
  .disp-inline {
    display: inline;
  }
  .mobi-plat {
    display: none !important;
  }

  .top-btn-sec1-desktop {
    display: block;
  }
  .top-btn-sec1 {
    display: inline;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    padding: 5px 10px;
    z-index: 999999;
    outline: 0;
    transition: 0.3s;
  }
  .top-btn-sec1:hover {
    outline: 0;
    background: rgba(255, 255, 255, 0.5);
  }
  .right-here {
    margin-right: 15px;
  }
  .hide-from992 {
    display: block;
  }
  .ap-cartao-2 {
    width: 100vw;
    height: 580px;
    background: url('../img/ap-cartao-2.png') no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: table;
  }
  .subtitle-sec8 {
    margin-top: 0px;
  }
}

@media (min-width: 1200px) {

  .bk-cover{
    height: 550px;
    /*height: calc(100% / 0.2);*/
    background-size: cover;
    background-position: center center;
  }

  .rightSide {
    margin-top: 150px;
    padding-left: 25px;
  }

  .logotipo{
  width: 340px;
  margin-top: 0px;
}

  .right-here {
    display: none;
  }
  .top-btn-sec1-desktop {
    position: absolute;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    right: 15px;
    top: 0px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    padding: 5px 10px;
    z-index: 999999;
    outline: 0;
    transition: 0.3s;
  }
  .top-btn-sec1-desktop:hover {
    outline: 0;
    background: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (max-width: 992px) {


}



@media (min-width: 480px) and (max-width: 767px) {

}




@media (min-width: 767px) and (max-width: 992px) {

  #navigation .navbar-right li a {
      color: #000;
      font-size: 14px;
      height: 100%;
      text-transform: uppercase;
      /* font-family: 'allerregular'; */
      padding: 10px 0px;
  }

  #navigation .navbar-right {
    margin-top: 0px;
    margin-right: 0px;
    padding-left:0px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {

  .fixed {
    display:none;
  }
  .fixed-index {
    display:none;
  }

  /* ALIGN LEFT ONLY IF DESKTOP */
  .mob-left {
      text-align:left;
   }
}





@media (min-width:992px) {

}

@media (min-width:1200px) {

}

@media (min-width:1440px) {

}

.call-to-action a {
  	color: #FF0000;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
}

.text-cdp {
  	color: #5E6977;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}

.title-cdp {
  	color: #43484D;
    font-family: 'Roboto';
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 58px;
}
