@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff');
    font-weight: 300;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff');
    font-weight: 600;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff');
    font-weight: 700;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Light.woff');
    font-weight: 300;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Bold.woff');
    font-weight: bold;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: #333;
    background: #ddd;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Bebas Neue', 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: normal;
    letter-spacing: 2px;
}

a, a:hover {
    text-decoration: none;
    color: #dfa43d;
}

a:focus, button:focus {
    outline: none;
}

img {
    max-width: 100%;
}




/* General */
.font-1 {
    font-size: 1rem !important;
}
section {
    padding: 40px 0;
}
.section-heading {
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #dfa43d;
    font-size: 3rem;
}
@media (min-width: 768px) {
    .section-heading {
        margin-bottom: 40px;
    }
}
.button {
    background: #dfa43d;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    border: none;
    font-weight: bold;
    font-size: .8rem;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    border-radius: 30px;
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.button i {
    font-size: 1.1rem;
}
.button:hover { 
    color: #444;
}
.subtitle {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}
.blue {
    color: #30b1fc;
}
.red {
    color: #ff6363 !important;
}
.green {
    color: #93cc8c !important;
}
.yellow {
    color: #dfa43d !important;
}
.section-heading.less-margin {
    margin-bottom: 30px;
}
section {
    position: relative;
}
section.dark {
    background: #3d464b;
    color: #ccc;
}
section.dark .section-heading {
    color: white;
}
section.more-padding {
    padding: 60px 0;
}
@media (min-width: 768px) {
    section.more-padding {
        padding: 60px 0;
    }
}
.lighter {
    font-size: 1.3rem;
    font-weight: 300;
}
@media (min-width: 768px) {
    .lighter {
        font-size: 1.5rem;
    }
}
.lighter b, .lighter-small b {
    font-weight: 600;
}
.lighter-small, .lighter-small .featured-list li {
    font-weight: 300;
    font-size: 1.3rem;
}
.featured-list.smaller li {
    font-weight: normal;
    font-size: 1rem;
}
.bg-png {
    position: absolute;
    z-index: -1;
    right: 100px;
    bottom: 0;
    max-height: 500px;
}
.bg-png.smaller {
    max-height: 400px;
    right: 0px;
}
@media (min-width: 1200px) {
    .bg-png.smaller {
        right: 50px;
    }
}
@media (min-width: 1600px) {
    .bg-png.smaller {
        right: 200px;
    }
}
.bg-png.big {
    max-height: 600px;
}
.bold {
    font-weight: bold;
}
.uppercase {
    text-transform: uppercase;
}
.drop {
    position: relative;
    cursor: pointer;
    z-index: 99;
}
.drop-data {
    position: absolute;
    top: 50px;
    background: #eee;
    padding: 20px;
    border-radius: 5px;
    min-width: 250px;
    right: 0;
    display: none;
}
.drop-data::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 13px 10px 13px;
    border-color: transparent transparent #eee transparent;
}
@media (min-width: 768px) {
    .f2-5r {
        font-size: 2.5rem !important;
    }
    .f3r {
        font-size: 3rem !important;
    }
    .f3-1r {
        font-size: 3.1rem !important;
    }
    .f3-4r {
        font-size: 3.4rem !important;
    }
    .f4r {
        font-size: 4rem !important;
    }
}
/* General */




