/* ==========================================================================
   ORGANIZED CSS - STRUCTURED FOR MAINTAINABILITY
   Author: Gabriel Andrade
   Description: Logical grouping, minimal redundancy, with preserved original styles
========================================================================== */

/* ==========================================================================
1. RESET & BASE STYLES
========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent
}

@-ms-viewport {
    width: device-width
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block
}

body {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #383838;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 0.5rem
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

dfn {
    font-style: italic
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

a:not([href]):not([tabindex]) {
    text-decoration: none
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

svg {
    overflow: hidden;
    vertical-align: middle
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.container-lg {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }

    .container-lg {
        max-width: 540px
    }

}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }

    .container-lg {
        max-width: 540px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1100px
    }

    .container-lg {
        max-width: 980px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }

    .container-lg {

        max-width: 1200px;
    }
}

.navbar-navigation {
    border-radius: 13rem;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

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

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-6 {
        order: 6
    }

    .order-xl-7 {
        order: 7
    }

    .order-xl-8 {
        order: 8
    }

    .order-xl-9 {
        order: 9
    }

    .order-xl-10 {
        order: 10
    }

    .order-xl-11 {
        order: 11
    }

    .order-xl-12 {
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.fade {
    transition: opacity 0.5s linear
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: all 0.55s ease
}

@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none
    }
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:hover,
.nav-link:focus {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-item {
    margin-bottom: -1px
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff
}

.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #8C4E7A !important
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #D5B3CA !important
}

.bg-secondary {
    background-color: #D5B3CA !important
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #002e5f !important
}

.bg-success {
    background-color: #20c997 !important
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #199d76 !important
}

.bg-info {
    background-color: #0095c0 !important
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #006d8d !important
}

.bg-warning {
    background-color: #ffc924 !important
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #f0b500 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #e9ecef !important
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #cbd3da !important
}

.bg-dark {
    background-color: #363636 !important
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d1d1d !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #005ea1 !important
}

.border-secondary {
    border-color: #004692 !important
}

.border-success {
    border-color: #20c997 !important
}

.border-info {
    border-color: #0095c0 !important
}

.border-warning {
    border-color: #ffc924 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #e9ecef !important
}

.border-dark {
    border-color: #363636 !important
}

.border-white {
    border-color: #fff !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block,
#acessorapido ul li:first-child {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex,
.btn {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 1200px) {
    .ml-xl-125 {
        margin-left: 1.45em !important;
    }

    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center,
.btn {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center,
.btn {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports (position: sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

.text-justify {
    text-align: justify !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase,
#acessorapido ul li:first-child {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-italic {
    font-style: italic !important
}

.text-white,
.link-item:hover span {
    color: #fff !important
}

.text-primary {
    color: #005ea1 !important
}

a.text-primary:hover,
a.text-primary:focus {
    color: #00406e !important
}

.text-secondary {
    color: #004692 !important
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #002e5f !important
}

.text-success {
    color: #20c997 !important
}

a.text-success:hover,
a.text-success:focus {
    color: #199d76 !important
}

.text-info {
    color: #0095c0 !important
}

a.text-info:hover,
a.text-info:focus {
    color: #006d8d !important
}

.text-warning {
    color: #ffc924 !important
}

a.text-warning:hover,
a.text-warning:focus {
    color: #f0b500 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:hover,
a.text-danger:focus {
    color: #bd2130 !important
}

.text-light {
    color: #e9ecef !important
}

a.text-light:hover,
a.text-light:focus {
    color: #cbd3da !important
}

.text-dark {
    color: #363636 !important
}

a.text-dark:hover,
a.text-dark:focus {
    color: #1d1d1d !important
}

.text-body {
    color: #383838 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

@font-face {
    font-family: "slick";
    src: url("fonts/slick.html");
    src: url("fonts/slickd41d.html?#iefix") format("embedded-opentype"), url("fonts/slick-2.html") format("woff"), url("fonts/slick-3.html") format("truetype"), url("fonts/slick-4.html#slick") format("svg");
    font-weight: normal;
    font-style: normal
}

.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: #fff;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "←"
}

[dir="rtl"] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto
}

.slick-next:before {
    content: "→"
}

[dir="rtl"] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

* {
    z-index: 1;
    outline: 0
}

a {
    color: #8C4E7A;
    text-decoration: none !important;
    transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1)
}

button:focus {
    outline: 0
}

* {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1 {
    margin: 0;
    font-weight: normal;
    font-size: 1rem
}

h2 {
    margin: 0;
    font-weight: normal;
    font-size: 1rem
}

h3 {
    margin: 0;
    font-weight: normal;
    font-size: 1rem
}

h4 {
    margin: 0;
    font-weight: normal;
    font-size: 1rem
}

h5 {
    margin: 0;
    font-weight: normal;
    font-size: 1rem
}

.fz10,
#acessorapido ul li:first-child {
    font-size: 10px
}

.fz12 {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}

.fz12:hover {
    color: #bdbdbd;
}

.border {
    border: 1px solid rgba(245, 245, 245, 1) !important;
    width: 90px;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    text-align: center;
}

.fz13,
input[type="email"]::-webkit-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="email"]::-moz-placeholder,
input[type="email"]:-moz-placeholder {
    font-size: 13px
}

.fz14,
#acessorapido ul li {
    font-size: 14px
}

.fz18 {
    font-size: 18px
}

.fz20 {
    font-size: 20px
}

.fz22 {
    font-size: 22px
}

.fz30 {
    font-size: 30px
}

time {
    line-height: 1
}

small {
    font-size: 12.8px
}

.op7 {
    opacity: 0.7
}

i {
    font-size: 13px
}

.lh-1 {
    line-height: 1
}

.letterspace {
    letter-spacing: 5px
}

.title-intern:before {
    content: "";
    width: 32px;
    height: 1px;

    position: absolute;
    background: #ffc924
}

*/ .title-primary:before {
    background: #005ea1
}

.title-intern.lh-1 {
    margin-top: 10px
}

.title-intern.lh-1::before {
    top: -5px
}

.btn {
    height: 44px;
    min-height: 44px;
    line-height: normal;
    background: #adb5bd
}

.btn-sm {
    height: 29px;
    min-height: 29px;
    line-height: 29px
}

.btn-lg {
    height: 68px;
    min-height: 68px
}

.btn-xl {
    height: 80px;
    min-height: 80px;
    line-height: 80px
}

.arrow {
    max-height: 11px
}

.arrow-d {
    margin: -3px 0 0 0
}

.bar {
    z-index: 11;
    height: 50px;
    background: linear-gradient(90deg, #06366A 0%, #8C4E7A 100%);

}

.bar .divider {
    top: 1px;
    min-width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 1)
}

.bar .btn {
    max-height: 40px;
    min-height: 40px
}

.menuhover #service-menu,
.menuhover #menu-1,
.menuhover #menu-2,
.menuhover #menu-3,
.menuhover #menu-4,
.menuhover #menu-5,
.menuhover #menu-6,
.menuhover #menu-7 {
    left: 50%;
    top: 100%;
    width: 100%;
    background: #363636;
    position: absolute;
    transform: translateX(-50%);
    border-top-width: 5px;
    border-top-style: solid;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
}

.menuhover #service-menu {
    border-top-color: #0095c0
}

.menuhover #menu-1 {
    border-top-color: #005ea1
}

.menuhover #menu-2 {
    border-top-color: #0095c0
}

.menuhover #menu-3 {
    border-top-color: #20c997
}

.menuhover #menu-4 {
    border-top-color: #ffc924
}

.menuhover #menu-5 {
    border-top-color: #fd7e14
}

.menuhover #menu-6 {
    border-top-color: #dc3545
}

.menuhover #menu-7 {
    border-top-color: #6610f2
}

.menuhover .title {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px
}

.menuhover .title:before {
    top: -5px
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .menuhover .title {
        font-size: 12px
    }
}

.menuhover h3 {
    display: flex;
    font-size: 12px;
    min-height: 47px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.menuhover ul>li {
    font-size: 12px;
    font-weight: 500;
    line-height: 2.5em
}

.menuhover ul {
    padding: 0;
    list-style: none
}

.menuhover .container {
    min-height: calc(100vh - 145px)
}

@media (max-width: 1199.98px) {
    .menuhover .container {
        min-height: calc(100vh - 95px)
    }
}

.menuhover .container .scroll {
    overflow: auto;
    overscroll-behavior: contain;
    height: calc(100vh - 215px)
}

.title {
    position: relative
}

.title {
    cursor: pointer;
    font-weight: normal;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;


}

.title::after {
    display: inline-block;
    width: 9px;

    height: 5px;

    margin-left: 0.3em;
    content: '';
    vertical-align: middle;
    background-size: cover;
    background-image: url('../images/Vector_7.png');
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #header h1 {
        display: flex;
        align-items: center
    }
}

.menu-principal ul {
    list-style: none
}

.menu-principal ul li:nth-child(1) .title:before {
    background: #005ea1
}

.menu-principal ul li:nth-child(2) .title:before {
    background: #0095c0
}

.menu-principal ul li:nth-child(3) .title:before {
    background: #20c997
}

.menu-principal ul li:nth-child(4) .title:before {
    background: #ffc924
}

.menu-principal ul li:nth-child(5) .title:before {
    background: #fd7e14
}

.menu-principal ul li:nth-child(6) .title:before {
    background: #dc3545
}

