@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700");

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* input,
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
} */

/* Basic */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  /* background: #d4d9dd url("images/bg03.jpg"); */
  color: #474f51;
  background-color: #ffffff;

  font-size: 12px;
  font-family: "Muli";
  line-height: 2em;
  font-weight: 300;
}

input,
textarea,
select {
  color: #474f51;
  font-size: 12px;
  font-family: "Muli";
  line-height: 2em;
  font-weight: 300;
}

ul,
ol,
p,
dl {
  margin: 0 0 2em 0;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

section > :last-child,
section:last-child,
.last-child {
  margin-bottom: 0 !important;
}

/* Container */

.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1200px;
}

@media screen and (max-width: 1680px) {
  .container {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 980px) {
  .container {
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 736px) {
  .container {
    width: calc(100% - 40px);
  }
}

/* Row */

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.row > * {
  box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  justify-content: flex-start;
}

.row.aln-center {
  justify-content: center;
}

.row.aln-right {
  justify-content: flex-end;
}

.row.aln-top {
  align-items: flex-start;
}

.row.aln-middle {
  align-items: center;
}

.row.aln-bottom {
  align-items: flex-end;
}

.row > .imp {
  order: -1;
}

.row > .col-1 {
  width: 8.3333333333%;
}

.row > .off-1 {
  margin-left: 8.3333333333%;
}

.row > .col-2 {
  width: 16.6666666667%;
}

.row > .off-2 {
  margin-left: 16.6666666667%;
}

.row > .col-3 {
  width: 25%;
}

.row > .off-3 {
  margin-left: 25%;
}

.row > .col-4 {
  width: 33.3333333333%;
}

.row > .off-4 {
  margin-left: 33.3333333333%;
}

.row > .col-5 {
  width: 41.6666666667%;
}

.row > .off-5 {
  margin-left: 41.6666666667%;
}

.row > .col-6 {
  width: 50%;
}

.row > .off-6 {
  margin-left: 50%;
}

.row > .col-7 {
  width: 58.3333333333%;
}

.row > .off-7 {
  margin-left: 58.3333333333%;
}

.row > .col-8 {
  width: 66.6666666667%;
}

.row > .off-8 {
  margin-left: 66.6666666667%;
}

.row > .col-9 {
  width: 75%;
}

.row > .off-9 {
  margin-left: 75%;
}

.row > .col-10 {
  width: 83.3333333333%;
}

.row > .off-10 {
  margin-left: 83.3333333333%;
}

.row > .col-11 {
  width: 91.6666666667%;
}

.row > .off-11 {
  margin-left: 91.6666666667%;
}

.row > .col-12 {
  width: 100%;
}

.row > .off-12 {
  margin-left: 100%;
}

.row.gtr-0 {
  margin-top: 0px;
  margin-left: 0px;
}

.row.gtr-0 > * {
  padding: 0px 0 0 0px;
}

.row.gtr-0.gtr-uniform {
  margin-top: 0px;
}

.row.gtr-0.gtr-uniform > * {
  padding-top: 0px;
}

.row.gtr-25 {
  margin-top: -6.25px;
  margin-left: -6.25px;
}

.row.gtr-25 > * {
  padding: 6.25px 0 0 6.25px;
}

.row.gtr-25.gtr-uniform {
  margin-top: -6.25px;
}

.row.gtr-25.gtr-uniform > * {
  padding-top: 6.25px;
}

.row.gtr-50 {
  margin-top: -12.5px;
  margin-left: -12.5px;
}

.row.gtr-50 > * {
  padding: 12.5px 0 0 12.5px;
}

.row.gtr-50.gtr-uniform {
  margin-top: -12.5px;
}

.row.gtr-50.gtr-uniform > * {
  padding-top: 12.5px;
}

.row {
  margin-top: -25px;
  margin-left: -25px;
}

.row > * {
  padding: 25px 0 0 25px;
}

.row.gtr-uniform {
  margin-top: -25px;
}

.row.gtr-uniform > * {
  padding-top: 25px;
}

.row.gtr-150 {
  margin-top: -37.5px;
  margin-left: -37.5px;
}

.row.gtr-150 > * {
  padding: 37.5px 0 0 37.5px;
}

.row.gtr-150.gtr-uniform {
  margin-top: -37.5px;
}

.row.gtr-150.gtr-uniform > * {
  padding-top: 37.5px;
}

.row.gtr-200 {
  margin-top: -50px;
  margin-left: -50px;
}

.row.gtr-200 > * {
  padding: 50px 0 0 50px;
}

.row.gtr-200.gtr-uniform {
  margin-top: -50px;
}

.row.gtr-200.gtr-uniform > * {
  padding-top: 50px;
}

@media screen and (max-width: 1680px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-xlarge {
    order: -1;
  }

  .row > .col-1-xlarge {
    width: 8.3333333333%;
  }

  .row > .off-1-xlarge {
    margin-left: 8.3333333333%;
  }

  .row > .col-2-xlarge {
    width: 16.6666666667%;
  }

  .row > .off-2-xlarge {
    margin-left: 16.6666666667%;
  }

  .row > .col-3-xlarge {
    width: 25%;
  }

  .row > .off-3-xlarge {
    margin-left: 25%;
  }

  .row > .col-4-xlarge {
    width: 33.3333333333%;
  }

  .row > .off-4-xlarge {
    margin-left: 33.3333333333%;
  }

  .row > .col-5-xlarge {
    width: 41.6666666667%;
  }

  .row > .off-5-xlarge {
    margin-left: 41.6666666667%;
  }

  .row > .col-6-xlarge {
    width: 50%;
  }

  .row > .off-6-xlarge {
    margin-left: 50%;
  }

  .row > .col-7-xlarge {
    width: 58.3333333333%;
  }

  .row > .off-7-xlarge {
    margin-left: 58.3333333333%;
  }

  .row > .col-8-xlarge {
    width: 66.6666666667%;
  }

  .row > .off-8-xlarge {
    margin-left: 66.6666666667%;
  }

  .row > .col-9-xlarge {
    width: 75%;
  }

  .row > .off-9-xlarge {
    margin-left: 75%;
  }

  .row > .col-10-xlarge {
    width: 83.3333333333%;
  }

  .row > .off-10-xlarge {
    margin-left: 83.3333333333%;
  }

  .row > .col-11-xlarge {
    width: 91.6666666667%;
  }

  .row > .off-11-xlarge {
    margin-left: 91.6666666667%;
  }

  .row > .col-12-xlarge {
    width: 100%;
  }

  .row > .off-12-xlarge {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -6.25px;
    margin-left: -6.25px;
  }

  .row.gtr-25 > * {
    padding: 6.25px 0 0 6.25px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -6.25px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 6.25px;
  }

  .row.gtr-50 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }

  .row.gtr-50 > * {
    padding: 12.5px 0 0 12.5px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -12.5px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 12.5px;
  }

  .row {
    margin-top: -25px;
    margin-left: -25px;
  }

  .row > * {
    padding: 25px 0 0 25px;
  }

  .row.gtr-uniform {
    margin-top: -25px;
  }

  .row.gtr-uniform > * {
    padding-top: 25px;
  }

  .row.gtr-150 {
    margin-top: -37.5px;
    margin-left: -37.5px;
  }

  .row.gtr-150 > * {
    padding: 37.5px 0 0 37.5px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -37.5px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 37.5px;
  }

  .row.gtr-200 {
    margin-top: -50px;
    margin-left: -50px;
  }

  .row.gtr-200 > * {
    padding: 50px 0 0 50px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -50px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 50px;
  }
}

@media screen and (max-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-large {
    order: -1;
  }

  .row > .col-1-large {
    width: 8.3333333333%;
  }

  .row > .off-1-large {
    margin-left: 8.3333333333%;
  }

  .row > .col-2-large {
    width: 16.6666666667%;
  }

  .row > .off-2-large {
    margin-left: 16.6666666667%;
  }

  .row > .col-3-large {
    width: 25%;
  }

  .row > .off-3-large {
    margin-left: 25%;
  }

  .row > .col-4-large {
    width: 33.3333333333%;
  }

  .row > .off-4-large {
    margin-left: 33.3333333333%;
  }

  .row > .col-5-large {
    width: 41.6666666667%;
  }

  .row > .off-5-large {
    margin-left: 41.6666666667%;
  }

  .row > .col-6-large {
    width: 50%;
  }

  .row > .off-6-large {
    margin-left: 50%;
  }

  .row > .col-7-large {
    width: 58.3333333333%;
  }

  .row > .off-7-large {
    margin-left: 58.3333333333%;
  }

  .row > .col-8-large {
    width: 66.6666666667%;
  }

  .row > .off-8-large {
    margin-left: 66.6666666667%;
  }

  .row > .col-9-large {
    width: 75%;
  }

  .row > .off-9-large {
    margin-left: 75%;
  }

  .row > .col-10-large {
    width: 83.3333333333%;
  }

  .row > .off-10-large {
    margin-left: 83.3333333333%;
  }

  .row > .col-11-large {
    width: 91.6666666667%;
  }

  .row > .off-11-large {
    margin-left: 91.6666666667%;
  }

  .row > .col-12-large {
    width: 100%;
  }

  .row > .off-12-large {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -5px;
    margin-left: -5px;
  }

  .row.gtr-25 > * {
    padding: 5px 0 0 5px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -5px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 5px;
  }

  .row.gtr-50 {
    margin-top: -10px;
    margin-left: -10px;
  }

  .row.gtr-50 > * {
    padding: 10px 0 0 10px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -10px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 10px;
  }

  .row {
    margin-top: -20px;
    margin-left: -20px;
  }

  .row > * {
    padding: 20px 0 0 20px;
  }

  .row.gtr-uniform {
    margin-top: -20px;
  }

  .row.gtr-uniform > * {
    padding-top: 20px;
  }

  .row.gtr-150 {
    margin-top: -30px;
    margin-left: -30px;
  }

  .row.gtr-150 > * {
    padding: 30px 0 0 30px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -30px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 30px;
  }

  .row.gtr-200 {
    margin-top: -40px;
    margin-left: -40px;
  }

  .row.gtr-200 > * {
    padding: 40px 0 0 40px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -40px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 40px;
  }
}

@media screen and (max-width: 980px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-medium {
    order: -1;
  }

  .row > .col-1-medium {
    width: 8.3333333333%;
  }

  .row > .off-1-medium {
    margin-left: 8.3333333333%;
  }

  .row > .col-2-medium {
    width: 16.6666666667%;
  }

  .row > .off-2-medium {
    margin-left: 16.6666666667%;
  }

  .row > .col-3-medium {
    width: 25%;
  }

  .row > .off-3-medium {
    margin-left: 25%;
  }

  .row > .col-4-medium {
    width: 33.3333333333%;
  }

  .row > .off-4-medium {
    margin-left: 33.3333333333%;
  }

  .row > .col-5-medium {
    width: 41.6666666667%;
  }

  .row > .off-5-medium {
    margin-left: 41.6666666667%;
  }

  .row > .col-6-medium {
    width: 50%;
  }

  .row > .off-6-medium {
    margin-left: 50%;
  }

  .row > .col-7-medium {
    width: 58.3333333333%;
  }

  .row > .off-7-medium {
    margin-left: 58.3333333333%;
  }

  .row > .col-8-medium {
    width: 66.6666666667%;
  }

  .row > .off-8-medium {
    margin-left: 66.6666666667%;
  }

  .row > .col-9-medium {
    width: 75%;
  }

  .row > .off-9-medium {
    margin-left: 75%;
  }

  .row > .col-10-medium {
    width: 83.3333333333%;
  }

  .row > .off-10-medium {
    margin-left: 83.3333333333%;
  }

  .row > .col-11-medium {
    width: 91.6666666667%;
  }

  .row > .off-11-medium {
    margin-left: 91.6666666667%;
  }

  .row > .col-12-medium {
    width: 100%;
  }

  .row > .off-12-medium {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -6.25px;
    margin-left: -6.25px;
  }

  .row.gtr-25 > * {
    padding: 6.25px 0 0 6.25px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -6.25px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 6.25px;
  }

  .row.gtr-50 {
    margin-top: -12.5px;
    margin-left: -12.5px;
  }

  .row.gtr-50 > * {
    padding: 12.5px 0 0 12.5px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -12.5px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 12.5px;
  }

  .row {
    margin-top: -25px;
    margin-left: -25px;
  }

  .row > * {
    padding: 25px 0 0 25px;
  }

  .row.gtr-uniform {
    margin-top: -25px;
  }

  .row.gtr-uniform > * {
    padding-top: 25px;
  }

  .row.gtr-150 {
    margin-top: -37.5px;
    margin-left: -37.5px;
  }

  .row.gtr-150 > * {
    padding: 37.5px 0 0 37.5px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -37.5px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 37.5px;
  }

  .row.gtr-200 {
    margin-top: -50px;
    margin-left: -50px;
  }

  .row.gtr-200 > * {
    padding: 50px 0 0 50px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -50px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 50px;
  }
}

@media screen and (max-width: 736px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-small {
    order: -1;
  }

  .row > .col-1-small {
    width: 8.3333333333%;
  }

  .row > .off-1-small {
    margin-left: 8.3333333333%;
  }

  .row > .col-2-small {
    width: 16.6666666667%;
  }

  .row > .off-2-small {
    margin-left: 16.6666666667%;
  }

  .row > .col-3-small {
    width: 25%;
  }

  .row > .off-3-small {
    margin-left: 25%;
  }

  .row > .col-4-small {
    width: 33.3333333333%;
  }

  .row > .off-4-small {
    margin-left: 33.3333333333%;
  }

  .row > .col-5-small {
    width: 41.6666666667%;
  }

  .row > .off-5-small {
    margin-left: 41.6666666667%;
  }

  .row > .col-6-small {
    width: 50%;
  }

  .row > .off-6-small {
    margin-left: 50%;
  }

  .row > .col-7-small {
    width: 58.3333333333%;
  }

  .row > .off-7-small {
    margin-left: 58.3333333333%;
  }

  .row > .col-8-small {
    width: 66.6666666667%;
  }

  .row > .off-8-small {
    margin-left: 66.6666666667%;
  }

  .row > .col-9-small {
    width: 75%;
  }

  .row > .off-9-small {
    margin-left: 75%;
  }

  .row > .col-10-small {
    width: 83.3333333333%;
  }

  .row > .off-10-small {
    margin-left: 83.3333333333%;
  }

  .row > .col-11-small {
    width: 91.6666666667%;
  }

  .row > .off-11-small {
    margin-left: 91.6666666667%;
  }

  .row > .col-12-small {
    width: 100%;
  }

  .row > .off-12-small {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
  }

  .row.gtr-0 > * {
    padding: 0px 0 0 0px;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0px;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
  }

  .row.gtr-25 {
    margin-top: -5px;
    margin-left: -5px;
  }

  .row.gtr-25 > * {
    padding: 5px 0 0 5px;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -5px;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 5px;
  }

  .row.gtr-50 {
    margin-top: -10px;
    margin-left: -10px;
  }

  .row.gtr-50 > * {
    padding: 10px 0 0 10px;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -10px;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 10px;
  }

  .row {
    margin-top: -20px;
    margin-left: -20px;
  }

  .row > * {
    padding: 20px 0 0 20px;
  }

  .row.gtr-uniform {
    margin-top: -20px;
  }

  .row.gtr-uniform > * {
    padding-top: 20px;
  }

  .row.gtr-150 {
    margin-top: -30px;
    margin-left: -30px;
  }

  .row.gtr-150 > * {
    padding: 30px 0 0 30px;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -30px;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 30px;
  }

  .row.gtr-200 {
    margin-top: -40px;
    margin-left: -40px;
  }

  .row.gtr-200 > * {
    padding: 40px 0 0 40px;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -40px;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 40px;
  }
}

/* Multi-use */

.link-list li {
  padding: 0.2em 0 0.2em 0;
}

.link-list li:first-child {
  padding-top: 0 !important;
  border-top: 0 !important;
}

.link-list li:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.quote-list li {
  padding: 1em 0 1em 0;
  overflow: hidden;
}

.quote-list li:first-child {
  padding-top: 0 !important;
  border-top: 0 !important;
}

.quote-list li:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.quote-list li img {
  float: left;
}

.quote-list li p {
  margin: 0 0 0 90px;
  font-size: 1.2em;
  font-style: italic;
}

.quote-list li span {
  display: block;
  margin-left: 90px;
  font-size: 0.9em;
  font-weight: 400;
}

.check-list li {
  padding: 0.7em 0 0.7em 45px;
  font-size: 1.2em;
  background: url("images/icon-checkmark.png") 0px 1.05em no-repeat;
}

.check-list li:first-child {
  padding-top: 0 !important;
  border-top: 0 !important;
  background-position: 0 0.3em;
}

.check-list li:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.feature-image {
  display: block;
  margin: 0 0 2em 0;
  outline: 0;
}

.feature-image img {
  display: block;
  width: 100%;
}

.bordered-feature-image {
  display: block;
  background: #fff url("images/bg04.png");
  margin: 0 0 1.5em 0;
  outline: 0;
}

.bordered-feature-image img {
  display: block;
  width: 100%;
}

.button-large {
  background-image: -moz-linear-gradient(top, #ed391b, #ce1a00);
  background-image: -webkit-linear-gradient(top, #ed391b, #ce1a00);
  background-image: -ms-linear-gradient(top, #ed391b, #ce1a00);
  background-image: linear-gradient(top, #ed391b, #ce1a00);
  display: inline-block;
  background-color: #ed391b;
  color: #fff;
  text-decoration: none;
  font-size: 1.75em;
  height: 2em;
  line-height: 2.125em;
  font-weight: 300;
  padding: 0 45px;
  outline: 0;
  border-radius: 10px;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75),
    inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5),
    inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85),
    3px 3px 3px 1px rgba(0, 0, 0, 0.15);
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.5);
}

.button-large:hover {
  background-image: -moz-linear-gradient(top, #fd492b, #de2a10);
  background-image: -webkit-linear-gradient(top, #fd492b, #de2a10);
  background-image: -ms-linear-gradient(top, #fd492b, #de2a10);
  background-image: linear-gradient(top, #fd492b, #de2a10);
  background-color: #fd492b;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75),
    inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5),
    inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85),
    3px 3px 3px 1px rgba(0, 0, 0, 0.15);
}

.button-large:active {
  background-image: -moz-linear-gradient(top, #ce1a00, #ed391b);
  background-image: -webkit-linear-gradient(top, #ce1a00, #ed391b);
  background-image: -ms-linear-gradient(top, #ce1a00, #ed391b);
  background-image: linear-gradient(top, #ce1a00, #ed391b);
  background-color: #ce1a00;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75),
    inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5),
    inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85),
    3px 3px 3px 1px rgba(0, 0, 0, 0.15);
}

.menu {
  background-color: #ffffff;
  margin-top: 100px;
  padding-bottom: 150px;
}

.menu-index {
  background: url("../../images/banner_home01.png") no-repeat center center;
  background-size: cover;
}

.menu-sobre {
  /* background-image: url("../../images/banner_sobreoprojeto.jpg");
    background-position: 0 0;
    height: 397px; */
}

.menu .bg {
  margin-top: -50px;
}

.plataforma {
  width: 80%;
  /* margin-top: 50px; */
  padding: 4em;
}

.plataforma_tooltip {
  font-size: 2.2rem;
  line-height: 1.2em;
  color: #cc1318;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #cc1318;
  outline: 10px solid rgba(255, 255, 255, 0.85);

  padding: 0.5em 0;
  margin: 0 2em;
}

.plataforma_tooltip .big {
  display: block;
  text-align: center;
  margin: 0;
}

.plataforma_tooltip h2 {
  color: #cc1318;
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  text-align: center;
}

.plataforma_tooltip ul {
  margin: 0 1em;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.1em;
  list-style-type: disc;
  list-style-position: outside;
}

.plataforma_tooltip li {
  margin-bottom: 10px;
}

.dropdown {
  display: inline-block;
}

.dropdown .dropbtn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  padding: 8px 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:#28348a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown_login {
  display: inline-block;
}

.btn-dropdown {
  font-weight: bold;
  margin: 0.5rem 0;
  display: inline-block;
  cursor: pointer;
  border: 1px solid white;
  background-color: #28348a;
  color: white;
  padding: 2px 10px;
  text-transform: uppercase;
  text-decoration: none;
}

.falas {
  margin-right: 0.5rem 0;
  padding: 2px 10px;
  border: 2px solid #28348a;
}

.dropdown_form {
  z-index: 10000;
  display: none;
  padding: 10px;
  background-color: #28348a;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.dropdown_form input,
.dropdown_form label {
  margin: 0.5rem 0;
}

.dropdown_form label {
  color: white;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

/* .form-control::placeholder {
    color: white;
} */

.form-control {
  padding: 0.375rem 0.75rem;
  display: block;
  /* color: white;
    background-color: #926708a6;
    background-clip: padding-box; */
  border: 0;
  border-radius: 0.25rem;
}

.form-control:focus {
  outline: none !important;
  /* background-color: white;
    color: gray; */
}

/* .form-control:focus::placeholder {
    color: black;
} */

/* Banner */

#banner {
  /* border-top: solid 1px #222628;
    box-shadow: inset 0px 1px 0px 0px #3e484a; */
  padding: 35px 0 35px 0;
  color: #fff;
}

#banner .bordered-feature-image {
  margin-bottom: 0;
}

#banner p {
  font-size: 2em;
  font-weight: 200;
  line-height: 1.25em;
  padding-right: 1em;
  margin: 0 0 1em 0;
}

/* Features */

#fiqueligado {
  background-color: #0080c9;
  margin-bottom: 3rem;
}
#fiqueligado .text {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  margin: 1rem;
  text-align: center;
}

#features {
  color: rgb(90, 90, 90);
}