/* Top */
.top-bars {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    max-width: 1400px;
}
.top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 40px;
    background: white;
    font-size: .9rem;
}
.logo {
    display: block;
}
@media (min-width: 768px) {
    .logo img {
        max-width: 160px;
    }
}
@media (min-width: 992px) {
    .logo img {
        max-width: 100%;
    }
}
.top .drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.top .drop {
    padding-left: 30px;
}
.top .drop i {
    padding-right: 10px;
    display: inline-block;
    font-size: 1.3rem;
}
.top .drop {
    display: none;
}
@media (min-width: 768px) {
    .top {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .top .drop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: white;
}
main, header {
    background: white;
}
.just {
    text-align: justify;
}
.upper {
    text-transform: uppercase !important;
}
.dark-text {
    color: #3d464b;
}
.section-heading span {
    font-family: inherit;
}
.token {
    font-weight: 600 !important;
}
/* Top */



/* Nav */
.site-nav {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 16px 30px rgba(0,0,0,0.2);
            box-shadow: 0 16px 30px rgba(0,0,0,0.2);
    -webkit-transition: .3s;
    transition: .3s;
    font-size: .9rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.site-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    background: white;
    
}
.site-nav > ul {
    max-height: 80vh;
    overflow-y: scroll;
}
@media (min-width: 1200px) {
    .site-nav > ul {
        max-height: unset;
        overflow: visible;
    }
}
.site-nav ul a {
    display: inline-block;
    color: #444;
    text-transform: uppercase;
    padding: 25px 20px;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    width: 100%;
}
.site-nav ul li a.active {
    font-weight: bold;
    color: #dfa43d;
}
.site-nav ul li:hover, .site-nav.scroll ul li:hover {
    background: rgba(252, 186, 48, .5);
}
.site-nav .button {
    padding: 12px 20px;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 8px 16px;
}
.site-nav.scroll, .site-nav.white {
    background: white;
}
.site-nav.white {
    background: #3d464b;
}
.site-nav.scroll ul a, .site-nav.white ul a {
    color: #333;
}
.site-nav.white ul a {
    color: #444;
}
.scroll .mobile-toggle {
    color: #444;
}
.scroll.white .mobile-toggle {
    color: white;
}
@media (min-width: 1200px) {
    .site-nav.white ul a {
        color: white;
    }
}
.likes {
    background: white;
    padding: 8px 16px;
    border-radius: 3px;
    border: 1px solid white;
    -webkit-transition: .3s;
    transition: .3s;
    display: none;
    margin: 10px 20px;
}
@media (min-width: 568px) {
    .likes {
        display: block;
    }
}
.like {
    padding: 0 10px;
    padding-right: 20px;
    position: relative;
    margin-right: 10px;
    font-weight: bold;
}
.like::after {
    content: '';
    position: absolute;
    background: #dfa43d;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    right: 0;
}
.login {
    margin: 0 20px;
}
.mobile-toggle {
    display: block;
    font-size: 2rem;
    color: white;
    margin: 0 20px;
}
.navigation {
    display: none;
}
@media (min-width: 1200px) {
    .site-nav {
        padding: 0 40px;
    }
    .site-nav ul {
        -webkit-box-ordinal-group: unset;
            -ms-flex-order: unset;
                order: unset;
        width: auto;
    }
    .site-nav ul {
        background: transparent;
    }
    .site-nav ul a {
        color: white;
    }
    .likes {
        margin: 0;
    }
    .login {
        margin: 0;
    }
    .mobile-toggle {
        display: none;
        margin: 0;
    }
    .navigation {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
.navigation li.nested {
    position: relative;
}
.navigation li.nested > a {
    width: auto;
}
.navigation li.nested::after {
    content: url(../img/caret-down-black.svg);
    position: absolute;
    right: 20px;
    top: 24px;
    height: 8px;
    width: 8px;
    padding-bottom: 20px;
}
.site-nav.scroll .navigation li.nested::after, .site-nav.white .navigation li.nested::after {
    content: url(../img/caret-down-black.svg);
}
.site-nav.white .navigation li.nested::after {
    content: url(../img/caret-down-black.svg);
}
.navigation li.nested ul {
    display: none;
    background: white;
    list-style-type: none;
    min-width: 300px;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    color: #333;
    padding: 15px 0;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
@media (min-width: 1200px) {
    .navigation li.nested::after {
        content: url(../img/caret-down-white.svg);
    }
    .site-nav.white .navigation li.nested::after {
        content: url(../img/caret-down-white.svg);
    }
    .navigation li.nested ul {
        padding-left: 0;
        position: absolute;
        -webkit-box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
                box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
    }
}
.site-nav li.nested > a {
    padding-right: 40px;
}
.site-nav li.nested ul a {
    color: #333;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
    padding: 15px 26px;
}
/* Nav */



/* Header */
#header-slider .slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    margin-top: 100px;
}
#header-slider .slide .content {
    width: 100%;
    max-width: 600px;
    text-align: left;
    padding: 20px 20px 40px;
    padding-top: 60px;
    margin: 0 auto;
    text-align: center;
}
.slide .title {
    font-size: 2rem;
}
.slide .title span, header.aliados .title span {
    font-family: inherit;
}
.sello {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: none;
    max-width: 130px;
}
.seals img {
    max-width: 150px;
}
@media (min-width: 768px) {
    .sello {
        display: block;
    }
}
@media (min-width: 992px) {
    #header-slider .slide {
        min-height: 600px;
    }
    #header-slider .slide .content {
        padding: 0;
        padding-left: 150px;
        padding-top: 30px;
        max-width: 700px;
        margin: 0;
        text-align: left;
    }
    .slide .title span, header.aliados .title span {
        font-size: 4rem;
        display: block;
    }
    .slide .title {
        font-size: 2.7rem;
    }
}
.slide a.button, header.aliados a.button, .join a.button {
    display: inline-block;
    background: #dfa43d;
    font-size: 1rem;
    padding: 12px 22px 12px 25px;
}
.slide a.button i, header.aliados a.button i {
    padding-left: 10px;
}
.slide a.button:hover, header.aliados a.button:hover, .join a.button:hover {
    color: #333;
}
.slide .subtitle {
    margin-bottom: 40px;
    letter-spacing: 0;
    color: white;
    font-weight: lighter;
    font-size: 1.4rem;
}
@media (min-width: 768px) {
    .slide .subtitle {
        font-size: 1.6rem;
    }
}
header.aliados .subtitle b {
    font-weight: bold;
    color: #dfa43d;
}
/* Header */




/* Tipos de certificado */
.certificado {
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.certificado img {
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
            box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
}
.certificado img.contain {
    -o-object-fit: contain;
       object-fit: contain;
}
.certificado .title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-top: 30px;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-align: center;
}
.certificado > i {
    font-size: 3rem;
    color: #666;
}
.certificado a {
    display: inline-block;
    padding: 0;
    padding: 7px 18px;
}
.certificado a i {
    padding-left: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}
.certificado a:hover i {
    padding-left: 20px;
}
.certificado a.button:hover {
    color: white;
}
/* Tipos de certificado */




