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

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  -webkit-outline: none;
  -moz-outline: none;
}

img {
  max-width: 100%;
}

/* Theme Settings */

:root {
  /* Colors */
  --first-color: #b51829;
  --second-color: #efcd31;
  --second-color-hard: rgba(181, 24, 41, 0.85);
  --second-color-soft: rgba(181, 24, 41, 0.15);
  --highlight-color: #f5325c;
  --success-color: #03d87f;
  --dark-success-color: #00a862;
  --danger-color: #f5325c;
  --dark-danger-color: #c22446;
  --warning-color: #ffb822;
  --dark-warning-color: #d1971a;
  --light-background: #f5f6f7;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #333333;

  /* Border */
  --border-width: 1px;
  --border-color: #d9e3f1;
  --border-color-hover: var(--first-color);
  --border-radius: 4px;
  --input-border: var(--border-width) solid var(--border-color);
  --input-border-hover: var(--border-width) solid var(--border-color-hover);

  /* Shadow */
  --box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  --box-shadow-active: 0px 0px 5px 2px var(--second-color-hard);

  /* Animation */
  --transition: all 0.3s ease-in-out 0s;
  --fast-transition: all 0.1s ease-in-out 0s;

  /* Alerts */
  --defaul-alert-bg: rgba(42, 118, 244, 0.2);
  --alert-danger-bg: rgba(245, 50, 92, 0.2);
}

/* Theme Settings */

/* Structure */