.v2 h1 {
  font-size: 2.2em;
  line-height: 1.2em;
  color: #28348a;
  margin: 1em 0;
}

/* #sobre h1,
#pedagogico h1,
#faq h1,
#suporte h1,
#login h1 {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 2.5em;
    line-height: 1.5em;
} */

#sobre h2,
#pedagogico h2,
#faq h2,
#suporte h2,
#login h2 {
  margin: 1em 0;
  font-size: 2em;
  line-height: 1.1em;
  color: rgb(90, 90, 90);
}

.v2 h3 {
  margin: 1em 0;
  font-size: 1.6em;
  line-height: 1.2em;
  color: rgb(90, 90, 90);
}

#sobre p,
#pedagogico p,
#faq p,
#suporte p,
#login p {
  color: rgb(90, 90, 90);
  margin: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.v2 ul {
  color: rgb(90, 90, 90);
}

#pedagogico ul {
  font-size: 1rem;
  margin: 1.5rem;
  line-height: 1.5rem;
}

.m15 {
  margin: 1.5rem;
}

ul.decorated {
  list-style-type: circle;
  list-style-position: inside;
}

.v2 small {
  color: rgb(90, 90, 90);
}

#pedagogico small {
  margin: 1.5rem;
}

#suporte p {
  margin: 0 1.5em;
}