/* CTAs */
.CTAs {
    padding: 0;
}
.featured-cta {
    padding: 40px;
    color: white;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.CTAs .content {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 700px;
}
.featured-cta h4 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.featured-cta h4 span {
    color: #dfa43d;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
    .featured-cta h4 {
        font-size: 4rem;
    }
}
.featured-cta .button {
    background: transparent;
    font-size: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: .3s;
    transition: .3s;
    border: 2px solid #dfa43d;
}
.featured-cta .button:hover {
    background: #dfa43d;
    color: white;
}
.featured-cta .button i {
    padding-left: 15px;
    font-size: 1rem;
}
.bar {
    padding: 20px 0;
    background: #fdc530;
    background: -webkit-gradient(linear,  left top, right top,  from(#fdc530),to(#f37634));
    background: linear-gradient(to right,  #fdc530 0%,#f37634 100%);
}
.bar > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
}
.bar h4 {
    letter-spacing: 0;
    padding-right: 20px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
    font-weight: bold;
    color: white;
}
.bar .highlight {
    color: #3d464b;
    text-transform: capitalize;
    font-weight: bold;
}
@media (min-width: 768px) {
    .bar h4 {
        font-size: 2.3rem;
    }
}
.aliados-bar h4 {
    font-weight: bold;
    text-transform: uppercase;
}
.bar .button {
    background: #3d464b;
    border: none;
    font-size: 1rem;
    color: white;
    margin: 0 auto;
    margin-top: 20px;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .bar > div {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
    .bar .button {
        margin: 0;
    }
}
.bar .button:hover {
    color: #fcba30;
}
.bar.b-top {
    border-bottom: none;
    border-top: 1px solid #ccc;
}
@media (max-width: 991px) {
    #parallax.featured-cta.parallaxie,
    #parallax.join.parallaxie {
        background-size: cover !important;
        background-position: center !important;
        background-attachment: inherit !important;
    }
}
/* CTAs */




/* Clientes */
.cliente {
    padding: 10px;
    border-radius: 4px;
}
/* Clientes */




/* Nums */
.nums {
    background: #3d464b;
    text-align: center;
}
.num .title, .num .title .numscroller {
    font-size: 3rem;
    display: block;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    color: #dfa43d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.num i {
    color: #eee;
    font-size: 2.5rem;
    padding-right: 10px;
    display: block;
    margin-bottom: 5px;
}
.num .desc {
    color: white;
}
.nums.light {
    background: white;
}
.nums.light .num .title {
    color: #dfa43d;
}
.nums.light .num .desc {
    color: #333;
}
.nums.light .num i {
    color: #666;
}
.nums.light .num .title.dark {
    color: #333;
}
.num .title.open {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.8rem;
}
/* Nums */




/* Form */
/* .formulario {
    background: #fdc530;
    background: -webkit-gradient(linear,  left top, right top,  from(#fdc530),to(#f37634));
    background: linear-gradient(to right,  #fdc530 0%,#f37634 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdc530', endColorstr='#f37634',GradientType=1 );
} */
/* .formulario .section-heading {
    color: white;
} */
.form-head {
    font-size: 2.3rem;
}
.header-certificados .form-head {
    color: white;
}
.formulario .subtitle {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}
.solicitar {
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}
.requisitos .solicitar {
    max-width: unset;
    padding-bottom: 0;
}
.formulario .solicitar {
    max-width: unset;
    padding-bottom: 0;
}
@media (min-width: 768px) {
    .solicitar {
        margin: unset;
        margin-right: auto;
    }
}
.side-img {
    max-height: 600px;
}
form input:not(.dropzone-input), 
form select, 
form textarea {
    padding: 12px 20px;
    width: 100%;
    border-radius: 3px;
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
}
form input:not(.dropzone-input):focus, 
form select:focus, 
form textarea:focus {
    outline: none;
    border-color: #dfa43d;
}
/* .formulario form input,
.formulario form select,
.formulario form textarea {
    border: none;
} */
.double-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.double-row > div {
    width: 50%;
}
.double-row > div:not(:last-of-type) {
    padding-right: 20px;
}
.input-container {
    margin-bottom: 10px;
    position: relative;
}
.input-container > i + input,
.input-container > i + select,
.input-container > i + textarea {
    padding-left: 45px;
}
.input-container.icon-top i {
    -webkit-transform: none;
            transform: none;
    top: 16px;
}
.input-container i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 20px;
    font-size: .9rem;
    color: #999;
}
#submit, #ayuda {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    background: #3d464b;
}
#submit i, #ayuda i {
    padding-left: 10px;
}
#submit:hover, #ayuda:hover {
    color: #fcba30;
}
form input[type="checkbox"] {
    display: inline-block;
    width: auto;
}
.formulario label {
    color: white;
}
form .checkbox input {
    display: none;
}
.checkbox span {
    height: 16px;
    width: 16px;
    background: white;
    display: inline-block;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
}
.checkbox input[type=checkbox]:checked + span::after {
    content: '';
    background-image: url('../img/yellow-check.svg');
    height: 12px;
    width: 12px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    position: absolute;
    background-size: cover;
}
.direccion {
    background: #3d464b;
    color: white;
    border-radius: 20px;
    padding: 40px;
}
.direccion .title {
    font-weight: 600;
    margin-bottom: 20px;
}
/* Form */




/* Footer */
.site-footer {
    background: #222;
    padding: 60px 0 0;
    padding-bottom: 0;
    font-size: .9rem;
    color: #777;
    margin-top: auto;
}
.bottom {
    display: block;
    margin-top: 40px;
    padding: 10px;
    background: #1e1e1e;
}
.site-footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.site-footer .indigital {
    max-width: 180px;
    display: block;
    opacity: .6;
}
.disclaimer span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: .7rem;
}
.site-footer a {
    color: #999;
}
.site-footer h6 {
    color: #bbb;
    font-size: 1.2rem;
    letter-spacing: 1;
}
/* Footer */