.menu-principal ul li:nth-child(7) .title:before {
    background: #6610f2
}

.menu-principal a {
    font-size: 14px;
    padding-top: 5px
}

.menu-principal a.title:before {
    top: 0px;
    height: 2px
}

@media (max-width: 1199.98px) {
    .menu-principal a {
        font-size: 11px
    }
}

.trigger-menu-responsivo {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: .2s all ease-in
}

.trigger-menu-responsivo .wrapper {
    width: 20px;
    height: 16px
}

.trigger-menu-responsivo .line {
    height: 2px;
    transition: .1s transform ease-in;
    position: relative
}

.responsive-menu-open {
    overflow: hidden
}

.responsive-menu-open:before {
    content: "";
    z-index: 9;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.5)
}

@media (min-width: 992px) {
    .responsive-menu-open:before {
        display: none
    }
}

.responsive-menu-open .wrapper .line {
    display: none !important
}

.responsive-menu-open .wrapper .line:first-child {
    display: block !important;
    transform: translateY(10px) rotateZ(45deg) !important
}

.responsive-menu-open .wrapper .line:last-child {
    display: block !important;
    transform: translateY(-4px) rotateZ(-45deg) !important
}

.responsive-menu-open .menu-responsivo {
    transform: translateY(0%)
}

.menu-responsivo {
    left: 0;
    top: 50px;
    z-index: 9;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: scroll;
    height: calc(100vh - 50px);
    transform: translateY(-100%);
    transition: .2s transform ease-in
}

.menu-responsivo ul {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow: hidden;
    list-style: none;
    position: relative;
    scroll-behavior: smooth
}

.menu-responsivo ul a {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-responsivo ul a>svg {
    transform: rotate(180deg)
}

.menu-responsivo ul li {
    color: #fff
}

.menu-responsivo ul li:nth-child(2) .title:before,
.menu-responsivo ul li:nth-child(2) .title+.submenu .title:before {
    background: #005ea1
}

.menu-responsivo ul li:nth-child(3) .title:before,
.menu-responsivo ul li:nth-child(3) .title+.submenu .title:before {
    background: #0095c0
}

.menu-responsivo ul li:nth-child(4) .title:before,
.menu-responsivo ul li:nth-child(4) .title+.submenu .title:before {
    background: #20c997
}

.menu-responsivo ul li:nth-child(5) .title:before,
.menu-responsivo ul li:nth-child(5) .title+.submenu .title:before {
    background: #ffc924
}

.menu-responsivo ul li:nth-child(6) .title:before,
.menu-responsivo ul li:nth-child(6) .title+.submenu .title:before {
    background: #fd7e14
}

.menu-responsivo ul li:nth-child(7) .title:before,
.menu-responsivo ul li:nth-child(7) .title+.submenu .title:before {
    background: #dc3545
}

.menu-responsivo ul li:nth-child(8) .title:before,
.menu-responsivo ul li:nth-child(8) .title+.submenu .title:before {
    background: #6610f2
}

.menu-responsivo ul li .title:before {
    top: 10px;
    width: 40px;
    height: 3px
}

.menu-responsivo ul .submenu {
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: 999;
    padding: 5px;
    background: #363636;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    animation: submenu-hide 0.3s;
    transform: translateX(100%);
    height: calc(100vh - 50px);
    overscroll-behavior: none
}

.menu-responsivo ul .submenu.open {
    animation: submenu-show 0.3s;
    opacity: 1;
    transform: translateX(0%)
}

.menu-responsivo ul .submenu a {
    color: #fff;
    padding: 10px 20px
}

.menu-responsivo ul .submenu .heading {
    padding-left: 20px
}

.menu-responsivo ul .submenu h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.menu-responsivo ul .submenu .title {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px
}

@media (min-width: 992px) {
    .menu-responsivo {
        display: none
    }
}

@keyframes submenu-show {
    from {
        opacity: 0;
        transform: translateX(100%)
    }

    to {
        opacity: 1;
        transform: translateX(0%)
    }
}

@keyframes submenu-hide {
    from {
        opacity: 1;
        transform: translateX(0%)
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}

.responsive-search {
    top: 2px;
    border: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    background: #e2e4e8
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) and (stroke-color: transparent) {
        .responsive-search {
            top: 0px
        }
    }
}

.responsive-search::before {
    content: "";
    top: 16px;
    z-index: 2;
    left: 17px;
    width: 18px;
    height: 18px;
    background-image: url("../images/icons/lupa.png");
    position: absolute;
    background-size: 100%
}

#busca-mobile {
    right: 0;
    position: absolute;
    background: #fff;
    top: calc(100% - 3px)
}

#busca-mobile label {
    width: 100vw;
    height: 45px;
    border-top: 1px solid #005ea1
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .bar .trigger-services {
        font-size: 14px
    }

    .bar .fz14,
    .bar #acessorapido ul li,
    #acessorapido ul .bar li {
        font-size: 12px
    }

    .bar .fz12,
    .bar #revista a,
    #revista .bar a {
        font-size: 10px
    }
}

.gsc-control-searchbox-only.gsc-control-searchbox-only-pt-PT,
.gsc-control-searchbox-only.gsc-control-searchbox-only-pt-PT * {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important
}

.gsc-control-searchbox-only.gsc-control-searchbox-only-pt-PT .gsc-search-button {
    top: 6px;
    left: 4px;
    position: absolute;
    background: transparent
}

.gsc-control-searchbox-only.gsc-control-searchbox-only-pt-PT .gsc-search-button svg {
    width: 18px;
    height: 18px;
    fill: #005ea1
}

.gsc-input-box {
    border-radius: 0 !important;
    background: #e2e4e8 !important
}

input#gsc-i-id1 {
    min-height: 40px;
    background: #e2e4e8 !important;
    padding: 0 0 0 35px !important
}

#gs_st50 {
    top: 3px;
    min-width: 25px
}

#banner {
    height: 495px;
    overflow: hidden;
    background-image: url("../images/bg-banner.html")
}

@media (max-width: 991.98px) {
    #banner {
        height: auto
    }

    #banner>.container {
        max-width: 100%
    }

    #banner .bg-info {
        padding-top: 200px
    }
}

#banner .first-col {
    z-index: 2
}

.box-dark {
    background: #2a2a2a
}

.home-carrousel {
    height: 447px;
    margin-bottom: 0 !important
}

.home-carrousel * {
    line-height: 1
}

.home-carrousel .slick-list,
.home-carrousel .slick-track {
    height: 100%
}

.home-carrousel .slick-dots {
    right: 0;
    width: 50%;
    bottom: 20px;
    text-align: right;
    margin-right: 10px
}

@media (max-width: 991.98px) {
    .home-carrousel .slick-dots {
        bottom: -120px;
        text-align: right;
        margin-right: 50px
    }
}

.home-carrousel .slick-dots li {
    margin: 0;
    width: 10px;
    height: 10px;
    margin-right: 8px
}

.home-carrousel .slick-dots li.slick-active button:before {
    background: #ffca35
}

.home-carrousel .slick-dots button {
    padding: 0;
    width: 10px;
    height: 10px
}

.home-carrousel .slick-dots button:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50px;
    opacity: 1 !important
}

.home-carrousel .slide-img {
    max-width: 50%;
    object-fit: cover
}

@media (max-width: 1199.98px) {
    .home-carrousel .fz30 {
        font-size: 25px
    }
}

@media (max-width: 991.98px) {
    .home-carrousel .slide-img {
        max-width: none;
        height: 437px
    }

    .home-carrousel .box {
        left: 50%;
        bottom: 0;
        height: 285px;
        position: absolute;
        width: calc(100% - 48px) !important;
        transform: translateX(-50%) translateY(50%)
    }
}

@media (max-width: 991.98px) and (max-width: 575.98px) {
    .home-carrousel .box {
        width: calc(100% - 15px) !important
    }
}

@media (max-width: 991.98px) {
    .home-carrousel .slick-list {
        overflow: visible
    }
}

@media (max-width: 767.98px) {
    .home-carrousel .fz30 {
        font-size: 18px
    }
}

.select-style {
    width: 100%;
    height: 44px;
    background: #fff;
    overflow: hidden;

}

.select-style::before {
    content: "";
    right: 15px;
    padding: 3px;
    position: absolute;
    top: calc(50% - 4px);
    border: solid #8C4E7A;
    display: inline-block;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg)
}

.select-style:hover::before {
    content: "";
    right: 15px;
    padding: 3px;
    position: absolute;
    top: calc(50% - 4px);
    border: solid #FFFFFF;
    display: inline-block;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg)
}

.select-style select {
    border: 1px solid #8C4E7A;
    height: 100%;
    width: calc(100%);
    transition: all .2s ease-in-out;
    border-radius: 10px;
    background: transparent;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    appearance: none;
    color: rgba(10, 71, 138, 1);
}

.select-style:hover select {
    background: #8C4E7A;
    border: 1px solid transparent;
    color: #FFFFFF;
    cursor: pointer;
}

.select-style select option {
    background: #ffff;
    cursor: pointer;
    color: #8C4E7A;
    cursor: pointer;
    font-weight: 400;
    line-height: 30px;

    min-height: 30px;

    list-style: none;

}

select::-ms-expand {
    display: none;
}