#features h2 {
  font-size: 1.7em;
  color: #28348a;
  margin: 0 0 0.25em 0;
}

#login a {
  color: rgb(90, 90, 90);
}

/* #features a {
    color: #28348a;
}

#features strong {
    color: #28348a;
} */

/* Content */

#content {
  background: #f7f7f7 url("images/bg04.png");
  border-top: solid 1px #fff;
  padding: 45px 0 45px 0;
}

#content section {
  background: #fff;
  padding: 40px 30px 45px 30px;
  box-shadow: 2px 2px 2px 1px rgba(128, 128, 128, 0.1);
  margin: 0 0 25px 0;
}

#content h2 {
  font-size: 1.8em;
  color: #373f42;
  margin: 0 0 0.25em 0;
}

#content h3 {
  color: #96a9b5;
  font-size: 1.25em;
}

#content a {
  color: #ed391b;
}

#content header {
  margin: 0 0 2em 0;
}

#content .quote-list li {
  border-bottom: solid 1px #e2e6e8;
}

#content .link-list li {
  border-bottom: solid 1px #e2e6e8;
}

#content .check-list li {
  border-bottom: solid 1px #e2e6e8;
}

/* Header */

#header {
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
  margin-top: -40px;
  background-color: #28348a;
}

#header > .container {
  position: relative;
  min-height: 180px;
}