/* Aliados */
header.header-certificados.aliados {
    background-image: url('../img/aliado.jpg');
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
/* header.aliados .content {
    width: 100%;
    max-width: 700px;
    color: white;
    padding: 200px 20px 80px;
    margin: 0 auto;
    text-align: center;
} */
/* @media (min-width: 992px) {
    header.aliados {
        min-height: 800px;
    }
    header.aliados .content {
        padding: 0;
        padding-left: 200px;
        padding-top: 100px;
        text-align: left;
        margin: 0;
    }
} */
@media (min-width: 768px) {
    header.header-certificados.aliados .title span {
        font-size: 10rem;
        line-height: 10rem;
    }
}
header.aliados .subtitle {
    margin-bottom: 40px;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 1.3rem;
}
ul.featured-list {
    list-style-image: url('../img/yellow-check.svg');
    padding-left: 10px;
}
.featured-list li {
    margin-bottom: 10px;
    margin-left: 20px;
    padding-left: 10px;
    font-size: 1.3rem;
    font-weight: 300;
}
@media (min-width: 768px) {
    .featured-list li {
        font-size: 1.5rem;
    }
}
.quienes .content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 30px;
}
section.join {
    /* height: 1px;
    min-height: 500px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: white;
}
.join .content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}
.join .title {
    font-size: 6rem;
    line-height: 6rem;
}
@media (min-width:768px) {
    .join .title {
        font-size: 12rem;
        line-height: 10rem;
    }
}
.join .subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}
.join .button {
    display: inline-block;
    margin-top: 40px;
}
.join .button i {
    padding-left: 15px;
}
/* Aliados */




/* Precios */
.precios-header {
    text-align: center;
    padding: 180px 0 80px;
}
.precios-header hr {
    border-top: 1px solid #ddd;
    margin-bottom: 40px;
}
.precios-header .title {
    font-size: 3rem;
    margin-bottom: 20px;
}
.precios-header .subtitle.lighter {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    margin-bottom: 40px;
    font-size: 1.3rem;
}
@media (min-width: 992px) {
    .precios-header .title {
        font-size: 4rem;
    }
    .precios-header .subtitle.lighter {
        font-size: 1.5rem;
    }
}
.prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.prices-cont {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.price-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    background: white;
    -webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 20px;
    border-radius: 6px;
    background-color: white;
}
.price-card:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
}
.price-card.featured {
    z-index: 2;
    -ms-flex-item-align: center;
        align-self: center;
}
@media (min-width: 768px) {
    .price-card.featured {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        margin-bottom: 60px;
    }
}
@media (min-width: 992px) {
    .prices {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .price-card {
        margin-bottom: 0;
        max-width: 350px;
    }
    .price-card:not(:last-of-type) {
        margin-right: 20px;
    }
    .price-card.featured {
        margin-right: 50px;
        margin-bottom: 0;
    }
}
.price-card .header {
    margin-bottom: 30px;
    padding: 50px 30px;
    background: #3d464b;
    color: white;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.price-card .header .notice {
    color: #fcba30;
    font-size: .9rem;
    text-align: center;
    display: inline-block;
}
.price-card .title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
}
.price-card .badge {
    position: absolute;
    left: 50%;
    top: -50px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fcba30;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    text-transform: uppercase;
    font-size: .75rem;
    -webkit-box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
            box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    color: #3d464b;
}
.price-card .badge i {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #a2771e;
}
.price-card .badge span {
    margin-bottom: 10px;
}
.price-card .content {
    padding: 0 30px;
}
.price-card .content > div {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: .95rem;
    letter-spacing: 1px;
}
.price-card .content > div:last-of-type {
    border-bottom: none;
}
.price-card .price {
    font-weight: bold;
}
.price-card .price .old {
    font-weight: normal;
    color: #999;
    margin-right: 10px;
    position: relative;
}
.price-card .price .old::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ff6363;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(10deg) translateY(-50%);
            transform: rotate(10deg) translateY(-50%);
}
.price-card .footer {
    margin-top: 30px;
    text-align: center;
    padding: 0 40px 40px;
}
div.notice {
    font-size: .8rem;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}
