@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@font-face {
    font-family: "Haffer-TRIAL-Regular";
    src: url(../fonts/Haffer-TRIAL-Regular.woff);
}
@font-face {
    font-family: "Haffer-TRIAL-Medium";
    src: url(../fonts/Haffer-TRIAL-Medium.woff);
}
@font-face {
    font-family: "Haffer-TRIAL-Black";
    src: url(../fonts/Haffer-TRIAL-Black.woff);
}
@font-face {
    font-family: "Haffer-TRIAL-Bold";
    src: url(../fonts/Haffer-TRIAL-Bold.woff);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: #000;
    text-decoration: none;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    overflow-x: hidden;
}
/***  Index / Loging  ***/
.section-app {
    width: 100%;
    height: 100%;
    background: #014341;
    position: relative;
    display: table;
}
.app-background {
    width: 100%;
    height: 100%;
    background: url(../img/linea-veoplaca.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
}
.container {
    max-width: 400px;
    position: relative;
    margin: auto;
    padding: 10px;
}
.titulo-app {
    font-size: 80px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    line-height: 121%;
    color: #FFF;
    position: relative;
    text-align: center;
    top: 60px;
}
.img-veoplaca {
    width: 500px;
    position: relative;
    left: -120px;
    top: 40px;
}
.botones-app-login {
    width: 100%;
    height: 150px;
    position: relative;
    bottom: 30px;
}
.botones-app-login a {
    display: block;
    width: 100%;
    height: 60px;
    color: #000;
    border-radius: 35px;
    font-size: 23px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    display: table;
    margin: auto;
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
}
.botones-app-login a:nth-child(1) {
    background: #FDFF30;
}
.botones-app-login a:nth-child(2) {
    background: #FFF;
}
.botones-app-login a:hover {
    background: #D9D9D9;
}
/***  Crear Cuenta  ***/
.app-crear {
    width: 100%;
    height: 100%;
    background: #FFF;
    display: table;
}
.sec-titulo-crear {
    width: 100%;
    height: 80px;
    padding: 24px 10px;
    display: table;
}
.sec-titulo-crear h5 {
    font-size: 28px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-Regular";
    text-align: center;
}
.sec-titulo-crear i {
    position: absolute;
    left: 20px;
}
.titulo_hola {
    font-size: 28px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-Regular";
    text-align: center;
}
.sec-crear-descripcion {
    width: 100%;
    height: 91.2%;
    padding: 20px 10px;
    display: table;
}
.sec-crear-descripcion h6 {
    font-size: 23px;
    font-weight: 400;
    text-align: center;
    font-family: "Haffer-TRIAL-Regular";
}
.contenedor {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.menu {
   position: relative;
}
.menu-btn {
    width: 130px;
    height: 60px;
    padding: 20px 35px;
    background: #014341;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.input-app {
    width: 240px;
    height: 60px;
    color: #014341;
    background: #FBFFE7;
    border: none;
    padding: 20px 20px;
    border-radius: 30px;
    font-size: 23px;
    font-style: "regular";
    font-weight: 400;
    text-align: center;
    font-family: "Haffer-TRIAL-Regular";
    outline: none;
}
.input-app::placeholder {
    color: #014341;
    font-style: "regular";
    font-weight: 400;
    text-align: center;
    font-family: "Haffer-TRIAL-Regular";
}
.boton-app {
   display: none;
   position: absolute;
   top: 110%;
   left: 0;
   background: white;
   list-style: none;
   padding: 5px 0;
   margin: 0;
   min-width: 150px;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.boton-app li a {
   display: block;
   padding: 10px 15px;
   font-family: "Haffer-TRIAL-Regular";
   text-decoration: none;
   color: #000;
}
.boton-app li a:hover {
    background: #f2f2f2;
}
.menu:hover .boton-app {
    display: block;
}


.button-continuar {
    cursor: pointer;
    width: 380px;
    height: 60px;
    color: #000;
    background: #FDFF30;
    border-radius: 35px;
    font-size: 23px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    display: table;
    border: none;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
}
.button-continuar:hover {
    background: #D9D9D9;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FDFF3099;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 9999;
    display:none;
}
.overlay.activo {
   opacity: 1;
   pointer-events: all;
}
.contenido {
   width:100%;
   height: 100%;
   font-size: 60px;
   transform: scale(0.5);
   transition: transform 0.4s ease;
   display:flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.contenido img {
    width: 89px;
}
.overlay.activo .contenido {
   transform: scale(1);
}
/*** Parte 3  ***/
.sec-crear-descripcion_II {
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    position: relative;
    bottom: 0;
    display: table;
}
.sec-crear-descripcion_II h4 {
    color: #014341;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 80px;
    text-align: center;
    position: relative;
    top: 200px;
}
.content-circle {
    width: 100%;
    padding: 20px;
    background: #FDFF30;
    padding-top: 100px;
    height: 500px;
    border-top-left-radius: 100% 45%;
    border-top-right-radius: 100% 45%;
    position: absolute;
    bottom: 0;
}
.content-circle h5 {
    color: #014341;
    font-family: "Haffer-TRIAL-Regular";
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 100px;
}
.btn {
    width: 80%;
    height: 60px;
    line-height: 60px;
    display: block;
    margin: auto;
    font-size: 23px;
    font-weight: 700;
    border-radius: 35px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #000;
    color: #fff;
}
.btn-primary:hover {
    background-color: #222;
}
.btn-secondary {
    background-color: #E6E6E6;
    color: #000;
}
.btn-secondary:hover {
    background-color: #d4d4d4;
}
.btn:active {
    transform: scale(0.97);
}
/*** Parte 4  ***/
.content-circle_v2 {
    width: 100%;
    background: #F4F21A;
    padding-top: 100px;
    min-height: 90%;
    border-top-left-radius: 100% 35%;
    border-top-right-radius: 100% 30%;
    position: absolute;
    bottom: 0;
}
.screen {
    display: none;
}
.screen.active {
    display: block;
}
.input-group {
    display: flex;
    width: 380px;
    height: 60px;
    line-height: 60px;
    align-items: center;
    background: #E6E6E6;
    border-radius: 35px;
    padding: 12px 65px;
    margin: auto;
}
.icon {
    font-size: 40px;
    margin-right: 10px;
    position: relative;
    left: -20px;
}
.input {
    border: none;
    outline: none;
    font-size: 23px;
    font-family: "Haffer-TRIAL-Regular";
    background: transparent;
    width: 380px;
    font-size: 18px;
}
::placeholder {
    color: #000;
}
.button-verificar {
    cursor: pointer;
    width: 380px;
    height: 60px;
    color: #000;
    background: #D9D9D9;
    border-radius: 35px;
    font-size: 23px;
    line-height: 60px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    border: none;
    display: table;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.button-verificar:hover {
    color: #FFF;
    background: #000;
}
.content-circle_v2 h5 {
    color: #014341;
    font-family: "Haffer-TRIAL-Medium";
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    text-align: center;
    margin-bottom: 40px;
}
.content-circle_v2 p {
    color: #000000;
    font-weight: 400;
    font-family: "Haffer-TRIAL-Regular";
    font-size: 23px;
    text-align: center;
    margin-bottom: 40px;
}
.img-whatsaap {
    position: absolute;
    left: 0;
    right: 0;
    width: 128px;
    margin: auto;
    z-index: 999;
}
#resend {
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
}
#resend i {
    font-size: 13px;
}
#resend:hover {
    opacity: 1;
    transform: scale(1.05);
}
#resend:active {
    transform: scale(0.95);
}
/**  Iniciar Sesion  **/
.cont-iniciar-sesion {
    width: 100%;
    height: 200px;
    display: table;
}
.overlay_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E9FFD699;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.overlay_2.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_2.activo .contenido {
   transform: scale(1);
}
.modal button {
    display: block;
    width: 291px;
    height: 60px;
    margin: 8px 0;
    padding: 12px;
    margin-bottom: 20px;
    font-weight: bold;
    padding: 14px;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    background: #eaeaea;
    color: #000;
    transition: 0.3s;
}
.modal button:hover {
    background: black;
    color: white;
}
.modal button.active {
    background: black;
    color: white;
}
.contenedor_down_error button {
    display: block;
    width: 291px;
    height: 60px;
    line-height: 10px;
    margin: 8px 0;
    margin-bottom: 20px;
    font-weight: bold;
    padding: 23px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    background: #eaeaea;
    color: #000;
    transition: 0.3s;
}
.contenedor_down_error button:hover {
    background: black;
    color: white;
}
.contenedor_down_error button.active {
    background: black;
    color: white;
}
.overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.overlay_3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FDFF3099;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.overlay_3.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_3.activo .contenido {
   transform: scale(1);
}
.overlay_4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E9FFD6CC;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}
.overlay_4.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_4.activo .contenido {
   transform: scale(1);
}
.overlay_5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E9FFD6CC;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}
.overlay_5.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_5.activo .contenido {
   transform: scale(1);
}
.overlay_7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E9FFD6CC;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}
.overlay_7.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_7.activo .contenido {
   transform: scale(1);
}
.overlay_9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E9FFD6CC;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}
.overlay_9.activo {
   opacity: 1;
   pointer-events: all;
}
.overlay_9.activo .contenido {
   transform: scale(1);
}