#header h1 {
  position: absolute;
  left: 80px;
  bottom: 15px;
  font-size: 2.75em;
  margin: 0;
}

#header h1 a {
  color: #fff;
  text-decoration: none;
}

#header nav {
  position: absolute;
  right: 0;
  bottom: 25px;
  font-weight: 200;
}

/* custom */
#header nav a {
  color: #f6f8f8;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2em;
  outline: 0;
  font-weight: bold;
}

#header nav a:hover {
  background-color: #0c245f;
}

.subpage #header > .container {
  height: 155px;
}

/* Footer */
/*
#footer {
    padding: 45px 0 45px 0;
    text-shadow: 1px 1px 1px white;
    color: #546b76;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

#footer h2 {
    font-size: 1.25em;
    color: #212f35;
    margin: 0 0 1em 0;
}

#footer a {
    color: #546b76;
}

#footer .quote-list li {
    border-top: solid 1px #e0e4e6;
    border-bottom: solid 1px #b5bec3;
}

#footer .link-list li {
    border-top: solid 1px #e0e4e6;
    border-bottom: solid 1px #b5bec3;
}

#footer .check-list li {
    border-top: solid 1px #e0e4e6;
    border-bottom: solid 1px #b5bec3;
} */

/* Copyright */

#copyright {
  border-top: solid 1px #b5bec3;
  box-shadow: inset 0px 1px 0px 0px #e0e4e7;
  text-align: center;
  padding: 45px 0 80px 0;
  color: #8d9ca3;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

