@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {

    height: 100%;

    min-height: 100%;
    /*width: auto;*/
    overflow-x: hidden;
    overflow-y: auto;
}

body {

    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
  }

p {
    z-index: 100;
}

h2 {
    z-index: 200;
}

/*Articles*/

article.artic-one {
    height: 350px !important;
    background-image: url(../assets/img/capa.jpg);
    /*background-color: rgb(80,80,80);*/
    opacity: 1;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}

article.artic-one p h2 {
    opacity: 1.5;
    z-index: -999;
}

/*Articles*/

* {
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    text-decoration: none !important;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
}

/*HEADER SUPERIOR*/

.header__superior {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
}

.logo img {
    width: 250px;
}

.search input {
    width: 300px;
    padding: 10px;
}

/*End HEADER SUPERIOR*/

/*BARRA MENU*/

.container__menu {
    width: 100%;
    height: 70px;
    background: #023877;
    padding: 0px 20px;
    box-shadow: 1px 6px 3px 1px rgb(0 0 0 / 20%);
    line-height: 30px;
    z-index: 100;
}

.menu {
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav {
    height: 100%;
}

nav>ul {
    height: 100%;
    display: flex;
}

nav ul li {
    height: 100%;
    list-style: none;
    position: relative;
}

nav>ul>li:first-child>a {
    background-image: url(../assets/img/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav>ul>li:first-child:hover>a {
    background-image: url(../assets/img/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

nav>ul>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 300ms ease;
}

nav>ul>li>a:hover {
    transform: scale(1.1);
    background: #0074C7;
    color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

#selected {
    transform: scale(1.1);
    background-color: #0074C7;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*End BARRA MENU*/

/*SUBMENU*/

nav ul li ul {
    width: 200px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 300ms ease;
}

nav ul li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
}

nav ul li ul li a {
    display: block;
    color: #0099E9;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 300ms ease;
}

nav ul li ul li a:hover {
    background: #0074C7;
    color: #fff;
    transform: scale(1.2);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*End SUBMENU*/

/*ARTICULO*/

main {
    background: #f0f0f0;
    padding: 20px;
    /*margin-top: 194px;*/
}

article {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
}

article h2 {
    padding: 20px 20px 0px 20px;
}

article p.t {
    padding: 0px 20px;
    margin-top: 290px;
    margin-left: 20px;
}

article p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
}

.titulo {
    padding: 0;
}

li.padrao {
    /* font-family: 'Source Sans 3', sans-serif!important;
     */
     font-size: 18px;
     font-weight: 400;
}


/*End ARTICULO*/

/*ELEMENTOS RESPONSIVOS*/

.icon__menu {
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}

#label__check {
    width: 26px;
    height: 100%;
    display: none;
}

#check__menu {
    display: none;
}

.tx {
  text-align: justify;
  text-justify: inter-word;
}

div.nav-hdr-left a,
div.nav-hdr-right a {
    color: #0074C7;
    text-align: center;
    padding: 8px;
    text-decoration: none;
    font-size: 15px;
    line-height: 10px;
    border-radius: 5px;
    font-weight: bold;
}

div.nav-hdr-left a:hover {
    /*background-color: #ddd!important;*/
    color: #fff;
    transform: scale(1.1);
    background-color: #0074C7;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    line-height: 10px;
}

div.nav-hdr-right a:hover {
    color: #fff;
    transform: scale(1.1);
    background-color: #0074C7;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    line-height: 10px;
}

.bord-rgb {
    border-top: 3px solid transparent;
    border-image: linear-gradient(to right, #21a4cf, #b1bbcb);
    border-image-slice: 1;
    box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.2);
}

/*End ELEMENTOS RESPONSIVOS*/


/*rows*/

.rows {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/*end rows*/


/*Footer*/

footer {
    width: 100%;
    padding: 5px 0px;
    background-image: url(../assets/img/slanted-gradient.svg);
    background-size: cover;
    /* background-color: #FFF; */
    /* background-attachment: fixed; */

    /*    background-color: #000;
background-image: red url(../assets/img/subtle-prism.svg) no-repeat center center;
background-attachment: fixed; */
    background-size: cover;

}

.container__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
}

.box__footer {
    display: flex;
    flex-direction: column;
    padding: 0px 20px 0px;
}

.box__footer .logo img {
    width: 180px;
}

.box__footer .terms {
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #0062cc;
    font-size: 18px;
}

.box__footer h2 {
    margin-bottom: 30px;
    color: #0062cc;
    font-weight: 700;
}

.box__footer a {
    margin-top: 10px;
    color: #0062cc;
    font-weight: 600;
}

.box__footer a:hover {
    /*opacity: 0.8;*/
    color: #212529;
}

.box__footer a .fab {
    font-size: 20px;
}

.box__copyright {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p {
    margin-top: 20px;
    color: #26405e;
}

.box__copyright hr {
    border: none;
    height: 1px;
    background-color: #0062cc;
}

/*End Footer*/

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

    .search input {
        display: none;
    }

    .header__superior {
        padding: 10px;
    }

    .logo img {
        width: 200px;
    }

    nav>ul {
        flex-direction: column;
        background-color: #023877;
        position: fixed;
        left: 0;
        top: 158px;
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav>ul>li>a:hover {
        transform: scale(1);
    }

    nav ul li ul {
        left: 90px;
    }

    nav>ul>li:hover ul {
        top: 50px;
    }

    nav>ul>li:first-child a {
        background-position: 20px;
    }

    #selected {
        transform: scale(1);
    }

    #label__check {
        display: block;
    }

    .icon__menu {
        display: flex;
    }

    #check__menu:checked~nav>ul {
        height: 300px;
        visibility: visible;
        opacity: 1;
    }

    /* main{
       margin-top: 158px;
        margin-bottom: 158px;
    } */

    footer {
        padding: 0px;
    }


}