.container {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.lt-pd {
  padding: 10px 20px;
}

.sm-pd {
  padding: 20px;
}

.md-pd {
  padding: 40px 20px;
}

.bg-pd {
  padding: 60px 20px;
}

.lg-pd {
  padding: 80px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.lt-gap {
  grid-gap: 10px;
}

.sm-gap {
  grid-gap: 20px;
}

.md-gap {
  grid-gap: 40px;
}

.lg-gap {
  grid-gap: 60px;
}

.xg-gap {
  grid-gap: 80px;
}

.jc-gs {
  justify-content: start;
}

.jc-ge {
  justify-content: end;
}

.jc-gst {
  justify-content: stretch;
}

.jc-gsa {
  justify-content: space-around;
}

.jc-gsb {
  justify-content: space-between;
}

.jc-gse {
  justify-content: space-evenly;
}

.jc-gc {
  justify-content: center;
}

.ac-gs {
  align-content: start;
}

.ac-ge {
  align-content: end;
}

.ac-gst {
  align-content: stretch;
}

.ac-gsa {
  align-content: space-around;
}

.ac-gsb {
  align-content: space-between;
}

.ac-gse {
  align-content: space-evenly;
}

.ac-gc {
  align-content: center;
}

.ji-gs {
  justify-items: start;
}

.ji-ge {
  justify-items: end;
}

.ji-gst {
  justify-items: stretch;
}

.ji-gsa {
  justify-items: space-around;
}

.ji-gsb {
  justify-items: space-between;
}

.ji-gse {
  justify-items: space-evenly;
}

.ji-gc {
  justify-items: center;
}

.ai-gs {
  align-items: start;
}

.ai-ge {
  align-items: end;
}

.ai-gst {
  align-items: stretch;
}

.ai-gsa {
  align-items: space-around;
}

.ai-gsb {
  align-items: space-between;
}

.ai-gse {
  align-items: space-evenly;
}

.ai-gc {
  align-items: center;
}

.col-12 {
  grid-column: span 12;
}

.col-11 {
  grid-column: span 11;
}

.col-10 {
  grid-column: span 10;
}

.col-9 {
  grid-column: span 9;
}

.col-8 {
  grid-column: span 8;
}

.col-7 {
  grid-column: span 7;
}

.col-6 {
  grid-column: span 6;
}

.col-5 {
  grid-column: span 5;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.col-2 {
  grid-column: span 2;
}

.col-1 {
  grid-column: span 1;
}

.row-2 {
  grid-row: span 2;
}

@media screen and (max-width: 1300px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-12,
  .col-11,
  .col-10,
  .col-9,
  .col-8,
  .col-7,
  .col-6 {
    grid-column: span 6;
  }

  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1 {
    grid-column: span 3;
  }
}

@media screen and (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .col-12,
  .col-11,
  .col-10,
  .col-9,
  .col-8,
  .col-7,
  .col-6,
  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1 {
    grid-column: span 1;
  }
}

.flex {
  display: flex;
}

.fd-fr {
  flex-direction: row;
}

.fd-rr {
  flex-direction: row-reverse;
}

.fd-fc {
  flex-direction: column;
}

.fd-cr {
  flex-direction: column-reverse;
}

.fw-nw {
  flex-wrap: nowrap;
}

.fw-w {
  flex-wrap: wrap;
}

.fw-wr {
  flex-wrap: wrap-reverse;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-fc {
  justify-content: center;
}

.jc-fsb {
  justify-content: space-between;
}

.jc-fsa {
  justify-content: space-around;
}

.ai-fst {
  align-items: stretch;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-fc {
  align-items: center;
}

.ai-fb {
  align-items: baseline;
}

.ac-fst {
  align-content: strecth;
}

.ac-fs {
  align-content: flex-start;
}

.ai-fe {
  align-content: flex-end;
}

.ai-fc {
  align-content: center;
}

.ai-fsb {
  align-content: space-between;
}

.ai-fsa {
  align-content: space-around;
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .fd-mcr {
    flex-direction: column-reverse;
  }

  .fd-mr {
    flex-direction: row;
  }
}

/* Structure */

/* Mutators */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hide {
  display: none;
}

/* Mutators */

/* Text */

body,
input,
select,
button,
textarea,
option,
optgroup {
  font-family: "Work Sans", sans-serif;
  color: var(--text-color);
  font-size: 16px;
}

body.web {
  padding-top: 74px;
}

@media screen and (max-width: 768px) {
  body.web {
    padding-top: 72px;
  }
}

@media screen and (max-width: 768px) {
  body,
  input,
  select,
  button,
  textarea,
  option,
  optgroup {
    font-size: 13px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--first-color);
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  line-height: 1.4;
}

p:not(:last-of-type) {
  margin-bottom: 20px;
}

b,
strong,
.strong,
.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.big {
  font-size: 1.4rem;
}

.text-white {
  color: var(--white-color);
}

.text-black {
  color: #000;
}

.text-dark {
  color: var(--first-color);
}

.text-light {
  color: var(--second-color);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.big-text {
  font-size: 1.6rem;
}

label {
  display: block;
  margin-bottom: 5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--first-color);
}

/* Text */

/* Spacing */

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

.m-40 {
  margin: 40px;
}

.m-60 {
  margin: 60px;
}

.m-80 {
  margin: 80px;
}

.mv-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mv-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mv-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mv-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mv-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mh-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mh-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mh-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mh-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mh-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-80 {
  margin-right: 80px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-80 {
  margin-left: 80px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-40 {
  padding: 40px;
}

.p-60 {
  padding: 60px;
}

.p-80 {
  padding: 80px;
}

.p10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-80 {
  padding-right: 80px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-80 {
  padding-left: 80px;
}

.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pv-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pv-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pv-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pv-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ph-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.ph-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.ph-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.ph-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.ph-80 {
  padding-left: 80px;
  padding-right: 80px;
}

/* Spacing */

/* Inputs */

label {
  font-weight: 700;
  color: var(--black-color);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

input,
select {
  width: 100%;
  padding: 10px 15px;
  font-size: 1em;
  border: var(--input-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent
    url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
    calc(100% - 15px) center / 16px no-repeat;
}

textarea {
  width: 100%;
  resize: vertical;
  min-height: 100px;
  max-height: 400px;
  border: var(--input-border);
  border-radius: var(--border-radius);
  padding: 10px 15px;
  transition: border 0.3s ease-in-out 0s;
}

input[type="checkbox"] {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: var(--input-border);
  border-radius: var(--border-radius);
  vertical-align: middle;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    center center / 0% no-repeat;
  transition: var(--fast-transition);
}

input[type="checkbox"]:checked {
  background: url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    center center / 80% no-repeat;
  border: var(--input-border-hover);
}

input[type="radio"] {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: var(--input-border);
  vertical-align: middle;
  appearance: none;
  border-radius: 50%;
}

input[type="radio"]:checked {
  background-color: var(--border-color-hover);
  border: var(--input-border-hover);
}

input:focus,
select:focus,
input:hover,
select:hover,
textarea:focus,
textarea:hover {
  border: var(--input-border-hover);
}

/* Inputs */

/* Tables */

table {
  width: 100%;
}

table.content-center td {
  vertical-align: middle;
}

thead,
th {
  text-align: left;
}

thead th,
table td {
  padding: 10px;
}

table tr {
  border-left: var(--input-border);
  border-right: var(--input-border);
}

table tr:last-of-type {
  border-bottom: var(--input-border);
}

table tr:nth-of-type(even) {
  background-color: var(--light-background);
}

thead th:first-of-type {
  border-top-left-radius: var(--border-radius);
}

thead th:last-of-type {
  border-top-right-radius: var(--border-radius);
}

thead {
  background-color: var(--first-color);
  color: var(--white-color);
}

/* Tables */

/* Buttons */

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  padding: 10px 25px;
  border-radius: var(--border-radius);
  background-color: var(--first-color);
  color: var(--white-color);
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
}

.btn.small {
  padding: 5px 10px;
}

.btn.navigation {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.navigation.disabled {
  background-color: var(--text-color);
  color: var(--white-color);
  cursor: default;
}

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

.btn.bold {
  font-weight: 600;
}

.btn:hover {
  background-color: var(--second-color);
  color: var(--black-color);
}

.btn.success {
  background-color: var(--success-color);
  color: var(--white-color);
}

.btn.success:hover {
  background-color: var(--dark-success-color);
}

.btn.danger {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.btn.danger:hover {
  background-color: var(--dark-danger-color);
}

.btn.warning {
  background-color: var(--warning-color);
  color: var(--black-color);
}

.btn.warning:hover {
  background-color: var(--dark-warning-color);
}

/* Buttons */

/* Alerts */

.alert {
  padding: 10px;
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--first-color);
  background-color: var(--defaul-alert-bg);
  color: var(--first-color);
  font-weight: 600;
}

.alert.danger {
  border: var(--border-width) solid var(--danger-color);
  background-color: var(--alert-danger-bg);
  color: var(--danger-color);
}

/* Alerts */

/* Backgrounds */

.light-bg {
  background-color: var(--light-background);
}

.first-bg {
  background-color: var(--first-color);
}

.second-bg {
  background-color: var(--second-color);
}

.second-hard-bg {
  background-color: var(--second-color-hard);
}

.second-soft-bg {
  background-color: var(--second-color-soft);
}

/* Backgrounds */

/* Header */

header {
  border-top: 4px solid var(--first-color);
}

header .navigation {
  border-bottom: 1px solid var(--first-color);
  background-color: var(--white-color);
}

header nav a .logo {
  max-height: 80px;
}

.language-flags li img {
  filter: grayscale(1);
}

.language-flags li:hover img,
.language-flags li.active img {
  filter: grayscale(0);
}

/* Header */

/* Content Items */

.card {
  background-color: var(--white-color);
  border: var(--input-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.card-header {
  padding: 20px;
  border-bottom: var(--input-border);
  font-weight: 500;
}

.card-header.light-bg {
  background-color: var(--light-background);
}

.card-header.gradient {
  background: linear-gradient(135deg, var(--first-color), var(--second-color));
  color: var(--white-color);
}

.card-content {
  padding: 20px;
}

.dash-icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--light-background);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#ref-parc img {
  max-height: 500px;
}

/* Content Items */

/* Footer */

footer {
  border-top: 1px solid var(--first-color);
}

footer img {
  max-height: 100px;
}

@media screen and (max-width: 768px) {
  footer img {
    max-height: unset;
    max-width: 120px;
  }
}

/* Footer */