#copyright a {
  color: #8d9ca3;
}

/* CUSTOM */
.cenunlogo,
.footerlogo {
  height: 70px;
}

#headerXAD {
  height: 1015px;
  /* full size */
  background-repeat: no-repeat;
  background-image: url("../../images/banner_home01.png");
  background-size: cover;
}

#banner_parceirosXXXXXX {
  height: 397px;
  /* full size */
  background-repeat: no-repeat;
  background-image: url("../../images/banner_parceiros.png");
  background-size: cover;
}

#banner_parceiros {
  width: 100%;
  display: block;
}

.newsinfo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.newstext {
  flex: 1;
}

.saibamais {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  font-size: 1.2em;
  color: white;
}

.saibamais:hover {
  color: white;
}

.saibamais_text {
  padding: 6px 12px;
  background-color: #28348a;
}

.saibamais_btn {
  align-self: stretch;
  padding: 6px 12px;
  background-color: #d21f25;
}

.smallbanner {
  display: none;
}

.banner-cover {
  width: 100%;
  height: auto;
}

#footer {
  background-color: #28348a;
  height: 340px;
  margin-top: 10px;
}

#footer .info {
  display: block;
  font-size: 1.2em;
}

#footer .link {
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.7em;
}

#footer .info i {
  margin-right: 6px;
}