.select-style select option {
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#content {
    background: #005da5;
    background: linear-gradient(0deg, #fff 0%, #d3d8dc 41%, #005da5 41%, #00355c 100%)
}

select::-webkit-scrollbar {
    width: 10px;

}

select::-webkit-scrollbar-track {
    background: #f1f1f1;

}

select::-webkit-scrollbar-thumb {
    background: #888;

    border-radius: 5px;

}

select::-webkit-scrollbar-thumb:hover {
    background: #555;

}

select {
    scrollbar-width: thin;

    scrollbar-color: #888 #f1f1f1;

}

@media (max-width: 991.98px) {
    #content>.container {
        max-width: none
    }
}

#content [data-order] {
    order: 9
}

#content [data-order="3"] {
    order: 1
}

.grid-posts {
    display: grid;
    grid-gap: 60px;
    grid-template-columns: repeat(3, 1fr)
}

.grid-events {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(2, 2fr)
}

.w-70 {
    width: 70%;
}

@media (max-width: 991.98px) {
    .title .grid-posts {
        grid-gap: 30px 20px
    }
}

@media (max-width: 575.98px) {
    .grid-posts {
        grid-template-columns: 1fr
    }
}

.grid-posts .post {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    width: 270px;
    height: 370px;
}

.post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.post .imagem-noticia-responsiva {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
    margin-bottom: 10px;
}

.post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;

    text-align: center;

    border-bottom-left-radius: 10px;

    border-bottom-right-radius: 10px;

}

.post-title a h3 {

    font-family: Poppins;
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: rgba(255, 255, 255, 1);

}

.grid-posts .post time {
    margin: 15px 0 2px 0
}

aside .next-events {
    position: relative;

}

@media (max-width: 991.98px) {
    aside .next-events::before {
        content: "";
        left: 0;
        top: 100%;
        width: 100%;
        height: 88px;
        position: absolute;
        background: #dee2e6
    }
}

.date {
    height: 75px;
    min-width: 60px;
    margin-right: 18px
}

.date .month {
    height: 22px;
    line-height: 22px
}

.date .day {
    line-height: 53px
}

#revista {
    padding: 70px 0;
    background-image: url("../images/bg-revista.html")
}

#revista .text-gray {
    color: #888888
}

@media (max-width: 991.98px) {
    #revista {
        padding: 40px 0 70px
    }
}

@media (max-width: 575.98px) {
    #revista {
        padding: 30px 0
    }
}

.wrapper-img {
    max-width: 167px
}

.wrapper-img>img {
    width: 100%
}

.grid-convenio {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 767.98px) {
    .grid-convenio {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 575.98px) {
    .grid-convenio {
        grid-template-columns: 1fr;
        grid-gap: 5px
    }

    .grid-convenio .item-convenio {
        height: 95px
    }

    .grid-convenio .item-convenio img {
        height: 100%;
        object-fit: cover
    }
}

input[type="email"] {
    height: 44px
}

.map {
    font-family: Poppins;
    font-size: 21px;
    font-weight: 300;
    line-height: 28px;
    text-align: left;

    color: rgba(10, 71, 138, 1);

}

footer #top {
    background: #8C4E7A;

}

footer #bot select {
    min-width: 300px
}

footer .bg-cinza {
    background: #d3d8dc
}

footer #bot-mobile img {
    max-width: 100%
}

#acessorapido ul {
    padding: 0;
    list-style: none
}

#acessorapido ul li {
    line-height: 1.7
}

#acessorapido ul li:first-child {
    background: #e2e4e8;
    margin-bottom: 3px;
    letter-spacing: 2px;
    padding: 2px 6px 1px
}

.search-acesso:before {
    content: "";
    top: 12px;
    z-index: 2;
    right: 20px;
    width: 18px;
    height: 18px;
    position: absolute;
    background-repeat: no-repeat;
    background-image: url("../images/icons/icon-lupa.png")
}

#search-acesso {
    outline: 0 !important;
    padding: 10px 30px 12px 10px;
    box-shadow: 0 0 transparent !important;
    border-width: 0 0 1px 0;
    border-color: #ffc924;
    border-style: solid
}

#search-acesso::-webkit-input-placeholder {
    font-size: 16px;
    letter-spacing: 5px;
    color: #004692;
    text-transform: uppercase
}

@media (max-width: 767.98px) {
    #search-acesso::-webkit-input-placeholder {
        font-size: 14px;
        letter-spacing: normal
    }
}

#search-acesso:-ms-input-placeholder {
    font-size: 16px;
    letter-spacing: 5px;
    color: #004692;
    text-transform: uppercase
}

@media (max-width: 767.98px) {
    #search-acesso:-ms-input-placeholder {
        font-size: 14px;
        letter-spacing: normal
    }
}

#search-acesso::-moz-placeholder {
    font-size: 16px;
    letter-spacing: 5px;
    color: #004692;
    text-transform: uppercase
}

@media (max-width: 767.98px) {
    #search-acesso::-moz-placeholder {
        font-size: 14px;
        letter-spacing: normal
    }
}

#search-acesso:-moz-placeholder {
    font-size: 16px;
    letter-spacing: 5px;
    color: #004692;
    text-transform: uppercase
}

@media (max-width: 767.98px) {
    #search-acesso:-moz-placeholder {
        font-size: 14px;
        letter-spacing: normal
    }
}

@media (max-width: 991.98px) {
    #content .btn.btn-lg {
        margin: 0 auto 20px;
        width: calc(100% - 48px) !important
    }

    #revista>.container {
        padding: 0 24px
    }

    #convenio>.container,
    #revista>.container {
        margin: 0;
        width: 100%;
        max-width: 100%
    }
}

@media (max-width: 767.98px) {
    #coluna-semanal label {
        width: 100%
    }

    footer .text-primary.fz22 {
        font-size: 14px
    }
}

@media (max-width: 575.98px) {
    #revista>.container {
        padding: 0 15px
    }

    #content .btn.btn-lg {
        width: calc(100% - 14px) !important
    }
}

#inst-title {
    height: 222px;
    margin-bottom: -77px
}

@media (max-width: 991.98px) {
    #inst-content .container>.row>.col {
        background: #fff
    }
}

@media (max-width: 767.98px) {
    #inst-content .bg-dark {
        left: -15px;
        position: relative;
        width: calc(100% + 30px)
    }
}

.hold-contents {
    padding: 90px 90px 0 90px
}

@media (max-width: 1199.98px) {
    .hold-contents {
        padding: 70px 60px 0
    }
}

@media (max-width: 991.98px) {
    .hold-contents {
        padding: 40px 30px 0 30px
    }
}

@media (max-width: 575.98px) {
    .hold-contents {
        padding: 20px 0px 0 0px
    }
}

.hold-contents:not(.bg-primary) .hold-contents p {
    line-height: 2;
    margin-bottom: 50px
}

.hold-contents img {
    max-width: 100%;
    object-fit: cover
}

.hold-contents img+.image-legenda {
    opacity: 0.8;
    font-size: 14px;
    margin-top: 15px;
    color: #383838
}

.main-img,
.box-links {
    margin-left: 60px;
    margin-bottom: 50px
}

@media (max-width: 1199.98px) {

    .main-img,
    .box-links {
        margin-left: 30px;
        margin-bottom: 30px
    }
}

@media (max-width: 991.98px) {

    .main-img,
    .box-links {
        margin-left: 0px;
        margin-bottom: 0px;
        width: 100% !important
    }
}

.main-img {
    width: 450px
}

@media (max-width: 991.98px) {
    .main-img {
        margin: auto;
        display: block;
        max-width: 475px;
        padding-top: 20px
    }
}

.box-links {
    width: 375px
}

@media (max-width: 991.98px) {
    .box-links {
        margin-top: -20px;
        margin-bottom: 30px
    }
}

.box-links a {
    float: right
}

.box-links a span {
    display: block;
    line-height: 30px
}

#inst-content2 {
    background: #ced4da
}

@media (max-width: 991.98px) {
    #inst-content2>.container {
        background: #005ea1
    }
}

@media (max-width: 767.98px) {
    #inst-content2+section .bg-dark {
        left: -15px;
        position: relative;
        width: calc(100% + 30px)
    }
}

.dash-style {
    list-style: none;
    line-height: 1.7
}

@media (max-width: 991.98px) {
    .dash-style:first-of-type {
        margin-bottom: 40px
    }
}

.dash-style li {
    position: relative
}

.dash-style li::before {
    content: "";
    top: 14px;
    left: -39px;
    width: 24px;
    height: 1px;
    position: absolute;
    background: #ffc924
}

.profissional .hold-contents {
    padding: 60px 50px 40px 50px
}

@media (max-width: 991.98px) {
    .profissional .hold-contents {
        padding: 30px 0px 20px 0px
    }
}

.profissional .bg-gradient {
    background: #fff
}