.dni-box {
    width: 350px;
    height: 50px;
    background: #f8cdd0;
    color: red;
    font-family: "Haffer-TRIAL-regular";
    font-size: 23px;
    line-height: 50px;
    font-weight: 400;
    border-radius: 35px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}
.help-box {
    width: 350px;
    height: 70px;
    padding-top: 20px;
    position: relative;
    background: #fff;
    border-radius: 15px;
    font-size: 14px;
    font-family: "Haffer-TRIAL-regular";
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}
.help-box span {
    font-weight: bold;
}
.help-box img {
    width: 50px;
    position: absolute;
    left: 30px;
    top: 10px;
}
.btn_2 {
    cursor: pointer;
    width: 370px;
    height: 50px;
    color: #000;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    border: none;
    text-decoration: none;
    display: table;
    margin: auto;
    transition: 0.3s ease-in-out;
}
.btn_2:nth-child(1) {
    background: black;
    color: white;
}
.btn_2:nth-child(2) {
    background: #f5ea00;
    color: #000;
}
.contenedor_down {
    width: 350px;
    height: 150px;
    padding: 20px;
    position: absolute;
    display: table;
    bottom: 20px;
}
.cont_error {
    width: 100%;
    height: 200px;
    display: table;
}
.contenedor_down_error {
    width: 350px;
    height: 150px;
    padding: 20px;
    position: absolute;
    display: table;
    bottom: 20px;
}
.btn_3 {
    cursor: pointer;
    width: 380px;
    height: 60px;
    color: #000;
    border-radius: 35px;
    font-size: 23px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    line-height: 50px;
    border: none;
    text-decoration: none;
    display: table;
    margin: auto;
    transition: 0.3s ease-in-out;
}
.btn_3:nth-child(2) {
    background: black;
    color: white;
}
.btn_3:nth-child(1) {
    background: #f5ea00;
    color: #000;
}
.btn_3:nth-child(2):hover, .btn_3:nth-child(1):hover {
    background: #D9D9D9;
    color: #000;
}
/**  Iniciar Sesion  **/
.app_placa {
    width: 100%;
    height: 100%;
    background: #FFF;
    display: table;
}
.titulo_sin_problemas {
    width: 100%;
    height: 120px;
    background: #FFF;
    display: table;
}
.contenedor_info_problemas h6 {
    font-size: 32px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
    color: #014341;
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
.cont_rectangle {
    width: 380px;
    height: 154px;
    padding: 10px;
    border: solid 2.5px #000000;
    border-radius: 25px;
    position: relative;
    display: table;
    margin: auto;
    margin-bottom: 30px;
}
.crop {
    width: 22px;
    height: 10px;
    position: relative;
    border: solid 2.5px #000000;
    border-radius: 25px;
}
.crop:nth-child(1) {
    float: left;
    left: 70px;
}
.crop:nth-child(2) {
    float: left;
    left: 48px;
    top: 120px;
}
.crop:nth-child(3) {
    float: right;
    right: 80px;
}
.crop:nth-child(4) {
    float: right;
    right: 58px;
    top: 120px;
}
.cur_crop {
    position: relative;
    width: 49px;
    height: 30px;
    float: right;
    background: #D9D9D9;
    border-radius: 5px;
    bottom: 55px;
    right: 20px;
}
.cur_crop p {
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Haffer-TRIAL-regular";
    color: #555;
    text-align: center;
}
.cont_rectangle h5 {
    font-size: 50px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Haffer-TRIAL-Bold";
    text-align: center;
    position: relative;
    bottom: -10px;
}
.cont_rectangle h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Haffer-TRIAL-Black";
    text-align: center;
    position: relative;
    top: 40px;
}
.img-peru {
    width: 50px;
    position: absolute;
    top: 13px;
    left: 25px;
}
.contenedor_subtitulo {
    width: 100%;
    height: 115px;
    background: #C8F7FF;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.contenedor_subtitulo h4 {
    font-size: 23px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
}
.contenedor_subtitulo2 {
    width: 100%;
    height: 115px;
    background: #FBFFE7;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.contenedor_subtitulo2 h4 {
    font-size: 23px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
}
.contenedor_subtitulo3 {
    width: 100%;
    height: 115px;
    background: #FFD1D1;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.contenedor_subtitulo3 h4 {
    font-size: 23px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
}
.icon-left, .img-veoplaca_, .icon-right {
    float: left;
}
.icon-left {
    width: 20%;
    height: 120px;
    display: flex;
    justify-content: left;
    align-items: center;
}
.icon-left i {
    font-size: 24px;
}
.icon-right i {
    font-size: 24px;
}
.img-veoplaca_ {
    width: 60%;
    height: 120px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-veoplaca_ img {
    width: 100%;
}
.icon-right {
    width: 20%;
    height: 120px;
    display: flex;
    justify-content: right;
    align-items: center;
}
.contenedor_info_problemas {
    width: 100%;
    height: 400px;
    background: #FFF;
    display: table;
}
.img_placa_01 {
    width: 380px;
    height: 184px;
    display: table;
    margin: auto;
}
.contendor_datos_veoplaca {
    width: 412px;
    height: 477px;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: table;
    margin: auto;
}
.contendor_datos_veoplaca img {
    width: 100%;
}
.contendor_marcas_veoplaca {
    width: 100%;
    height: 400px;
    padding-top: 40px;
    display: table;
}
.grid_marcas {
    width: 412px;
    height: 107px;
    padding: 20px;
    display: table;
    position: relative;
    margin: auto;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
input[type="checkbox"] {
    display: none;
}
.left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.check {
    width: 40px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.check img {
    width: 30px;
}
.title {
    font-weight: 700;
    font-size: 18px;
    font-family: "Haffer-TRIAL-regular";
}
.title_2 {
    font-weight: 700;
    font-size: 18px;
    font-family: "Haffer-TRIAL-regular";
}
.img_marcas {
    display: flex;
    flex-direction: column;
}
.img_marcas2 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.img_transporte {
    width: 224px;
}
.img_transporte2 {
    width: 120px;
}
.img_transporte3 {
    width: 156px;
}
.img_transporte4 {
    width: 57px;
}
.img_transporte5 {
    width: 180px;
}
.img_transporte5_1 {
    width: 132px;
    position: relative;
    left: 40px;
}
.img_transporte6 {
    width: 129px;
}
.img_transporte7 {
    width: 161px;
}
.img_transporte8 {
    width: 47px;
    float: right;
}
.img_transporte9 {
    width: 78px;
}
.title_3 {
    font-weight: 700;
    font-size: 18px;
    font-family: "Haffer-TRIAL-regular";
}
.title_3 .img_transporte8 {
    display: inline-block;
}
.plus {
    width: 50px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s;
    right: 0;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
input:checked ~ .accordion-content {
    max-height: 200px;
    padding: 10px;
}
input:checked + .left .plus {
    transform: rotate(45deg);
}
.container_1 {
    width: 380px;
}
.contendor_1 {
    width: 380px;
    height: 31px;
    border-radius: 10px 10px 0 0;
    background: #27C48B;
    margin-top: 20px;
}
.contendor_1 h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
}

.contendor__2 {
    width: 380px;
    height: 31px;
    border-radius: 10px 10px 0 0;
    background: #FF0000;
    margin-top: 20px;
}
.contendor__2 h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
}
.contenedor_1_1 {
    width: 380px;
    height: 50px;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid #555555;
    border-bottom: 1px solid #555555;
    border-right: 1px solid #555555;
    display: table;
    margin-bottom: 20px;
}
.contenedor_1_2 {
    width: 380px;
    height: 50px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid #555555;
    border-bottom: 1px solid #555555;
    border-right: 1px solid #555555;
    display: table;
    margin-bottom: 20px;
}
.contenedor_1_2 h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    display: table;
}
.cont_box {
    width: 50%;
    height: 30px;
    padding: 0px 20px;
    display: inline-block;
}
.cont_box h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    text-align: left;
    line-height: 30px;
}
.cont_box span {
    font-weight: 500;
    position: relative;
    left: 10px;
}
.g-box {
    width: 50%;
    height: 30px;
    display: inline-block;
}
.g-box h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    text-align: left;
    line-height: 30px;
}
.g-box span {
    font-weight: 500;
    position: relative;
    left: 10px;
}
.g-box_2 {
    width: 100%;
    height: 30px;
    display: inline-block;
}
.g-box_2 h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    text-align: left;
    line-height: 30px;
}
.g-box_2 span {
    font-weight: 500;
    position: relative;
    left: 10px;
}
.contenedor_1_2 span {
    font-weight: 500;
    position: relative;
    left: 20px;
}
.contenedor_2 {
    width: 380px;
    height: 50px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #FFF;
    border: solid 1px #555555;
    display: table;
    margin: auto;
    margin-bottom: 20px;
}
.mar-bottom {
    margin-top: 20px;
}
.mar-bottom2 {
    margin-bottom: 40px;
}
.contenedor_2 h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
}
.contenedor_2 span {
    font-weight: 500;
    position: relative;
    left: 20px;
}
.contenedor_3 {
    width: 380px;
    height: 192px;
    padding: 10px 20px;
    border-radius: 10px;
    border: solid 1px #555555;
    display: table;
    margin-bottom: 20px;
}
.H_box {
    width: 40%;
    height: 130px;
    display: inline-block;
    margin-bottom: 10px;
}
.H_box:nth-child(2) {
    width: 60%;
}
.H_box:nth-child(4) {
    width: 60%;
}
.H_box h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
    display: table;
}
.H_box h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
    display: table;
}
.contenedor_4 {
    width: 380px;
    height: 132px;
    padding: 20px 20px;
    border-radius: 10px;
    border: solid 1px #555555;
    display: table;
    margin-bottom: 20px;
}
.contenedor_4 h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
}
.contenedor_4 span {
    font-weight: 500;
    position: relative;
    left: 20px;
}
.a_box {
    width: 50%;
    height: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
.a_box h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
    position: relative;
}
.t_box {
    width: 100%;
    height: 20px;
    display: table;
    margin-bottom: 10px;
}
.a_box_1 {
    width: 30%;
    height: 30px;
    float: left;
    margin-bottom: 10px;
}
.a_box_1 h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
    display: table;
}
.a_box_2 {
    width: 70%;
    height: 30px;
    float: right;
    margin-bottom: 10px;
}
.a_box_2 h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
    position: relative;
}
.t_box h5 {
    font-size: 15px;
    font-weight: 300;
    font-family: "Haffer-TRIAL-regular";
    line-height: 30px;
    display: table;
}
.t_box h3 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Haffer-TRIAL-regular";
    position: relative;
}
.contendor_5 {
    width: 380px;
    height: 69px;
    border-radius: 10px 10px 0 0;
    background: #19459D;
    margin-top: 20px;
}
.contendor_5 h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 60px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
}
.contenedor_5_1 {
    width: 380px;
    height: 127px;
    padding: 20px 20px;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid #555555;
    border-bottom: 1px solid #555555;
    border-right: 1px solid #555555;
    display: table;
    margin-bottom: 20px;
}
.contendor_6 {
    width: 380px;
    height: 69px;
    padding-top: 15px;
    border-radius: 10px 10px 0 0;
    background: #19459D;
    margin-top: 20px;
}
.contendor_6 h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
}
.contenedor_8 {
    width: 380px;
    height: 225px;
    padding: 20px 0px;
    position: relative;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid #555555;
    border-bottom: 1px solid #555555;
    border-right: 1px solid #555555;
    position: relative;
    display: table;
    margin-bottom: 20px;
}
.box_cont__ {
    width: 100%;
    height: 90px;
    padding-top: 5px;
    position: relative;
    display: table;
}
.box_cont__border{
    width: 346px;
    height: 1px;
    background: #D9D9D9;
    display: table;
    margin: auto;
    margin-bottom: 15px;
}
.box_cont__ h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
    margin-bottom: 20px;
}
.problem_regular {
    width: 93px;
    height: 25px;
    background: #FF0000;
    border-radius: 25px;
}
.problem_regular p {
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
    font-family: "Haffer-TRIAL-regular";
    text-align: center;
}
.footer {
    width: 100%;
    height: 207px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #D4FFC8;
    display: table;
}
.footer h5 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    font-family: "Haffer-TRIAL-regular";
    margin-top: 40px;
}
.footer a {
    width: 380px;
    height: 60px;
    font-size: 20px;
    font-family: "Haffer-TRIAL-regular";
    color: #FFF;
    background: #000;
    line-height: 60px;
    border-radius: 35px;
    text-align: center;
    display: table;
    margin: auto;
    position: relative;
    text-decoration: none;
}
.footer img {
    position: absolute;
    left: 60px;
    top: 18px;
}



/* MIS ESTILOS */


.main{
    width:100%;
    height:100%;
}