#footer .container {
  padding-top: 30px;
}

.footerinfo {
  color: white;
}

.redes {
  margin-top: 0.5em;
  font-size: 0.7em;
}

.redes a {
  color: white;
}

.redes .fa-stack {
  width: 2em;
}

.redes .orange {
  color: #28348a;
}

img.bg {
  height: auto;
  width: 100%;
}

.banner-margin {
  margin-top: 115px;
}

.header-margin-150 {
  margin-top: 170px;
}

/* Large */

@media screen and (max-width: 1280px) {
  /* Multi-use */

  .check-list li {
    font-size: 1em;
    line-height: 2em;
  }

  .quote-list li {
    padding: 1em 0 1em 0;
  }

  .quote-list li img {
    width: 60px;
  }

  .quote-list li p {
    margin: 0 0 0 80px;
    font-size: 1em;
    font-style: italic;
    line-height: 1.8em;
  }

  .quote-list li span {
    display: block;
    margin-left: 80px;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.8em;
  }

  .feature-image {
    margin: 0 0 1em 0;
  }

  .button-large {
    font-size: 1.5em;
  }

  /* Banner */

  #banner p {
    font-size: 1.75em;
  }

  /* Header */

  #header h1 {
    font-size: 2.25em;
  }

  #header nav a {
    font-size: 0.9rem;
    margin-left: 0;
    padding: 4px;
  }

  #header nav .login {
    font-size: 0.9rem;
    padding: 2px 10px;
    margin-left: 10px;
  }

  /* Content */

  #content h2 {
    font-size: 1.4em;
  }

  #content h3 {
    font-size: 1.1em;
  }

  #content header {
    margin: 0 0 1.25em 0;
  }

  .smallbanner {
    display: none;
  }
}

/* Medium */

#navPanel,
#titleBar {
  display: none;
}

