html, body{margin:0px; padding:0px; font-family: Helvetica Neue, helvetica, arial, sans-serif; font-size: 12pt;}

main{padding-top: 85px;}

@media screen and (max-width: 980px) {
    main{padding: 180px 10px 0px 0px;}
    body{width: 115%;}
    html, body{font-size: 40pt;}
}

/* Heading */
h1, h2, h3, h4, h5, h6 {margin:0 0 25px; padding:0; letter-spacing: 0; font-weight: bold;}
h1 {font-size:70px; line-height:70px;}
h2 {font-size:50px; line-height:60px}
h3 {font-size:30px; line-height:50px}
h4 {font-size:20px; line-height:40px}

@media screen and (max-width: 980px) {
    h1, h2, h3, h4, h5, h6 {margin:0 0 25px; padding:0; letter-spacing: 0; font-weight: bold;}
    h1 {font-size:60pt; line-height:70pt;}
    h2 {font-size:50pt; line-height:60pt;}
    h3 {font-size:50pt; line-height:50pt;}
    h4 {font-size:40pt; line-height:40pt;}
}

/* texto */
.txt_success {
    padding: 0.5em 1em;
    color: #4F8A10;
    background-color: #DFF2BF;
    text-align: center;
    border-radius: 10px;
}

.txt_error {
    padding: 0.5em 1.5em 1em 1em;
    color: #D8000C;
    background-color: #FFBABA;
    text-align: center;
    border-radius: 10px;
}

/* Header Menu */
 header {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     z-index: 100;
     display: flex;
     justify-content: center;
     height: 80px;
     padding: 5px 0 2px 0;
     background: linear-gradient(90deg, transparent, #d6dde6, #2f5988,  #0B4A8F);
 }

#logo{height: 50px; padding: 10px 80px 2px 60px;}

menu {
    vertical-align: center;
    width: 90%;
    animation: fadeInDown 3s;
}

.menu ul {
    background: transparent;
    display: flex;
    list-style: none;
}

.menu ul ul {
    display: none;
}

.menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 14pt;
    font-weight: bold;
    color: white;
}

.menu a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.menu a i {
    margin-left: 10px;
}

.menu ul li:hover ul {
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

#btn-menu, header label {
    display: none;
}

@media (max-width: 980px) {
    header {
        justify-content: right;
        height: 180px;
    }

    header label {
        display: block;
        padding-top: 16px;
        padding-right: 20px;
        transition: all 0.4s ease;
        font-size: 80px;
        cursor: pointer;
        color: white;
    }

    #logo{height: 180px; padding: 0px; position: fixed; top: 0; left: 0;}

    .menu {
        position: absolute;
        top: 180px;
        left: 0;
        width: 90%;
        transform: translateX(-100%);
        transition: all 0.3s;
        padding: 0 10%;
        background: whitesmoke;
    }

    .menu a {
        font-size: 40pt;
        padding: 1em;
        color: #0B4A8F;
    }

    .menu ul {
        flex-direction: column;
    }

    #btn-menu:checked ~ .menu {
        transform: translateX(0%);
    }
}

.titulo{
    animation: fadeIn 4s;
    text-align: center;
}

p .contenido{
    text-align: justify;
}


li{
    line-height: 150%;
}

/* Icon Language */
.languaje {
    position: fixed;
    top: 1.6em;
    right: 8em;
    width: 100px;
    z-index: 1002;
}

.languaje article {
    width: 80px;
    height: 40px;
    cursor: pointer;
    position: relative;
    background-color: whitesmoke;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.languaje article img {width: 40px; vertical-align: middle;}
.languaje article a{color: #111756;}

@media screen and (max-width: 980px) {
    .float-nav {position: fixed;bottom: 1em;right: 1em;z-index: 9999999;}
    .languaje {position: static; bottom: 0; right: 0; width: 220px;}
    .languaje article {width: 220px; height: 120px; font-size: 40pt; background-color: #2f5988; padding: 10px;}
    .languaje article a{color: white;}
    .languaje article img {width: 120px;}
    .languaje article div a:hover {color: #111756;}
}

/* Inputs*/
input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 14pt;
}

::placeholder {
    color: #818185;
    font-size: 11pt;
}

input[type=submit], input[type=button]  {
    background-color: #0864f6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14pt;
}

input[type=submit]:hover, input[type=button]:hover{
    background-color: #d9dbde;
    color: #124b8e;
}

/* Tables responsive */
table {
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 980px) {
    table {
        width:100%;
        text-align: center;
    }
    table tr:nth-of-type(2n) { background-color: inherit; }
    table td{
        display: block;
        text-align:center;
        width:100%;
        padding-top: 2em;
    }
    table td:before {
        content: attr(data-th);
        display: block;
        text-align: center;
    }
}

/* Diseño pie de página*/
footer{
    width:100%;
    padding: 30px 0 0 0;
    text-align: center;
    vertical-align: center;
    background-color: white;
}

footer hr{
    height: 5px;
    background: linear-gradient(90deg, #124b8e, white, #124b8e);
    border: 0;
}

footer .made{
    background-color: #064996;
    color: white;
    vertical-align: center;
    padding: 20px 0;
    letter-spacing: 4px;
    font-size: 8pt;
}

footer .made .line {
    font-size: 20pt;
}

footer .made a{color: white;letter-spacing: 4px;font-size: 8pt;}
footer .details a{color: #646a74;}

footer .details{
    width: 100%;
    padding: 40px 100px;
    font-size: 12pt;
    color: #646a74;
    line-height: 150%;
    vertical-align: top;
}

footer .details li{
    list-style: none;
    line-height: 150%;
}

footer .details i{
    color: #124b8e;
}

footer .details .logo{
    width: 200px;
}

footer .details .sociales{
    width: 50px;
    animation: pulse 2s infinite;
}

@media screen and (max-width: 980px) {
    footer .made, footer .made a {
        font-size: 20pt;
    }

    footer .details {
        font-size: 40pt;
    }

    footer .details .logo{
        width: 600px;
    }

    footer .details .sociales{
        width: 200px;
    }
}