/* FONTS */
/* COLORS */
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;
}

ul li {
  line-height: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: bold;
}

small {
  font-size: 0.8em;
  line-height: 1.25em;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #dcd393;
}

h2 {
  margin-bottom: 1.5rem;
  color: #650f3c;
}
h2:has(.app-icon) {
  display: grid !important;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
@media (min-width: 1025px) {
  h2:has(.app-icon) {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1.5rem;
    align-items: center;
  }
}
h2:has(.app-icon) a {
  display: block;
  text-align: center;
}
h2:has(.app-icon) a .app-icon {
  transition: none;
  transform: translateY(-0.25rem);
}

h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: left;
  color: #650f3c;
}
h3:has(.app-icon) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

p {
  line-height: 1.75rem;
}

a {
  text-decoration: none;
  color: #dcd393;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  a {
    color: #4c6473;
  }
}
a:hover {
  color: #4c6473;
}

strong {
  color: #4c6473;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #dcd393;
}

::-webkit-scrollbar-thumb {
  background: #650f3c;
}

::-webkit-scrollbar-thumb:hover {
  background: #650f3c;
}

html {
  scroll-behavior: smooth;
}
html .turbo-progress-bar {
  height: 0.5rem;
  background-color: #dcd393;
  border-bottom: 0.25rem solid #650f3c;
  border-bottom-right-radius: 0.25rem;
}
html body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  color: #222222;
  background-color: #650f3c;
}
html body .app-header {
  position: sticky;
  top: 0;
  z-index: 9997;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background-color: #650f3c;
  border-bottom: 0.5rem solid #dcd393;
}
@media (min-width: 1025px) {
  html body .app-header {
    display: flex;
    justify-content: center;
    align-items: normal;
    box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
  }
}
html body .app-header .app-logo {
  display: block;
}
html body .app-header .app-logo img {
  display: block;
  height: 12dvh;
  transform: rotate(0deg);
  transform-origin: center center;
  filter: drop-shadow(0 0.25rem 0.5rem rgba(34, 34, 34, 0.5));
  transition: all 0.6s;
}
html body .app-header .app-logo:hover img {
  transform: rotate(360deg);
}
html body .app-header .app-logo:active img {
  transform: rotate(358deg);
}
@media (min-width: 1025px) {
  html body .app-header .app-logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  html body .app-header .app-logo img {
    margin-left: 0.5rem;
    height: 20dvh;
  }
}
html body .app-header .app-slogan {
  margin-bottom: 0;
  margin-right: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #dcd393;
}
@media (min-width: 1025px) {
  html body .app-header .app-slogan {
    /*display: none;*/
    opacity: 0;
  }
}
html body .app-main {
  flex: 1;
}
html body .app-main .app-section {
  padding: 3rem 1rem;
  margin: 0 0.5rem 3rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
}
@media (min-width: 1025px) {
  html body .app-main .app-section {
    padding: 3rem;
    margin: 0 auto 3rem;
    width: 1200px;
  }
}
html body .app-main .app-section:has(.app-filters) {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
html body .app-main .app-section:has(.app-filters) .app-text {
  width: calc(100% - 2rem);
  background-color: #dcd393;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
}
@media (min-width: 1025px) {
  html body .app-main .app-section:has(.app-filters) .app-text {
    width: calc(100% - 3rem);
  }
}
html body .app-main .app-section.cover {
  padding: 0;
  margin: 0;
}
@media (min-width: 1025px) {
  html body .app-main .app-section.cover {
    position: relative;
    margin: 0;
    width: auto;
  }
}
html body .app-main .app-section.cover img {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
}
@media (min-width: 1025px) {
  html body .app-main .app-section.cover img {
    height: 60dvh;
    object-position: center 90%;
  }
}
html body .app-main .app-section.cover .content {
  padding: 1rem 0.5rem;
  text-align: center;
  background-color: rgba(220, 211, 147, 0.5);
  border-top: 0.5rem solid #650f3c;
  box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
}
@media (min-width: 1025px) {
  html body .app-main .app-section.cover .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: rgba(34, 34, 34, 0.5);
    border-color: #dcd393;
    box-shadow: none;
  }
}
html body .app-main .app-section.cover .content:has(p) h1 {
  margin-bottom: 1rem;
}
html body .app-main .app-section.cover .content h1 {
  color: #650f3c;
}
@media (min-width: 1025px) {
  html body .app-main .app-section.cover .content h1 {
    color: #dcd393;
  }
}
html body .app-main .app-section.cover .content p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222222;
  text-transform: uppercase;
}
html body .app-main .app-section.cover .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  html body .app-main .app-section.cover .content p {
    color: #ffffff;
  }
}
html body .app-main .app-section.cover .content p strong {
  color: #dcd393;
}
@media (max-width: 767px) {
  html body .app-main .app-section.cover .content p strong {
    color: #4c6473;
  }
}
html body .app-main .app-section.post-figure {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
html body .app-footer {
  padding: 1.5rem 1rem;
  color: #ffffff;
  background-color: #650f3c;
  border-top: 0.5rem solid #dcd393;
}
html body .app-footer h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #dcd393;
}
html body .app-footer h2:has(.app-icon) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
html body .app-footer h2:has(.app-icon) a {
  color: #dcd393;
}
html body .app-footer h2:has(.app-icon) a:hover {
  color: #4c6473;
}
html body .app-footer h2:has(.app-icon) a .app-icon {
  transform: translateY(-2px) !important;
}
html body .app-footer p {
  line-height: 1.25rem;
}
html body .app-footer a {
  color: #ffffff;
}
html body .app-footer a:hover {
  color: #dcd393;
}
html body .app-footer a.active {
  font-weight: bold;
  color: #dcd393;
}
html body .app-footer strong {
  color: inherit;
}
html body .app-footer .footer-about {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: justify;
}
@media (max-width: 767px) {
  html body .app-footer .footer-links {
    display: none;
  }
}
@media (max-width: 767px) {
  html body .app-footer .footer-social {
    display: none;
  }
}
html body .app-footer .footer-contact ul li {
  line-height: 1.5rem;
  text-align: center;
}
html body .app-footer .footer-credits {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}

.app-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
@media (max-width: 767px) {
  .app-grid.two.xs {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .app-grid.two {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .app-grid.three.xs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .app-grid.three {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .app-grid.four.xs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .app-grid.four {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .app-grid.third {
    display: grid !important;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .app-grid.third.reverse {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1.5rem;
  }
}

.app-alert {
  position: fixed;
  top: 6.75rem;
  left: 0;
  right: 0;
  z-index: 9996;
  padding: 1.5rem 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  border-bottom: 0.5rem solid #dcd393;
}
@media (min-width: 1025px) {
  .app-alert {
    top: 4rem;
  }
}
.app-alert.info {
  color: #ffffff;
  background-color: #36739c;
}
.app-alert.success {
  color: #ffffff;
  background-color: #10784b;
}
.app-alert.warning {
  color: #ffffff;
  background-color: #d8802a;
}
.app-alert.danger {
  color: #ffffff;
  background-color: #d43747;
}

.app-image img {
  display: block;
  width: 100%;
  box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.5);
}
@media (min-width: 1025px) {
  .app-image img {
    height: 40dvh;
    object-fit: cover;
  }
}
@media (min-width: 1025px) {
  .app-image.large img {
    height: 50dvh;
  }
}

.contain {
  height: auto !important;
  object-fit: contain !important;
}

/*# sourceMappingURL=app.output.css.map */