@media screen and (max-width: 980px) {
  /* Basic */

  html,
  body {
    overflow-x: hidden;
  }

  /* Header */

  #header {
    text-align: center;
  }

  /* #header > .container:first-child {
        display: none;
	} */
  #header > .container,
  #header > #slope,
  #header > #slope2,
  #header > .ieslope2,
  #header > .ieslope25,
  .ieslope3 {
    display: none;
  }

  #header {
    margin-top: 0;
  }

  /* Content */

  #content {
    padding: 25px 0;
  }

  /* Nav */

  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
    padding-top: 44px;
  }

  #titleBar {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 50px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    color: #fff;
    /* background: url("images/bg04.jpg"); */
    background: #28348a;
  }

  #titleBar .title {
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 48px;
  }

  #titleBar .toggle {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 60px;
  }

  #titleBar .toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.025);
    width: 49px;
    height: 31px;
  }

  #titleBar .toggle:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background: url("images/mobileUI-site-nav-opener-bg.svg");
    top: 15px;
    left: 20px;
    z-index: 1;
    opacity: 0.25;
  }

  #titleBar .toggle:active:after {
    background: rgba(255, 255, 255, 0.05);
  }

  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #28348a;
  }

  #navPanel .link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
    line-height: 2em;
    padding: 0.625em 1.5em 0.325em 1.5em;
    border-top: solid 1px white;
    width: 100%;
    word-break: break-all;
  }

  #navPanel .link:first-child {
    border-top: 0;
  }

  #navPanel .link:last-child {
    border-bottom: 0;
  }

  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #titleBar {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .cenunlogo {
    height: 35px;
    margin-top: 10px;
  }

  .menu {
    background-image: none;
    padding-bottom: 0;
  }

  .smallbanner {
    display: block;
  }

  .smallbanner img {
    max-width: 100%;
    height: auto;
  }

  .banner-cover {
    margin-top: 0;
  }

  #features {
    margin-top: 0;
  }

  .banner-margin {
    margin: 0;
  }

  .header-margin-150 {
    margin-top: 0;
  }
}

/* Small */

@media screen and (max-width: 736px) {
  /* Basic */

  body,
  input,
  textarea,
  select {
    font-size: 13pt;
    line-height: 1.4em;
  }

  /* Multi-use */

  .link-list li {
    padding: 0.75em 0 0.75em 0;
  }

  .quote-list li p {
    margin-bottom: 0.5em;
  }

  .check-list li {
    font-size: 1em;
  }

  .button-large {
    width: 100%;
  }

  /* Banner */

  #banner p {
    font-size: 1.25em;
    font-weight: 200;
    line-height: 1.25em;
    margin: 0 0 1em 0;
  }

  /* Content */

  #content section {
    padding: 30px 20px;
  }

  #content h2 {
    font-size: 1.25em;
  }

  #content h3 {
    font-size: 1em;
  }

  #content header {
    margin: 0 0 1.25em 0;
  }

  /* Footer */

  #footer .link-list {
    margin: 0 0 10px 0 !important;
  }

  #footer {
    margin-top: 2em;
    background-color: #28348a;
  }

  /* Copyright */

  #copyright {
    padding: 20px 30px;
  }

  #header {
    display: none;
  }

  #slope,
  #slope2,
  #slope3,
  .ieslope2,
  .ieslope2b,
  .ieslope4 {
    display: none;
  }

  #banner_parceiros {
    background-size: contain;
  }

  .menu .bg {
    margin-bottom: 50px;
  }

  .newsinfo {
    display: inline;
  }

  .saibamais {
    margin-top: 1em;
  }

  #footer {
    height: auto;
  }

  #features h2 {
    font-size: 1.25em;
  }

  .plataforma {
    width: 100%;
    padding: 0;
  }

  .more-content {
    display: none;
  }
}

/* CUSTOM */

/* Cores Cenun:
azul botao:  28338c
laranja claro: 28348a
laranja escuro: e67900
verde logo: 01934a
vermelho logo: d21f23
bege das fotos: fcf8ef
azul circulos: 019ee3
azul fique ligado: 28348a
*/

/* .cenunlogo {
    height: 120px;
    margin-top: 20px;
} */

#nav a {
  padding: 8px 12px;
}

#nav a.active {
  background-color: #d21f25;
  color: white;
}

#header nav button {
  color: #f6f8f8;
  text-transform: uppercase;
  margin-left: 5px;
}

#nav .login {
  padding: 8px 10px;
  margin-right: 10px;
  border: 2px solid white;
  font-weight: bold;
  font-size: 1.2em;
}

.btn-sair {
  text-decoration: underline;
}

.btn-sair,
button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;

  background: transparent;

  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;

  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;

  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;

  outline: 0;
  cursor: pointer;
}

#titleBar .togglex {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 60px;
  font-size: 2em;
  margin: 10px;
  color: #01934a;
}

.clipLeft {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

.clipRight {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

#slope {
  position: absolute;
  height: 235px;
  width: 100%;
  background-color: #28348a;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

#slope2 {
  position: absolute;
  height: 500px;
  width: 100%;
  background-color: #e67900;
  clip-path: polygon(0 0, 0 47%, 70% 0);
}

#slope3 {
  margin-top: -90px;
  height: 300px;
  width: 100%;
  background-color: #28348a;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

#slope4 {
  position: absolute;
  width: 100%;
  background-color: #f7a600;
  height: 800px;
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
  z-index: -10;
}