.requisitos .featured-list {
    margin-bottom: 40px;
    list-style-image: url('../img/yellow-check.svg');
}
.requisitos .bg-png {
    bottom: -23px;
    z-index: 0;
}
section.requisitos .section-heading {
    color: white;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 2.2rem;
}
.facturacion-requisitos .section-heading,
.facturacion-tiempo .section-heading,
.caracteristicas .section-heading {
    position: relative;
    padding-bottom: 20px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    color: #444;
    font-size: 2.2rem;
}
.requisitos .section-heading::after, 
.facturacion-requisitos .section-heading::after,
.facturacion-tiempo .section-heading::after,
.caracteristicas .section-heading::after {
    content: '';
    height: 6px;
    width: 80px;
    background: #dfa43d;
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner {
    height: 1px;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url('../img/aliado.jpg');
}
.precios-banner {
    background-image: url('../img/precios2.jpg');
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 80px 20px;
}
.precios-banner .title {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 2px #333;
}
@media (min-width: 768px) {
    .precios-banner .title {
        font-size: 4rem;
    }
}
.requisitos .form-container.precios {
    max-width: unset;
}
/* Precios */



/* Soporte */
.header-soporte {
    height: 1px;
    min-height: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url('../img/soporte.jpg');
    background-position: bottom right;
}
.header-soporte .content {
    padding: 20px;
    padding-top: 120px;
    color: white;
}
.header-soporte .title {
    font-size: 1.8rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: white;
    text-shadow: none;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.header-soporte .subtitle {
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-size: 3rem;
}
@media (min-width: 768px) {
    .header-soporte {
        min-height: 420px;
    }
    .header-soporte .content {
        padding: 0;
        padding-top: 150px;
        padding-left: 200px;
    }
    .header-soporte .subtitle {
        font-size: 4rem;
    }
}
.support-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.support-img img {
    width: 100%;
}
.support-img .text {
    display: block;
    position: absolute;
    top: 0;
    padding: 20px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: white;
}
.support-img .text h4 {
    font-size: 2rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
}
.chatbot {
    position: absolute;
    bottom: 0;
    color: white;
    background: #dfa43d;
    padding: 15px;
    right: 40px;
    min-width: 230px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .chatbot {
        right: 100px;
        min-width: 300px;
    }
}
.chatbot .title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 1.3rem;
}
.chatbot span {
    position: absolute;
    background: white;
    border: 2px solid #dfa43d;
    display: block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    right: -20px;
    top: -30px;
}
/* Soporte */




/* FAQ */
.header-faq {
    height: 1px;
    min-height: 180px;
}
@media (min-width: 992px) {
    .header-faq {
        min-height: 200px;
    }
}
.faq .title, .manuales .title, .herramientas .title, .videos .title {
    font-size: 4rem;
    color: #dfa43d;
    margin-bottom: 20px;
    text-align: center;
}
.videos .title {
    margin-bottom: 60px;
}
/* Acordeon */
.accordeon a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 300px;
    background: #dfa43d;
}
.accordeon a:hover {
    color: white;
}
.accordeon .item {
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 10px;
}
.item .item-title {
    border-bottom: 1px solid gainsboro;
}
.accordeon .item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .3s;
    transition: .3s;
}
.rotated + h5 {
    font-weight: bold;
}
.accordeon .item-title i {
    -webkit-transition: .3s;
    transition: .3s;
    margin-right: 20px;
}
.accordeon .item-title:hover {
    cursor: pointer;
}
.accordeon .item-title h5 {
    margin: 0;
    margin-right: 10px;
    letter-spacing: 0;
    font-family: 'Open Sans';
    font-size: 1rem;
}
.accordeon .item-info {
    display: none;
    padding: 15px 20px;
    margin-bottom: 40px;
}
.accordeon p {
    margin-top: 0;
}
.accordeon .item-info .item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.accordeon .item-info .item-link i {
    padding-left: 10px;
}
.accordeon .rotated {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.video {
    margin-bottom: 40px;
}
.video iframe {
    width: 100%;
    height: 350px;
}
.centro {
    background-image: url('../img/centro-de-ayuda.jpg');
    background-size: cover;
    background-position: top left;
}
.centro .full-flex {
    min-height: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    padding-top: 80px;
    margin: 0 auto;
    text-align: center;
}
.centro .title {
    font-size: 3.7rem;
    color: white;
}
.form-container .title {
    font-size: 2.5rem;
    color: white;
}
.centro .form-container .notice {
    display: block;
    margin-bottom: 30px;
    color: white;
}
.centro .form-container .notice b {
    color: #da3535;
}
.centro .form-head {
    color: white;
    text-align: center;
}
.centro .subtitle {
    font-size: 1.5rem;
    margin-bottom: 0px;
    color: white;
    font-weight: 300;
    text-align: center;
}
.centro .form-container {
    padding: 16px;
    margin: 30px auto 0;
    text-align: center;
    border-radius: 20px;
    background: rgb(231,185,63);
    background: -webkit-gradient(linear, left top, right top, from(rgba(231,185,63,1)), to(rgba(209,128,63,1)));
    background: linear-gradient(90deg, rgba(231,185,63,1) 0%, rgba(209,128,63,1) 100%);
    -webkit-box-shadow: 2px 2px 10px;
            box-shadow: 2px 2px 10px;
    max-width: 380px;
    width: 100%;
}
.centro .form-container input,
.centro .form-container select,
.centro .form-container textarea {
    border: none;
}
.dropzone-input {
    height: 50px;
    background: white;
    padding: 54px 54px;
    width: 100%;
    border: 3px dashed rgba(0, 0, 0, 0.3);
}
.dropzone-input::after {
    content: 'Desplace aquí la imágen o captura de la incidencia';
}
.dropzone {
    border: 3px dashed rgb(61, 70, 75);
    padding: 10px 24px;
    margin-bottom: 20px;
    background: white;
    min-height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: .9rem;
    cursor: pointer;
}
.dropzone.dz-clickable .dz-message {
    color: #777;
}
.trigger-dzone {
    display: none;
}
.dropzone img {
    height: 80px;
    max-width: 100%;
}
.dropzone .remove {
    display: block;
    background: rgba(0,0,0,0.8);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.dropzone .remove i {
    color: white;
}
.loader img {
    width: 100%;
    max-width: 30px;
}
@media (min-width: 1200px) {
    .centro .full-flex {
        margin: 0;
        text-align: left;
    }
    .centro .full-flex {
        padding: 0;
        padding-left: 200px;
        padding-top: 150px;
    }
    .centro .form-container {
        padding: 20px;
    }
}
.spinner {
    max-width: 35px;
}
/* FAQ */



/* Nosotros */
.header-nosotros {
    padding: 200px 80px 40px;
    text-align: center;
    position: relative;
    background: rgb(231,185,63);
    background: -webkit-gradient(linear, left top, right top, from(rgba(231,185,63,1)), to(rgba(209,128,63,1)));
    background: linear-gradient(90deg, rgba(231,185,63,1) 0%, rgba(209,128,63,1) 100%);
    color: white;
}
.header-nosotros .title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}
@media (min-width: 768px) {
    .header-nosotros .title {
        margin-bottom: 40px;
    }
}
@media (min-width: 992px) {
    .header-nosotros .content {
        max-width: 800px;
    }
    .bg-png {
        right: 0;
    }
}
.nosotros-banner {
    background-image: url('../img/nosotros.jpg');
    height: 1px;
    min-height: 480px;
    background-size: cover;
    background-position: center 70%;
}
.nosotros-indigital {
    text-align: center;
    background: rgb(231,185,63);
    background: -webkit-gradient(linear, left top, right top, from(rgba(231,185,63,1)), to(rgba(209,128,63,1)));
    background: linear-gradient(90deg, rgba(231,185,63,1) 0%, rgba(209,128,63,1) 100%);
    color: white;
}
.nosotros-indigital img {
    max-width: 250px;
}
.nosotros-indigital .title {
    font-weight: 600;
}
.certifications img:not(.camerfirma) {
    max-height: 60px;
    display: block;
}
.camerfirma {
    max-height: 100px;
    margin: 20px;
}
.certifications .title a, .certifications .title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    max-width: 300px;
    text-align: center;
    color: inherit;
}
@media (min-width: 768px) {
    .certifications img:not(.camerfirma) {
        max-height: 60px;
    }
    .certifications .title a {
        text-align: left;
    }
}
.certifications .title span {
    font-weight: 600;
    color: #dfa43d;
    font-size: 1.3rem;
}
.certifications i {
    font-size: 1.5rem;
    padding-right: 20px;
    color: #dfa43d;
}
.certifications .section-heading {
    font-size: 2.8rem;
}
/* Nosotros */