@media (min-width: 576px) {
    .profissional .bg-gradient {
        background: linear-gradient(0deg, #fff 0%, #d4d8de 50%, #f3f3f3 50%, #f3f3f3 77px, transparent 77px)
    }
}

.link-grid {
    display: grid;
    grid-gap: 27px 26px;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1199.98px) {
    .link-grid {
        grid-gap: 15px 15px;
        grid-template-columns: repeat(2, 1fr)
    }
}

.link-item {
    height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-width: 1px;
    border-color: #0095c0;
    border-style: solid
}

@media (max-width: 575.98px) {
    .link-item {
        height: 125px
    }
}

.link-item .arrow {
    width: 34px;
    height: 11px;
    display: inline-block;
    background-image: url("../images/icons/arrow-blue.png")
}

.link-item:hover {
    color: #fff;
    background: #0095c0
}

.link-item:hover .arrow {
    background-image: url("../images/icons/arrow-yellow.png")
}

.link-item h4 {
    font-size: 20px
}

@media (max-width: 575.98px) {
    .link-item h4 {
        font-size: 14px
    }

    .link-item h4+span {
        font-size: 14px
    }
}

.image-grid {
    display: grid;
    grid-gap: 75px;
    grid-template-columns: repeat(4, 1fr)
}

@media (max-width: 1199.98px) {
    .image-grid {
        grid-gap: 45px;
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 767.98px) {
    .image-grid {
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr)
    }
}

.image-legenda {
    color: #c7c7c7
}

.image-nome,
.image-cargo {
    color: #888888
}

.grid-links {
    display: grid;
    grid-gap: 20px 40px;
    margin-bottom: 55px;
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 1199.98px) {
    .grid-links {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 767.98px) {
    .grid-links {
        grid-template-columns: repeat(1, 1fr)
    }
}

.link {
    color: #8C4E7A;
    font-size: 17, 5px;
    font-weight: normal;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #ffc924
}

.link+p {
    margin-bottom: 20px
}

hr {
    border: 0;
    height: 1px;
    margin: 40px 0;
    background: #367DD9
}

h3 {
    font-weight: 500;
    margin-bottom: 25px
}

.position-unset {
    position: unset
}

.accordion .card:first-child [data-toggle="collapse"] {
    border: 0
}

.accordion .card-body {
    color: #537EFF
}

.accordion [data-toggle="collapse"] {
    border: 0;
    color: #888888;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    background: transparent;
    padding: 20px 40px 15px 0;
    border-top: 1px solid #ffc924
}

.accordion [data-toggle="collapse"]:focus {
    outline: 0
}

.accordion [data-toggle="collapse"]::before {
    content: "";
    right: 0;
    top: 50%;
    width: 17px;
    height: 9px;
    position: absolute;
    transform: translateY(-50%);
    background-image: url(../images/icons/arrow-db.png)
}

.video-slide-main-item iframe {
    background: #005ea1
}

@media (max-width: 575.98px) {
    .video-slide-nav {
        padding: 0 15px
    }
}

.video-slide-nav .slick-list {
    margin: 0 -10px
}

.video-slide-nav-item {
    margin: 0 7px
}

.video-slide-nav-item:focus {
    outline: 0
}

.video-slide-nav-item img {
    height: 120px;
    background: #005ea1
}

.video-slide-nav-item.slick-current img {
    border: 2.5px solid #ffc924
}

.video-slide-nav-item.slick-current h3 {
    font-weight: bold
}

.video-slide-nav-item.slick-current h3::before {
    content: "";
    width: 13px;
    height: 15px;
    margin-right: 8px;
    display: inline-block;
    background-image: url(../images/icons/play.png)
}

.video-slide-nav .slick-arrow {
    top: 65px;
    width: 19px;
    height: 26px
}

.video-slide-nav .slick-arrow.slick-prev {
    left: -40px
}

.video-slide-nav .slick-arrow.slick-prev::before {
    transform: rotateZ(90deg)
}

.video-slide-nav .slick-arrow.slick-next {
    right: -40px
}

.video-slide-nav .slick-arrow.slick-next::before {
    transform: rotateZ(-90deg)
}

.video-slide-nav .slick-arrow::before {
    content: "";
    opacity: 1;
    width: 24px;
    height: 13px;
    display: block;
    background-repeat: no-repeat;
    background-image: url(../images/icons/arrow-db.png)
}

@media (max-width: 767.98px) {
    .video-slide-nav .slick-arrow.slick-prev {
        left: -19px
    }

    .video-slide-nav .slick-arrow.slick-next {
        right: -15px
    }
}

@media (max-width: 1199.98px) {
    .contato h3 {
        margin: 0
    }
}

.btn.bg-white.letterspace {
    color: #383838
}

a h3 {
    color: #383838;
}

a h4 {
    color: #383838;
}

.legendaNoticias,
.noticia-interna-responsiva h3 p .img p {
    font-style: italic;
    text-align: center;
    font-size: 12px;
    background-color: #f1f1f1;
}

p {
    margin-bottom: 1.5em !important;
}

.lista-noticias {
    color: #383838 !important
}

.lista-noticias a {
    color: #383838 !important;
    font-weight: bold;
}

.lista-noticias:hover a:hover {
    text-decoration: underline !important;
    color: #919191 !important;
}

.hr-lista-noticia {
    background: lightskyblue !important
}

.imagem-noticia-responsiva,
.noticia-interna-responsiva h3 p .img img,
.noticia-interna-responsiva h3 p img {
    width: 100% !important;
    height: auto !important;
    text-align: center !important;
}

main header div div h2 {
    margin-bottom: 3em !important;
    height: 100% !important;
}

main header div div div h2 {
    margin-bottom: 3em !important;
    height: 100% !important;
}

.menu-principal .text-white {
    font-weight: normal !important;
    color: #fff !important;
}

.menu-principal .menuhover .container .row .col-12 .title {
    color: #fff
}

.menuhover .text-white .container .row .row .text-white h3 {
    color: #fff !important
}

.data-noticia {
    margin-top: 2em;
}

.home-button-blue {
    background: linear-gradient(90deg, #8C4E7A 0%, #8C4E7A 100%); 
    height: 65px;
    margin-top: 0.1em;
    width: 100%;
    padding-left: 2em;
}

.home-letters-buttons-blue {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    padding-left: 1em;
}

.home-button-orange {
    background: linear-gradient(90deg, #fff 100%, #fff 70%);
    height: 130px;
    padding-left: 2em;
}

.home-letters-buttons-orange {
    font-family: Poppins;
    font-size: 23px;
    font-weight: 700;
    line-height: 35px;
    text-align: left;
    color: #8C4E7A;
    padding-left: 1em;
}

.home-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.home-list a {
    padding: 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #8C4E7A !important;

}

.home-list li {
    margin-bottom: 0.5em;
    background-color: #F4F4F4;

    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 25px;
}

.description-h2 {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #666666;
}

.style-events {
    width: 70px !important;
    height: 78px;
    top: 1379px;
    left: 135px;
    gap: 0px;
    border-radius: 10px;
    background: linear-gradient(90deg, #06366A 0%, #8C4E7A 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-events {
    font-family: Poppins;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    color: #8C4E7A;
}

.day-event {
    font-family: Poppins;
    font-size: 1.875em;
    font-weight: 900;
    line-height: 39px;
    text-align: center;
    color: #FFFFFF;
}

.month-event {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #FFFFFF;
}

.home-list li {
    margin-bottom: 10px;
    background-color: #F4F4F4;
    transition: background-color 0.3s ease;

}

.home-list li:hover {
    background-color: #E0E0E0;

}

.home-list li {
    margin-bottom: 10px;
    background-color: #F4F4F4;
    transition: background-color 0.3s ease, transform 0.3s ease;

}

.home-list li:hover {
    background-color: #E0E0E0;

    transform: scale(1.05);

}

.btn-home {
    border: 1px solid #8C4E7A;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    display: block;
    height: 40px;
    margin: 70px auto 0;
    width: 270px;
    width: 270px;
    border-radius: 10px;
    background: transparent;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
}

.btn-home:hover {
    background: #8C4E7A;
    border: 1px solid transparent;
    color: #FFFFFF;
}

.bg-blue {
    height: 303px;
    background: linear-gradient(90deg, #06366A 0%, #8C4E7A 100%);
}

.fz48 {
    font-family: Poppins;
    font-size: 48px;
    font-weight: 600;
    line-height: 72px !important;
    text-align: left;
	color: #8C4E7A;


}

.fz48:before {
    background: #fd7e14
}

.fz48:before {
    content: "";
    position: absolute;
    background: #8C4E7A;
    width: 70px;
    height: 5px;
    border-radius: 10px 10px 10px 10px;
    margin-top: 5px;
	

}

.camara-especializada {
    font-family: Poppins;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #ffff
}

.camara-especializada-desc {
    font-family: Poppins;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 40px;
    text-align: left;
    color: #ffff
}

.revista-atual {
    height: 198px;
}

.btn-grey {
    border: 1px solid #666666;
    color: #666666;
}

.btn-grey:hover {
    background: #666666;
    border: 1px solid transparent;
    color: #FFFFFF;
}

.sociais-footer {
    background: #8C4E7A;
    height: 80px;
    width: 100%;
}

.letters-14-footer {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #FFFFFF;
}

.letters-21-bold-footer {
    font-family: Poppins;
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carrousel-image {
    width: 478px;
    height: 208px;
    max-width: 478px;
    max-height: 208px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

.border-footer {
    border: 1px solid #8C4E7A;
    justify-content: space-evenly;
}

footer {
    position: relative;
}

.header-noticias {
    top: 178px;
    gap: 0px;
    opacity: 0px;
    background: #8C4E7A;
}

.header-noticias {
    display: flex;
    align-items: center;
    place-content: center;
    background: #8C4E7A;

}

.header-noticias img {
    width: 100%;
    height: auto;

    object-fit: cover;

    mix-blend-mode: hard-light;
}

.header-noticias .noticia {
    position: absolute;
    color: white;

    z-index: 1;

    font-family: Poppins;
    font-size: 3em;
    font-weight: 700;
    line-height: 72px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.go-to-top {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #CB9F00;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    transition: background-color 0.3s;
}

.block:hover img {
    transition: transform 0.3s ease;
    transform: scale(1.1);

}

.go-to-top:hover {
    background-color: #0056b3;
}

.fade-in:hover {
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.left-column {
    grid-column: 1 / 2;
    grid-row: 1 / 3;

    background-color: #f0f0f0;
    overflow: hidden;

    width: 670px;
    height: 576px;
    border-radius: 20px 20px 20px 20px;
    opacity: 0px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

}

.left-column img {
    max-height: initial;
    object-fit: fill;
    min-width: 100%;
    height: auto;
}

.left-column div {
    position: absolute;
    top: 403px;
    background: rgba(255, 255, 255, 1);
    max-width: 670px;

    height: 173px;
    align-content: center;
    padding: 25px;

    gap: 0px;
    border-radius: 20px;
    opacity: 0px;
}

.bottom-right div,
.top-right div {
    position: absolute;
    top: 141px;
    background: rgba(255, 255, 255, 1);
    max-width: 670px;

    height: 149px;
    align-content: center;
    padding: 20px;

    gap: 0px;
    border-radius: 0px 20px 0px 0px;
    opacity: 0px;
}

.right-column {

}

.top-right {

    overflow: hidden;
    width: 469px;
    height: 273px;
    grid-column: 2 / 3;
    position: relative;
    grid-row: 1 / 2;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

}

.grid-container {
    display: grid;
    grid-gap: 20px;
    position: relative;
}

.bottom-right {

    overflow: hidden;
    position: relative;
    width: 469px;
    height: 273px;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

}

.bottom-right img {

    max-height: initial;
    object-fit: fill;
    min-width: 100%;
    height: auto;
}

.top-right img {
    max-height: initial;
    object-fit: fill;
    min-width: 100%;
    height: auto;
}

.top-right span,
.bottom-right span {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: rgba(10, 71, 138, 1);

}

.left-column span {

    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: rgba(10, 71, 138, 1);

}

.home-button-orange,
.home-button-blue {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-button-orange:hover,
.home-button-blue:hover {
    transform: scale(1.02);
    box-shadow: ease 0 0 15px rgba(255, 255, 255, 0.4);

}

.post-image {
    transition: transform 0.3s ease;
}

.post:hover .post-image {
    transform: scale(1.1);

}

.style-events-animation {
    transition: transform 0.3s, box-shadow 0.3s;

    border-radius: 4px;

}

.style-events-animation:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 25px 10px rgba(0.1, 0.1, 0.1, 0.1);
    cursor: pointer;
}

.animation-revista {
    transition: transform 0.3s ease;

}

.animation-revista:hover {
    transform: translateY(-10px);

}

header .submenu {
    background: #F4F4F4;
    left: 0;
    padding: 2.77778vw 0;
    position: absolute;

    overflow: hidden;
    top: -6550%;
    transition: all .5s ease-in-out;
    width: 100%;
    z-index: 1
}

.main-header {
    position: relative;
    z-index: 10;
}

.menu {
    background: #fff;
    border-bottom: 1px solid #f3f3f6;

    justify-content: center;
    position: relative;
    transition: top .2s ease-in-out;
    width: 100%;
    z-index: 2;
}

.links-home {
    margin: 7px;
    top: 2px;
    position: relative;
}

.main-header .menu {
    background: #fff;
    border-bottom: 1px solid #f3f3f6;
    justify-content: center;
    position: relative;
    transition: top .2s ease-in-out;
    width: 100%;
    z-index: 2
}

.menu nav ul li {
    float: left;
    line-height: 50px;
    position: relative;
}

.menu nav ul {
    list-style: none !important;
}

header .submenu .title-submenu .back-link {
    display: none
}

header .submenu .title-submenu {
    display: table-cell;
    padding: .69444vw 0vw 3.47222vw 0;
    vertical-align: middle;
}

header .submenu .content-submenu {
    border-left: 1px solid #f3f3f6;
    display: table-cell;
    padding-left: .69444vw;
    vertical-align: top;
}

.highlight {
    font-size: 1.11111vw;
    font-weight: 500;
    border-bottom: 2px solid #8C4E7A75;
    margin-bottom: 2px;
}

header .submenu .content-submenu nav ul li a {
    color: #fff;
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
}

.title-submenu h2 a {
    color: #8C4E7A;
    display: block;
    font-size: 1.2778vw;
    font-stretch: normal;
    font-style: normal;
    font-weight: 800;
    letter-spacing: normal;
    line-height: normal;
    margin-bottom: .69444vw;
    max-width: 250px;
    min-width: 10.20833vw;
    padding-right: 15px;
}

.menu nav ul li:before {
    bottom: -.27778vw;
    content: "";
    display: block;
    height: .27778vw;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: all .15s ease-in-out;
    width: 0;
}

.main-header .menu nav ul li.dropdown:hover:before {
    width: 100%;
}

.menu nav ul li:hover:before {
    background: #8C4E7A;
}

header .submenu .title-submenu img {
    display: block;
    height: 5.69444vw;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    header .submenu {
        height: calc(100vh - 70px);
        left: -100%;
        overflow-y: auto;
        padding-top: 0;
        top: 14.66667vw;
        width: 90%;
        z-index: 5;
    }

    .navbar-navigation {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    main {
        padding-top: 130px;
    }
}

@media screen and (max-width: 992px) {
    .main-header.active-menu {
        height: 100% !important;
    }
}

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

    .main-header {
        display: flex;
        flex-direction: column-reverse;
        height: 18.66667vw !important;
        position: fixed;
        top: 0;
        transition: height .2s ease-in-out;
        width: 100%;
    }
}

.main-header .top-header-mobile {
    background: #fff;
    display: none;
    height: 10.66667vw;
    left: 0;
    padding: 3.33333vw;
    padding-bottom: 9.33333vw;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
}

.main-header .top-header-mobile .trigger-menu {
    background: none;
    border: none;
    float: left;
    outline: none
}

.close {
    color: #000;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: .5;
    text-shadow: 0 1px 0 #fff;
}

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

    header .submenu.show-menu {

        overflow-y: scroll;

    }

    header .submenu.show-menu::-webkit-scrollbar {
        width: 6px;

    }

    header .submenu.show-menu::-webkit-scrollbar-track {
        background: #f1f1f1;

    }

    header .submenu.show-menu::-webkit-scrollbar-thumb {
        background: #8C4E7A;

        border-radius: 10px;

    }

    header .submenu.show-menu::-webkit-scrollbar-thumb:hover {
        background: #8C4E7A;

    }

    header .submenu.show-menu {
        scrollbar-width: thin;

        scrollbar-color: #8C4E7A #f1f1f1;

    }

    header .submenu.show-menu {
        left: 0;
    }
}

.main-header .top-header-mobile .trigger-search {
    background: none;
    border: none;
    float: right;
    outline: none;
}

.top-header-mobile .logo {
    display: block;
    float: left;
    height: 7.13333vw;
    margin-left: 10.66667vw;
}

.main-header .top-header-mobile .trigger-menu.active .close {
    display: block
}

.main-header .top-header-mobile .trigger-menu .close,
.main-header .top-header-mobile .trigger-menu.active .burger {
    display: none
}

.main-header .top-header-mobile .trigger-menu .burger {
    display: block
}

.main-header .top-header-mobile .trigger-search .close,
.main-header .top-header-mobile .trigger-search.active .search-menu {
    display: none
}

.main-header .top-header-mobile .trigger-search.active .close {
    display: block
}

a span.letters-14-footer:hover {
    text-decoration: underline;
}

.menu-social {
    float: left;
    width: 65%;
}

.logo-footer {
    border-left: 1px solid #8C4E7A;
    float: left;
    padding: 19px 0 19px 49px;
    width: 35%;
}

.menu-social .social-item {
    background: transparent;
    border-left: 1px solid #8C4E7A;
    float: left;
    height: 80px;
    position: relative;
    transition: all .2s ease-in-out;
    width: 25%;
}

.last-section {
    width: 570px;
    height: 332px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    max-width: 570px;
    max-height: 332px;
    overflow: hidden;
    border-radius: 10px 10px 10px 0px;
    position: relative;
}

.last-section span {
    font-family: Poppins;
    font-size: 19px;
    font-weight: 900;
    line-height: 40px;
    text-align: left;
    color: rgba(10, 71, 138, 1);

}

.last-section a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last-section div {
    position: absolute;
    top: 216px;
    background: rgba(255, 255, 255, 1);
    width: 270px;
    height: 116px;
    align-content: center;
    padding: 25px;

    gap: 0px;
    border-radius: 0px 20px 0px 0px;
    opacity: 0px;
}

.social-item:hover {
    background: #0C6AD0;
}

.logo-footer span {
    padding: 0 2vw;
}

.menu-social .social-item:last-of-type {
    border-right: 1px solid #0C6AD0;
}

.social-item svg {
    left: 50%;
    max-width: 27px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.header {

    height: 20vw;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.img figure img,
.video figure img {
    height: 120px;
}

.block .img {
    background-position: 50%;
    background-size: cover;
    height: 120px;
    width: 15%;
}

.img {
    overflow: hidden;
}

.block .img img {
    height: 100%;
    width: auto;
    min-width: 100%;
}

.block span {
    color: #0C6AD0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 15%;
}

.block {
    background-color: #fff;
    margin-bottom: 2px;
}

.block .text {
    color: #212529;
    font-size: 18px;
    line-height: 1.67;
    overflow: hidden;
    padding-left: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 70%;
}

.header:before {
    background: #000;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: .4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

figure {
    margin: 0 0 1rem;
}

.header h1 {
    color: #fff;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1.07;
    position: relative;
    text-align: center;
    z-index: 3;
}

.header h1 b {
    display: block;
}

.header figure img {
    height: auto;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}

.breadcrumb {
    border-radius: 0;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #e9ecef;
    border-radius: .25rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.bg-grey {

    background-color: #e9ecef;

}

.breadcrumb .breadcrumb-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    line-height: 0;
    margin: 5px 0;
    padding-left: 0;
}

.breadcrumb .breadcrumb-item a {
    color: #4a4a4a;
}

.breadcrumb .breadcrumb-item.active {
    color: #8C4E7A;
}

.breadcrumb .breadcrumb-item {
    height: auto !important;
    line-height: 1.2 !important;
}

.breadcrumb .breadcrumb-item:not(:last-child) {
    padding-right: 10px;
}

.breadcrumb .breadcrumb-item:not(:last-child):after {
    content: url(../../../../../../assets/images/breadcrumps-arrow-icon-small.html);
    padding-left: 10px;
}

@media screen and (min-width: 1921px) {
    .container.align-left {
        padding-left: 0;
    }
}

@media screen and (max-width: 1366px) {
    header .submenu .title-submenu {
        padding-right: 2.43056vw;
        border-right: 2px solid #8C4E7A;
        padding-left: 16px;
    }
}

@media screen and (max-width: 992px) {
    .container-lg.align-left {
        padding: 0 0 0 70px;
    }

    .main-header .top-header-mobile {
        display: block;
    }
}

@media screen and (max-width: 1366px) {
    header .submenu .content-submenu {
        padding-left: 2.43056vw;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu {
        display: inline-block;

    }

    header .submenu .content-submenu {
        display: inline-block;

    }

    .main-header .container-lg {
        padding: 0 8vw;
    }
}

@media screen and (max-width: 992px) {
    .main-header .menu nav ul li a {
        font-size: 4.26667vw;
        letter-spacing: .18667vw;
    }
}

@media screen and (max-width: 992px) {
    .main-header .menu nav ul li {
        float: none;
        line-height: auto;
        margin-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .title::after {

        content: none;
        display: none;

    }

    .main-header .menu nav ul li:after {
        cursor: pointer;
        background: url(../images/plus.svg);
        background-size: 100%;
        content: "";
        display: block;
        height: 4.02667vw;
        position: absolute;
        right: 8vw;
        top: 50%;
        transform: translateY(-50%);
        width: 3.86667vw;
    }
}

@media screen and (max-width: 992px) {
    .main-header .menu.show-menu {
        height: 100%;
        left: 0;
        z-index: 1;
    }
}

@media screen and (max-width: 992px) {
    .main-header .menu {
        border-bottom: 1px solid #fff;
        height: auto;
        left: -100%;
        top: 12.66667vw;
        transition: all .2s ease-in-out;
        width: 90%;
        z-index: 4;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu img {
        display: none;
    }

    header .submenu .title-submenu a,
    header .submenu .title-submenu h2 {
        color: #fff;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .content-submenu nav ul li.highlight {
        margin-top: 8vw;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu .back-link {
        color: #fff;
        display: block;
        font-size: 3.2vw;
        font-stretch: normal;
        font-style: normal;
        font-weight: 500;
        letter-spacing: .6px;
        line-height: normal;
        margin-bottom: 5.33333vw;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu .back-link button {
        background: rgba(0, 0, 0, .1);
        border: 0;
        border-radius: 4px;
        color: #fff;
        padding: 7px 7px 7px 6.66667vw;
        position: relative;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu {
        padding: 4vw 5.33333vw 5.33333vw 8vw;
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu {
        background: #0C6AD0;
    }
}

@media (min-width: 1199.98px) {
    .container {
        max-width: 1440px;
    }

}

@media (min-width: 1370px) {
    .div-banner {
        max-width: 1035px;
    }

}

@media (max-width: 1199.98px) {

    .img-banner-home {
        width: 665px;
        height: 265px;
    }

    .grid-posts {
        display: grid;
        grid-gap: 40px;
        grid-template-columns: repeat(2, 2fr);
    }

    .home-letters-buttons-orange {
        font-size: 20px;
    }

    .home-letters-buttons-blue {
        font-size: 15px;
    }

    .fz48 {
        font-size: 42px;
        line-height: 70px;
    }

    aside .next-events::before {
        background: transparent;
    }

    .description-h2 {
        font-size: 17px;
        line-height: 20px;
    }

    .day-event {
        font-size: 1.275em;
        line-height: 10px;
    }

    .month-event {
        font-size: 15px;
    }

    .title-events {
        font-size: 17px;
    }

    .grid-posts .post {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        width: 300px;
        height: 280px;
    }

    .post-title a h3 {
        font-size: 20px;
        line-height: 21px;
    }

    .home-list a {
        font-size: 14px;

        line-height: 17px;
    }

    .camara-especializada {
        font-size: 20px;
        line-height: 25px;
    }

    .camara-especializada-desc {
        font-size: 14px;
        line-height: 30px;
    }

    .home-button-orange {
        height: 104px;
        padding-left: 2em;
    }

    .home-button-blue {
        background: linear-gradient(90deg, #06366A 0%, #0C6AD0 100%);
        height: 50px;
        margin-top: 0.24em;
        width: 100%;
        padding-left: 2em;
    }
}

header .submenu .content-submenu {
    border-left: 1px solid #f3f3f6;
    display: table-cell;
    padding-left: .69444vw;
    vertical-align: top
}

@media screen and (max-width:1366px) {
    header .submenu .content-submenu {
        padding-left: 2.43056vw
    }
}

@media screen and (max-width:992px) {
    header .submenu .content-submenu {
        border-left: 0;
        padding: 8vw
    }
}

header .submenu .content-submenu nav ul {
    display: inline-block;
    list-style: none;
    vertical-align: top
}

header .submenu .content-submenu nav ul:not(:last-child) {
    padding-right: 0.43056vw;
    padding-left: 30px;
}

header .submenu .content-submenu nav ul {
    padding-right: 0.43056vw;
    padding-left: 30px;
}

@media screen and (min-width: 1921px) {
    header .submenu {
        top: -6550%;
    }
}

@media screen and (max-width:992px) {
    header .submenu .content-submenu nav ul {
        padding-right: 0
    }
}

header .submenu .content-submenu nav ul li {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    color: #8C4E7A;
}

@media screen and (max-width:992px) {
    header .submenu .content-submenu nav ul li {
        margin-top: 4vw
    }
}

header .submenu .content-submenu nav ul li.highlight a {
    font-size: 1.11111vw;
    font-weight: 500
}

header .submenu .content-submenu nav ul li a {
    color: #666666;
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 200;
    letter-spacing: normal;
    line-height: normal
}

.highlight-title {
    font-family: Poppins !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 25px !important;
    text-align: left !important;
    color: #8C4E7A !important;
}

@media screen and (max-width:992px) {
    header .submenu .content-submenu nav ul li a {
        font-size: 3.4vw
    }
}

.highlight a {
    font-size: 1.11111vw;
    font-weight: 700
}

@media (max-width: 992px) {

    header .submenu .title-submenu h2,
    header .submenu .title-submenu h2 a {
        font-size: 5.86667vw;
        margin-bottom: 2.66667vw;
        min-width: 39.2vw;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu .back-link button::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;

        content: "\f104";

        display: inline-block;
        position: absolute;
        left: 1.33333vw;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3.2vw;
        color: white;

    }
}

@media screen and (max-width:992px) {
    .highlight {
        font-size: 5.33333vw
    }

    header .submenu .content-submenu nav ul li.highlight {
        margin-top: 8vw
    }
}

@media screen and (max-width:992px) {
    .box-acessibility .back-link {
        color: #fff;
        display: block;
        font-size: 16px;
        font-stretch: normal;
        font-style: normal;
        font-weight: 500;
        letter-spacing: .6px;
        line-height: normal;
        margin-bottom: 20px
    }

    .box-acessibility .back-link button {
        background: none;
        border: 0;
        border-radius: 4px;
        color: #000;
        padding: 7px 7px 7px 25px;
        position: relative
    }

    .box-acessibility .back-link button:before {
        background: url(../../../../../../../img/frontend/header/arrow-right-black.html);
        background-size: 100%;
        content: "";
        display: inline-block;
        height: 12px;
        left: 5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        width: 14px
    }
}

@media screen and (max-width: 992px) {
    header .submenu .title-submenu {
        padding: 4vw 5.33333vw 5.33333vw 8vw;
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    header .submenu .content-submenu nav ul li.highlight a {
        font-size: 5.33333vw;
    }
}

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

}

@media (max-width: 991.5px) {

    .block .img {
        background-position: 50%;
        background-size: cover;
        height: 120px;
        width: 40%;
    }

    .block span {
        color: #0C6AD0;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        width: 30%;
    }

    .block .text {
        color: #212529;
        font-size: 18px;
        line-height: 1.67;
        overflow: hidden;
        padding-left: 40px;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 30%;
    }

    .menu-social {
        width: 100%;
    }

    .presidente {
        width: 30%;
    }

    .letters-21-bold-footer {
        font-size: 19px;
    }

    .letters-14-footer {
        font-size: 12px;
    }

    .container-lg {
        max-width: 800px;
    }

    .img-banner-home {
        width: 2200px;
        height: 241px;
    }

    .grid-posts {
        display: grid;
        grid-gap: 26px;
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-posts .post {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        width: 240px;
        height: 280px;
    }

    #events {
        width: 100%;
    }

    .container {
        max-width: 1000px;
    }

    .camara-especializada {
        font-size: 20px;
        line-height: 25px;
    }

    .camara-especializada-desc {
        font-size: 14px;
        line-height: 30px;
    }

    .home-button-orange,
    .home-button-blue {
        flex-basis: 100%;
    }

    .home-button-orange,
    .home-button-blue {
        width: 100%;
    }

    .home-button-blue img,
    .home-button-orange img {
        width: 70%;
    }

    .home-button-orange {
        height: 80px;
    }

    .home-button-blue {
        height: 50px;

    }

    .home-button-orange,
    .home-button-blue,
    .home-button-blue div,
    .home-button-orange div {
        text-align: center;
        flex-direction: row !important;

    }

    img {
        max-width: 100%;

        height: auto;

    }

}

@media (max-width: 850px) {
    main {
        padding-top: 100px;
    }

    .container-lg {
        max-width: 800px;
        padding-right: 30px !important;
        padding-left: 30px !important;
    }
}

@media (max-width: 850px) {
    .bg-blue {
        background: #0C6AD0;
    }

    .carrousel-image {
        max-width: 100%;
    }

    .img-banner-home {
        height: 100%;
    }

    .col-850-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .flex-850-column {
        flex-direction: column !important;
    }

    .border-footer {
        border: 0px solid #0C6AD0;
        justify-content: center;
    }

    .grid-posts {
        display: grid;
        grid-gap: 26px;
        grid-template-columns: repeat(2, 2fr);
    }

}

@media (max-width: 575.98px) {

    .flip-cards {
        padding-right: 0.2%;
        padding-left: 0.2%;
    }

    .bg-blue {
        height: 320px;
        background: #0C6AD0;
    }

    .carrousel-image {
        max-width: 100%;
    }

    .header {
        height: 20vw;

    }

    .last-section div {
        position: absolute;
        top: 53%;
        padding: 25px;
    }

    .last-section span {
        font-family: Poppins;
        font-size: 17px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
        color: rgba(10, 71, 138, 1);
    }

    main {
        padding-top: 70px;
    }

    .home-letters-buttons-orange {
        padding: 0 !important;
    }

    .btn-home {

        font-size: 16px;

        width: 231px;

        font-size: 12px;
        font-weight: 400;
        line-height: 21px;

    }

    .border-footer {
        border: 0px solid #0C6AD0;
    }

    .presidente {
        width: 50%;
    }

    .img-banner-home {
        width: 100%;
        height: 100%;
    }

    .ads {
        text-align: center;
    }

    .grid-posts {
        display: grid;
        grid-gap: 26px;
        grid-template-columns: repeat(1, 3fr);
    }

    .flex-xs-column-reverse {
        flex-direction: column-reverse !important;
    }

    .revista-atual {
        height: auto;
    }

    .flex-xs-columm {
        flex-direction: column !important;
    }

    .flex-xs-row {
        flex-direction: row !important;
    }

    .mb-xs-3 {
        margin-bottom: .5rem !important
    }

    .home-button-orange,
    .home-button-blue {
        flex-basis: 100%;
    }

    .home-button-orange,
    .home-button-blue {
        width: 100%;
    }

    .home-button-blue img,
    .home-button-orange img {
        width: 70%;
    }

    .home-button-orange {
        height: 80px;
    }

    .home-button-blue {
        height: 50px;
    }

    .home-letters-buttons-orange {
        line-height: 65px;
        font-size: 20px;
    }

    .home-letters-buttons-blue {
        line-height: 35px;
        font-size: 15px;
    }

    .home-button-orange,
    .home-button-blue,
    .home-button-blue div,
    .home-button-orange div {
        text-align: center;
        flex-direction: row !important;

    }

    img {
        max-width: 100%;

        height: auto;

    }

    .w-70 {
        margin-left: 0;

        width: 100%;

    }

    .fz48 {
        font-size: 24px;
        line-height: 70px;
    }

    aside .next-events::before {
        background: transparent;
    }

    .description-h2 {
        font-size: 13px;
        line-height: 20px;
        margin-top: -30px;
    }

    .style-events {
        width: 56px !important;
        height: 64px;
    }

    .day-event {
        font-size: 1.275em;
        line-height: 10px;
    }

    .month-event {
        font-size: 12px;
    }

    .title-events {
        font-size: 15px;
    }

    .d-xs-flex {
        display: flex;
    }

    .align-items-xs-center {
        align-items: center
    }

    .grid-events {
        grid-gap: 10px;
        align-items: flex-start;
    }

    .container-lg {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .w-xs-fit {
        width: fit-content;
    }

    .grid-posts .post {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        width: 300px;
        height: 280px;
    }

    .post-title a h3 {
        font-size: 15px;
        line-height: 21px;
    }

    .home-list a {
        font-size: 14px;

        line-height: 17px;
    }

    .camara-especializada {
        font-size: 20px;
        line-height: 25px;
    }

    .camara-especializada-desc {
        font-size: 14px;
        line-height: 30px;
    }

    .last-section {
        width: 395px;
        height: 222px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
        max-width: 570px;
        max-height: 332px;
        overflow: hidden;
        border-radius: 10px 10px 10px 0px;
        position: relative;
        margin-bottom: 14px;
    }

    .navbar-navigation {
        display: none;
    }

}

@media (min-width: 576px) {
    .p-22-sm {
        padding-left: 22px !important;
    }
}

.menu-topo {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;

}

.menu-topo li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-topo ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.menu-topo .menu-item {
    margin: 0;
    padding: 0;
}

.menu-topo a {
    font-size: 12px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.menu-topo a:hover {
    color: #bdbdbd;
}

.menu-topo a:hover {
    text-decoration: underline;
}

.custom-menu-footer {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.custom-menu-footer li {
    list-style: none;
    padding-bottom: 12px;

}

.custom-menu-footer a {
    text-decoration: none;
    color: #ffffff;
}

.custom-menu-footer a span.letters-14-footer {
    font-size: 14px;
}

.home-carrousel {
    height: 100% !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}

.slick-dots {
    width: 50% !important;
    text-align: right !important;
    bottom: 15% !important;
    margin-right: 5% !important;
}

.fz08 {
    font-size: 08px;
}

.post {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 74, 138, 0) 53.51%, #8C4E7A 95%);
    opacity: 0.9;

    z-index: 1;

    border-radius: 10px
}

#menu-servicos {
    z-index: 11;
    height: 60px;
    background: #363636;
}

.youtube {
    position: relative;
    display: inline-block;
}

.youtube:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent url(img/icones/play1.html) center center no-repeat;
    background-size: 15%;
}

#inst-content {
    background: #e9ecef;
}

.intern-page-content {
    background: white;
    padding: 0 5% 2% 5%;
    border-radius: 0.5%;
}

.menu-topo li {
    display: inline;
}

.menu-topo li:not(:last-child)::after {
    content: " | ";
    color: #FFFFFF;
    margin: 0 8px;

}

.accordion-container {
    border: 1px solid #999;
}

.accordion-container [data-toggle=collapse] {
    border-bottom: 1px solid #bbb;
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    background-color: #e8e8e8;

    color: #094c8c;
    font-weight: 700;
    padding: 10px 50px 10px 25px;
    font-size: 1.14rem;
    position: relative;
}

.collapse:not(.show) {
    display: none;
}

.page-numbers {
    background: #8C4E7A;
    color: white;
    padding: 15px;
    border-radius: 4px;
}

.page-numbers:hover {
    background: #8C4E7A;
    color: white;
    padding: 15px;
    border-radius: 4px;
}

.page-numbers.current,

.page-numbers[aria-current="page"] {
    background: #8C4E7A;

    color: white;
}

.header-single {
    height: 13vw;
    overflow: hidden;
    position: relative;
    background: #09519e;
    width: 100%;
}

.header-single h1 {
    color: #fff;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1.07;
    position: relative;

    z-index: 3;
    
}

.header-single h1 {
    color: #fff;
    font-size: 2vw;
    font-weight: 800;
    line-height: 1.07;
    position: relative;
    z-index: 3;
    text-align: center;
}

.header-single h1 b {
    display: block;
}

.header-single figure img {
    height: auto;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}

.searchform {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.searchform input[type="text"] {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #5f5f5f;
    border-radius: 5px;
    max-width: 400px;
    outline: none;
    transition: border-color 0.3s ease;
}

.searchform input[type="text"]:focus {
    border-color: #007bff;

    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.searchform input[type="submit"] {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5pxpx;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.searchform input[type="submit"]:hover {
    background-color: #007bff;

}

.searchform input[type="submit"]:focus {
    outline: none;
}

.searchform .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.botao {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #0056b3;

    color: white;
    border: 2px solid #0056b3;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.botao:hover {
    background-color: #007bff;

    color: #fff;
    transform: scale(1.05);

}

.botao:focus {
    outline: none;

    box-shadow: 0 0 5px rgba(0, 123, 255, 0.7);

}

.botao:active {
    transform: scale(0.98);

}

.result-item {
    display: flex;
    align-items: flex-start;

    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.result-title-container {
    display: flex;
    flex-direction: column;

    width: 75%;

}

.result-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.result-title a {
    text-decoration: none;
    color: #007bff;
}

.result-title a:hover {
    color: #0056b3;
}

.result-excerpt {
    font-size: 1em;
    margin-top: 10px;
}

.botao-ler-mais {
    font-size: 0.9em;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.botao-ler-mais:hover {
    background-color: #0056b3;
}

.pagination .screen-reader-text {
    display: none;
}

.contraste {
    filter: invert(1) hue-rotate(180deg);
    background-color: black;
    color: white;
}

.diretoria-container {
    margin-top: 50px;
}

.diretoria-item {
    width: 300px;
    height: 100px;
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
}

.diretoria-item-left {
    width: 90px;
    float: left;
}

.diretoria-item-right {
    width: 190px;
    float: left;
    margin-left: 15px;
    margin-top: 11px;
}

.diretoria-linha1 {
    font-size: 12px;
    font-style: italic;
    font-family: Poppins, sans-serif;
    color: #6f7070;
    margin-bottom: 2px;
}

.diretoria-linha2 {
    font-size: 20px;
    font-family: Poppins, Arial;
    font-weight: bold;
    color: #8C4E7A;
    margin-bottom: 3px;
}

.diretoria-linha3 {
    font-size: 12px;
    font-family: Poppins, sans-serif;
    color: #6f7070;
    margin-bottom: 2px;
}

.diretoria-linha4 {
    font-size: 12px;
    font-family: Poppins, sans-serif;
    color: #6f7070;
}

.diretoria-nome-grupo {
    font-size: 12px;
    font-family: Poppins, sans-serif;
    color: #6f7070;
    margin-bottom: 15px;

}

.hold-contents {
    padding: 9px 90px 0 90px;
}

.botaoFiltrar {
    background-color: #005ea1;
    height: 36px;
    color: white;
    border: solid #005ea1;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-radius: 4px;
}

.botaoFiltrar:hover {
    cursor: pointer;
    background-color: #003D7D;
    border: solid #003D7D;
}

.vacancy-item {
    border: 1px solid #005ea1;
    padding: 15px 10px 0px;
    font-size: smaller;
    border-radius: 7px;
    margin-bottom: 5px;
    line-height: 5px;
}

.vacancy-title {
    color: #8C4E7A;
    font-weight: 800;
    cursor: pointer;
}

.breadcrumb-separator {
    margin-right: 15px;
}

.icon-sidebar {
    font-size: 20px
}

.flip-card {
    background-color: transparent;
    width: 174px;
    height: 158px;
    perspective: 1000px;
    margin-bottom: 15px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.flip-card-front {
    background-color: #f4f4f4;
    color: black;
    border-radius: 10px
}

.flip-card-back {
    background-color: #8C4E7A;
    color: white;
    border-radius: 10px;
    transform: rotateY(180deg);

}

.flip-card-back button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;

}

.flip-card-back button:hover {
    background-color: #f4f4f4;
    border-radius: 10px
}

.btn-submit {
    color: #252855;
    background: #ffff;
    padding: 15px;
    border-radius: 5px;
}

.icons-header {
    color: #8C4E7A;
    font-weight: 800;
    font-size: 32px;
    margin-top: 9px;
    margin-bottom: 10px;
}

.flip-card-front h1 {
    color: #8C4E7A;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    padding: 3px;
}

@media (max-width: 768px) {
    .home-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        list-style: none;
        padding: 0;
    }

    .home-list a {
        text-decoration: none;
        display: block;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-list li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px !important;
        background: #f8f8f8;
        border-radius: 10px;
        width: 100%;
        height: 100%;
    }

    .icon-sidebar {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .links-home {
        font-size: 12px;
    }

    .home-list li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .home-list li {
        margin-bottom: 0.5em;
        background-color: #F4F4F4;

        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

}

.img-diretoria {
    max-width: 100%;
    object-fit: fill;
    height: 100px;
    width: 104px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1035px;
    margin: auto;
    overflow: hidden;
    height: 0;
    padding-bottom: 33.33%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slide {
    flex: 0 0 33.33%;
    position: relative;
}

.slide img {
    object-fit: contain;
}

button-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
    .slider-container {
        max-width: 100%;
        height: 0;
        padding-bottom: 33.33%;
    }

    .slider {
        width: 300%;
    }

    .slide {
        flex: 0 0 33.33%;
    }

    button-slide {
        padding: 8px;
        font-size: 16px;
    }
}

.home-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 15px;
}

.home-list li i.icon-sidebar {
    font-size: 18px;
    width: 24px;
    text-align: center;
    min-width: 24px;
}

.btns-intitucionais {
    place-self: center;
    display: flex;
    justify-content: left;
    width: 100%;
}
/* === POPUP DE BUSCA === */
 .search-popup {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
  }

  .search-popup.hidden {
    display: none;
  }

  .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
  }

  .popup-content {
    position: relative;
    background: #ffffff;
    padding: 3rem 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
    animation: fadeSlideIn 0.4s ease;
  }

  .popup-title {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    color: #222;
    text-align: center;
  }

  .search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .search-form input[type="text"] {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
  }

  .search-form input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  }

  .search-form button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .search-form button:hover {
    background-color: #0056b3;
  }

  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
  }

  .close-btn:hover {
    color: #111;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

        #cookie-popup {
            position: fixed;
            left: 20px;
            bottom: 20px;
            max-width: 400px;
            width: 90%;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            padding: 20px;
            animation: slideUp 0.5s ease-out;
            z-index: 1000;
            display: none;
            border-left: 4px solid #1a73e8;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cookie-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .cookie-icon {
            width: 32px;
            height: 32px;
            background-color: #1a73e8;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 12px;
            color: white;
            font-size: 16px;
        }

        .cookie-title {
            font-size: 18px;
            font-weight: 600;
            color: #202124;
            margin: 0;
        }

        .cookie-message {
            color: #5f6368;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .cookie-message a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
        }

        .cookie-message a:hover {
            text-decoration: underline;
        }

        .cookie-footer {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
        }

        .cookie-btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            font-size: 13px;
        }

        .cookie-btn-secondary {
            background-color: #f1f3f4;
            color: #1a73e8;
        }

        .cookie-btn-secondary:hover {
            background-color: #e8f0fe;
        }

        .cookie-btn-primary {
            background-color: #1a73e8;
            color: white;
        }

        .cookie-btn-primary:hover {
            background-color: #1765cc;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cookie-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: #5f6368;
            padding: 5px;
        }

        .cookie-close:hover {
            color: #202124;
        }

        @media (max-width: 480px) {
            #cookie-popup {
                left: 10px;
                right: 10px;
                bottom: 10px;
                max-width: none;
                width: auto;
            }

            .cookie-footer {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .cookie-btn {
                flex-grow: 1;
            }
        }

    .nav-warning {
        line-height: 15px;
        background: #8C4E7A30;
        padding: 10px;
        border-radius: 0.5rem;
        line-height: 19px !important;
    }

    .nav-warning span {
        color: #33458f;
        font-weight: 500;
        font-size: 12px;
    }
	
	
/*banner* privacidade*/
.cookie-banner {
  position: fixed;
  bottom: -120px; /* começa escondido */
  left: 0;
  width: 100%;
  background: #8C4E7A; /* cor de fundo */
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold; /* texto em negrito */
  padding: 15px;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
  transition: bottom 0.8s ease;
  z-index: 9999;
}

.cookie-banner.show {
  bottom: 0; /* aparece com slide */
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #fff; /* texto branco */
  font-weight: bold;
}

.cookie-content a {
  color: #fff; 
  font-weight: bold;
  text-decoration: underline;
}

.cookie-content button {
  background: #fff; /* fundo branco */
  color: #8C4E7A; /* texto cor personalizada */
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cookie-content button:hover {
  background: #B678A5; /* versão mais clara da cor base */
  color: #fff; /* texto branco no hover */
}
/* ===== Footer ===== */
footer {
    background-color: #fff; /* Fundo escuro para contraste */
    color: #fff;

}

footer #top .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

footer .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Links do footer */
.custom-menu-footer li a {
    color: #fff;
    text-decoration: none;
}

.custom-menu-footer li a:hover {
    text-decoration: underline;
}

/* Ícones das redes sociais */
footer .fa-facebook-f,
footer .fa-instagram,
footer .fa-x-twitter {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

footer a:hover .fa-facebook-f,
footer a:hover .fa-instagram,
footer a:hover .fa-x-twitter {
    color: #fff; /* Continua branco no hover */
    transform: scale(1.1);
}

/*emojis*/
img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.recentcomments a {
    display:inline !important;
    padding:0 !important;
    margin:0 !important;
}

.pdf-viewer-container-tw {
    width: 100% !important;
    height: 80vh !important;
    min-height: 600px !important;
    margin: 2rem 0 !important;
    position: relative !important;
    background: #f8f9fa !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.375rem !important;
    overflow: hidden !important;
    isolation: isolate !important;
}
    #search-box {
        position: absolute;
        top: 60px;
        /* Ajuste conforme a altura do navbar */
        left: 0;
        width: 100%;
        background: white;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    }

    #search-box.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    #search-box input {
        width: 70%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .search-submit {
        padding: 10px 10px;
        background-color: #52592B;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
    }

    .search-submit:hover {
        background-color: #083b70;
    }
	footer .fa-facebook-f,
	footer .fa-instagram,
	footer .fa-x-twitter {
    color: #fff;  /* Cor branca fixa */
    transition: transform 0.3s ease;
}