#slope5 {
  position: absolute;
  width: 100%;
  height: 800px;
  clip-path: polygon(0 0, 100% 26%, 100% 100%, 0 100%);
  background-color: #ec6607;
  z-index: -10;
}

#parceiros {
  margin-top: 40px;
}

#parceiros h1 {
  font-size: 2.2em;
  line-height: 1.2em;
  color: #28348a;
  margin-bottom: 1em;
}

.red {
  background-color: rgba(255, 0, 0, 0.3);
}

.ieslope2c {
  position: relative;
  box-sizing: inherit;
}

.ieslope2c::before {
  box-sizing: inherit;
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 170' fill='rgb(242,145,2)' fill-opacity='1'%3E%3Cpolygon points='0,0 100,170 100,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 170px;
  top: 0px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.ieslope2b {
  position: relative;
  height: 100px;
  z-index: 2;
  width: 100%;
  background-color: rgb(242, 145, 2);
}

.ieslope2 {
  position: relative;
}

.ieslope2::before {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 210' fill='rgb(230,121,0)' fill-opacity='1'%3E%3Cpolygon points='0,0 100,0 0,210'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 210px;
  top: 0px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.ieslope3a {
  position: relative;
}

.ieslope3a::before {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 80' fill='rgb(242, 145, 2)' fill-opacity='1'%3E%3Cpolygon points='0,80 100,80 100,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 80px;
  top: -80px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 22;
}

.ieslope3b {
  position: relative;
  background-color: rgb(242, 145, 2);
  content: "";
  height: 50px;
  width: 100%;
  z-index: 22;
}

.ieslope3c {
  position: relative;
}

.ieslope3c::before {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 80' fill='rgb(242, 145, 2)' fill-opacity='1'%3E%3Cpolygon points='0,0 100,80 100,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 80px;
  top: 0px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 22;
}

.ieslope4a {
  position: relative;
}

.ieslope4a::before {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 500' fill='rgb(247,166,0)' fill-opacity='1'%3E%3Cpolygon points='0,500 100,500 100,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 340px;
  top: -200px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: -10;
}

.ieslope4b {
  position: relative;
}

.ieslope4b::before {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 200' fill='rgb(236,102,7)' fill-opacity='1'%3E%3Cpolygon points='0,200 100,200 0,0'%3E%3C/polygon%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 200px;
  top: -200px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: -9;
}

.ieslope4 {
  margin-top: -140px;
}

.ieslope4c {
  height: 140px;
  background-color: rgb(236, 102, 7);
}

.ieslope3 {
  margin-top: -50px;
}

.pdflinks-outer {
  margin: 2em;
}

.pdflinks {
  display: block;
  color: rgb(90, 90, 90);
  font-size: 1.5em;
  margin: 1em;
}

#login {
  font-size: 1.2em;
}

/* from bootstrap */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #28348a;
  border-color: #28348a;
}

.btn-primary:hover {
  color: #fff;
  background-color: #28348a;
  border-color: #28348a;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

button,
input {
  overflow: visible;
}

.text-muted {
  color: #6c757d !important;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.small,
small {
  font-size: 80%;
  font-weight: 400;
}

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

.form-group {
  margin-bottom: 1rem;
}

.help-block {
  margin: 0.5rem 0;
}

.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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 1.4rem;
}

h3,
.h3 {
  font-size: 1.2rem;
}

h4,
.h4 {
  font-size: 1.1rem;
}

h5,
.h5 {
  font-size: 1.1rem;
}

h6,
.h6 {
  font-size: 1rem;
}

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

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

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

.nav-link.disabled {
  color: #868e96;
}

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

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

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

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

.nav-tabs .nav-link.disabled {
  color: #868e96;
  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: #ddd #ddd #fff;
}

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

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

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

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

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

a.nav-link {
  text-decoration: none;
}

#dashboard h5 {
  font-weight: 700;
}

#dashboard p,
#dashboard a,
#dashboard label,
#dashboard u {
  font-size: 14px;
}

#dashboard .h2-envio {
  margin-top: 1em;
}

/* bootstrap */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: white;
}

.table th,
.table td {
  padding: 0.25rem;
  vertical-align: top;
  border-top: 1px solid #ccc;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #ccc;
}

.table tbody + tbody {
  border-top: 1px solid #ccc;
}

.table {
  background-color: white;
}

strong {
  font-weight: bold;
}

.more-content {
  z-index: 9998;
  padding: 1em 1em 0.7em 1em;
  position: absolute;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
}

/* TESTE SIDEBAR */
@media screen and (max-width: 736px) {
    .sidebar ul{
        display: flex;
    }

    .sidebar ul li{
        list-style-type: none;
        padding-right: 14px;
    }
}