/* Facturacion electronica */
header.header-certificados {
    padding: 0;
}
header.header-certificados > div {
    position: relative;
}
.header-certificados > div {
    padding: 200px 40px 40px;
}
.header-certificados .title span {
    display: block;
    font-family: 'Bebas Neue';
}
.header-certificados .form-container, 
.formulario .form-container, 
.requisitos .form-container,
.overlay-modal .form-container {
    border-radius: 20px;
    padding: 16px;
    background: rgb(231,185,63);
    background: -webkit-gradient(linear, left top, right top, from(rgba(231,185,63,1)), to(rgba(209,128,63,1)));
    background: linear-gradient(90deg, rgba(231,185,63,1) 0%, rgba(209,128,63,1) 100%);
    -webkit-box-shadow: 2px 2px 15px rgba(0,0,0,0.6);
            box-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}
.formulario .form-container {
    -webkit-box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
            box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}
.requisitos .form-container {
    color: white;
}
.header-certificados form {
    margin: 0 auto;
}
.header-certificados .form-container input,
.header-certificados .form-container textarea {
    border: none;
}
.header-certificados .subtitle {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.header-certificados .bold {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.header-certificados .form-container .title {
    margin-bottom: 20px;
}
.bar .uppercase {
    font-size: 2.1rem;
    font-weight: 600;
}
.grey {
    background: #f4f5f0;
    z-index: 0;
}
.tiempo-heading .title {
    font-size: 4rem;
    line-height: 4rem;
}
.tiempo-heading span {
    font-weight: 600;
    font-size: 1.65rem;
}
.tiempo-heading .button {
    font-size: 1rem;
}
.facturacion-tiempo {
    background-image: url('../img/facturacion-electronica2.jpg');
    color: white;
}
.facturacion-tiempo .section-heading {
    color: white;
}
.bar-padding {
    padding: 40px 0;
}
.bar-bold h4 {
    font-weight: 600;
}
.single-prices {
    right: 0;
    top: 40px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
div.single-prices.notice {
    margin-top: 0;
}
.single-prices .price-card.featured {
    -webkit-transform: none;
            transform: none;
}
ol.featured-list {
    padding: 0;
    margin: 0;
}
.facturacion-requisitos {
    overflow-x: hidden;
}
.dark.type .bold.open {
    font-size: 2rem;
    color: white;
}
.header-certificados.facturacion {
    background-image: url('../img/facturacion-banner.jpg');
}
@media (min-width: 768px) {
    .header-certificados.contratos .title span,
    .header-certificados.contratos .title {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .header-certificados.firmas h1.title {
        font-size: 3.2rem;
    }
    .header-certificados.firmas h1.title span {
        font-size: 7rem;
        line-height: 6rem;
    }
    .bar .uppercase {
        font-size: 2.8rem;
    }
    .certifications .section-heading {
        font-size: 4rem;
    }
    .tiempo-heading .title {
        font-size: 5rem;
    }
    .header-certificados .form-container, 
    .formulario .form-container, 
    .requisitos .form-container,
    .overlay-modal .form-container {
        padding: 20px;
    }
    .header-certificados.natural .title {
        font-size: 3.3rem;
        line-height: 3rem;
    }
    .header-certificados.natural .title span {
        font-size: 5rem;
        line-height: 5rem;
    }
    .header-certificados.facturacion .title {
        font-size: 4.5rem;
        line-height: 4.5rem;
    }
    .header-certificados.facturacion .title span {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .header-certificados .form-container, 
    .formulario:not(.home) .form-container, 
    .requisitos .form-container,
    .overlay-modal .form-container {
        width: 100%;
        max-width: 380px;
    }
}
@media (min-width: 992px) {
    .single-prices .price-card {
        margin: unset;
    }
    .header-certificados .title span {
        font-size: 7rem;
        line-height: 7rem;
    }
}
@media (min-width: 1200px) {
    .header-certificados .bg {
        padding-right: 0;
        padding-left: 0;
    }
    .header-certificados .content {
        margin: 0 40px;
    }
    .header-certificados .form-container {
        position: absolute;
        right: 40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        border-radius: 20px;
    }
    .header-certificados .content {
        max-width: 680px;
    }
    .bg:first-of-type {
        padding-top: 280px;
    }
}
@media (min-width: 1200px) {
    .header-certificados .content {
        margin: 0;
        margin-left: 40px;
    }
    .header-certificados .form-container {
        right: 80px;
    }
}
@media (min-width: 1400px) {
    .header-certificados .content {
        margin-left: 120px;
    }
    .header-certificados .form-container {
        right: 80px;
    }
}
/* Facturacion electronica */




/* Persona Natural */
.header-certificados {
    background-image: url('../img/natural.jpg');
    min-height: 700px;
    background-size: cover;
    background-position: right;
    padding-bottom: 80px;
    padding-top: 100px;
}
.header-certificados h1.title,
.header-certificados h1.title span {
    font-size: 2.5rem;
}
.header-certificados p.lighter {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
}
.header-certificados .form-container {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin: 0 auto;
    border-radius: 15px;
}
.header-certificados .heading-text {
    color: white;
    text-align: center;
}
@media (min-width: 1200px) {
    .header-certificados .heading-text {
        text-align: left;
    }
    .header-certificados p.lighter {
        margin-bottom: 40px;
    }
}
@media (min-width: 1400px) {
    .header-certificados.natural .form-container,
    .header-certificados.juridica .form-container {
        margin-left: auto;
    }
    
}
/* Persona Natural */




/* Persona Jurídica */
.header-certificados.contratos {
    background-image: url('../img/contratos.jpg');
}
.header-certificados.firmas {
    background-image: url('../img/boletas.jpg');
}
@media (min-width: 768px) {
    .bar.bar-small .uppercase {
        font-size: 2rem;
    }
}
.open {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}
.open.section-heading {
    font-weight: 600;
}
.section-heading.dark {
    color: #3d464b;
    font-size: 2.2rem;
}
.featured-list.bold {
    list-style-image: none;
    padding: 0;
    list-style-type: none;
}
.featured-list.bold li, .step {
    font-weight: 600;
    color: #dfa43d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    margin-bottom: 10px;
}
.step.lighter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.featured-list.bold li span, .step span {
    color: white;
    display: block;
    background: #3d464b;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.step.lighter + img {
    display: block;
    margin: 0 auto 10px;
}
/* Persona Jurídica */





/* Login */
.background-login {
    background-image: url('../img/login.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 10px;
}
.bottom-logo {
    margin-top: auto;
    padding: 20px;
}
.forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-top: auto;
    text-align: center;
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.forms > div {
    padding: 30px;
    background-image: url('../img/bg-login.jpg');
    background-size: cover;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.forms > form {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.forms > form input:not([type="checkbox"]) {
    display: block;
    border: 2px solid #ddd;
    padding: 8px 20px;
    border-radius: 5px;
}
.forms > form .input-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}
.forms > form input:focus {
    border-color: #dfa43d;
}
.forms > form input:focus + span {
    content: '';
    background: white;
    top: -10px;
    height: 20px;
    width: 30px;
    position: absolute;
    left: 20px;
}
.forms > form input:focus + span::after {
    content: '';
    height: 10px;
    width: 10px;
    background: #dfa43d;
    border-radius: 50%;
    top: 6px;
    left: 0;
    position: absolute;
}
.forms .title {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    font-weight: 600;
}
.forms > div > .title {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 20px;
}
.forms > div > .title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 5px;
    background: white;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
}
.forms > form > .title {
    color: #dfa43d;
    margin-bottom: 40px;
}
.forms > form .checkbox span {
    border: 2px solid #ccc;
    margin-right: 5px;
}
.forms > form .checkbox {
    font-size: .9rem;
}
.forms .recover {
    font-size: .9rem;
}
.toggle-btn {
    padding: 8px 25px;
    border-radius: 30px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    width: 170px;
    margin: 0 auto;
    -webkit-transition: .3s;
    transition: .3s;
}
.toggle-btn:hover {
    background: white;
    color: #dfa43d;
}
.submit-btn {
    padding: 8px 25px;
    border-radius: 30px;
    border: 2px solid #dfa43d;
    background: #dfa43d;
    color: white;
    font-weight: 600;
    margin: 40px auto 0;
    width: 170px;
    -webkit-transition: .3s;
    transition: .3s;
}
.submit-btn:hover {
    background: white;
    color: #dfa43d;
    border: 2px solid #dfa43d;
}
.hide {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}
@media (min-width: 1200px) {
    .forms {
        position: absolute;
        left: 100px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
}
@media (min-width: 992px) {
    .forms {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .forms > div {
        width: 40%;
    }
    .forms > form {
        width: 60%;
        padding: 30px;
    }
    .forms .order-2 {
        -webkit-box-ordinal-group: 2 !important;
            -ms-flex-order: 1 !important;
                order: 1 !important;
    }
    .forms .register {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}
/* Login */





/* Logout */
.background-logout {
    background-image: url('../img/logout.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.top-logo {
    background: white;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    -webkit-box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.background-logout .message {
    margin-top: auto;
    margin-bottom: auto;
    color: white;
    text-align: center;
    padding: 20px;
}
.background-logout .message h5 {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    margin-bottom: 40px;
    letter-spacing: 0;
}
.background-logout .message span {
    font-weight: 600;
    display: block;
}
.logout-btn {
    background: #dfa43d;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 80px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}
.logout-btn:hover {
    color: white;
}
@media (min-width: 768px) {
    .background-logout .message {
        margin-bottom: 200px;
    }
    .background-logout .message h5 {
        font-size: 5rem;
    }
    .logout-btn {
        font-size: 1.3rem;
    }
}
/* Logout */




/* SEO */
.background-seo {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}
.background-seo.compra {
    background-image: url('../img/seo-compra.jpg');
}
.background-seo.aliados {
    background-image: url('../img/seo-aliados.jpg');
}
.background-seo .title {
    color: white;
    font-weight: bold;
    font-size: 2rem;
}
.seo-btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 80px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: #fdc530;
    background: -webkit-gradient(linear,  left top, right top,  from(#fdc530),to(#f37634));
    background: linear-gradient(to right,  #fdc530 0%,#f37634 100%);
    -webkit-transition: .3s;
    transition: .3s;
}
.seo-btn:hover {
    color: #3d464b;
}
.message-aliados .title span {
    font-weight: normal;
}
.message-aliados .title .yellow {
    color: #dfa43d;
    font-weight: bold;
}
@media (min-width: 576px) {
    .background-seo .title {
        font-size: 3.5rem;
    }
    .seo-btn {
        font-size: 1.5rem;
    }
    .message-compra{
        margin-bottom: 200px;
    }
    .message-aliados {
        margin: auto 40px auto auto;
    }
}
/* SEO */




/* Modal */
.overlay-modal {
    background: rgba(0,5,0,0.9);
    height: auto;
    min-height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-y: scroll;
}
.overlay-modal.show {
    z-index: 999999;
}
.overlay-modal .form-container {
    margin: 20px;
}
.overlay-modal .form-head {
    color: white;
}
.locked {
    overflow-y: hidden;
}
/* Modal */





/* Intranet */
.intranet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sidebar {
    background: #2d3c41;
    min-height: 100vh;
    width: 400px;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-right: 2px solid #2d3c41;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.sidebar .logo {
    background: white;
    padding: 10px 30px;
    text-align: center;
}
.sidebar .username {
    font-size: 2.2rem;
}
.sidebar ul {
    list-style-type: none;
    padding: 0;
    padding: 0 30px;
    margin: 0;
}
.sidebar ul a {
    color: white;
    display: inline-block;
    padding: 10px;
    border-bottom: 1px solid white;
    width: 100%;
    text-transform: uppercase;
}
.intranet .content {
    padding: 0 40px 40px;
}
.user {
    padding: 0 30px;
}
.user-notice {
    text-align: center;
    padding: 0 30px;
}
.user-type {
    font-size: 2rem;
    font-weight: 600;
}
.user-type span {
    font-weight: bold;
    text-transform: uppercase;
}
.user-amount {
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 300;
}
.user-amount span {
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
}
.user-missing {
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
}
.user-missing span {
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
}
.sidebar .footer {
    font-size: .8rem;
    padding: 30px;
}
.intranet .content {
    width: 100%;
}
.main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.main-nav input,
.main-nav select {
    padding: 8px 15px;
    border: 1px solid #dfa43d;
    border-radius: 40px;
    width: 100%;
}
.main-nav input:focus,
.main-nav select:focus {
    outline: none;
}
.solicitar-certificado {
    text-align: center;
}
.solicitar-certificado span {
    height: 80px;
    width: 80px;
    background: #dfa43d;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
}
.puntos span {
    height: 60px;
    width: 60px;
    background: #dfa43d;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
}
.alerta {
    text-transform: uppercase;
    text-align: center;
    color: white;
    background: #d11413;
    padding: 10px;
    border-radius: 5px;
}
.alerta > div:first-of-type {
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 3rem;
    line-height: 2.5rem;
}
.alerta > div:nth-of-type(2) {
    font-size: 1.2rem;
}
.alert-price {
    font-size: .7rem;
}
.intranet table.dataTable tbody td {
    padding: 20px 10px;
}
.intranet table.dataTable thead th {
    padding: 8px 10px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}
.intranet table.dataTable.no-footer {
    border: none;
}
.intranet table.dataTable.stripe tbody tr.odd {
    background-color: #ededed;
}
.intranet table.dataTable.cell-border tbody td {
    border-top: 1px solid #bbb;
    border-right: 1px solid #bbb;
}
.intranet .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border-radius: 30px;
    background: white;
    padding: 5px 25px;
}
.intranet table.dataTable tbody tr:first-of-type td {
    border-top: 1px solid #bbb;
}
.intranet table.dataTable tbody tr:first-of-type td:first-of-type {
    border-top-left-radius: 10px;
}
.intranet table.dataTable tbody tr:first-of-type td:last-of-type {
    border-top-right-radius: 10px;
}
.intranet table.dataTable tbody tr:last-of-type td {
    border-bottom: 1px solid #bbb;
}
.intranet table.dataTable tbody tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}
.intranet table.dataTable tbody tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10px;
}
.intranet table.dataTable.cell-border tbody td {
    border-top: none;
}
table.dataTable.cell-border tbody tr td:first-child {
    border-left: 1px solid #bbb;
}
/* Intranet */



.ws-container {
    position: fixed;
    right: 0;
    top: 50%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    z-index: 9;
    background: white;
}
.ws-web {
    background: #59d25d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.ws-web svg {
    width: 20px;
}
.ws-web.fb svg {
    height: 18px;
}
.ws-web:hover {
    opacity: .95;
}
.ws-web:nth-of-type(2) {
    background: #e7b93f;
}
.ws-web:nth-of-type(3) {
    background: #0f59ff;
}
.ws-web:nth-of-type(4) {
    background: #000000;
}