body main section .vertical-opener-container {
  flex: 1;
  padding: 0rem 1.5rem;
  background: var(--bgprimary);
  border-radius: 1.875rem;
  display: flex;
  flex-flow: column;
  transition: 0.2s padding-bottom;
}
body main section .vertical-opener-container.hidden {
  display: none;
}
body main section .vertical-opener-container .vertical-opener-elem {
  padding: 1rem 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
body main section .vertical-opener-container .vertical-opener-elem .title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
}
body main section .vertical-opener-container .vertical-opener-elem .open {
  font-size: 1.25rem;
  transform: rotate(0deg);
  transition: transform 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1rem;
  aspect-ratio: 0.866/1;
  flex-shrink: 0;
  background: #161A41;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  transform-origin: center;
}
body main section .vertical-opener-container .hidden-elem {
  height: 0;
  overflow: hidden;
  transition: 0.2s;
  text-align: justify;
}
body main section .vertical-opener-container .hidden-elem * {
  text-align: justify;
}
body main section .vertical-opener-container.visible {
  padding-bottom: 1rem;
}
body main section .vertical-opener-container.visible .vertical-opener-elem .open {
  transform: rotate(-90deg);
}
body main section .vertical-opener-container.visible .hidden-elem {
  transition: 0.2s;
}

body main section .content.max {
  max-width: 70rem !important;
}
body main section.form {
  background-color: var(--primary);
  background-image: none;
}
body main section.form div.section-title h1, body main section.form div.section-title h2 {
  color: #FFFFFF;
  -webkit-text-stroke: 0.1rem #161A41;
}
body main section.form div.section-title div {
  color: var(--bgprimary);
}
body main section .form-container {
  background: var(--bgprimary);
  border-radius: 1.875rem;
  padding: 2.25rem 2rem;
  margin: 0 1rem;
}
@media (max-width: 55rem) {
  body main section .form-container {
    padding: 1.5rem 1rem;
    margin: 0 0rem;
  }
}
body main section .form-container input::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
body main section .form-container .form-section-title {
  color: #161A41;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem 0;
}
body main section .form-container .form-section-title:first-of-type {
  margin-top: 0;
}
@media (max-width: 55rem) {
  body main section .form-container .form-section-title {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.875rem 0;
  }
}
body main section .form-container .form-subsection-title {
  color: #575578;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.875rem 0;
}
@media (max-width: 55rem) {
  body main section .form-container .form-subsection-title {
    font-size: 1rem;
  }
}
body main section .form-container .metadata-group {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5rem;
}
body main section .form-container .metadata-group.space-between {
  justify-content: space-between;
}
body main section .form-container .metadata-group.border {
  border-bottom: 0.1rem solid #868E96;
  padding-top: 0.5rem;
}
body main section .form-container .metadata-group .metadata-item {
  margin: 0 1rem;
  text-align: center;
}
body main section .form-container .metadata-group .metadata-item button {
  font-family: inherit;
  font-size: 1rem;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: none;
  margin: 0.1rem;
}
body main section .form-container .form-group {
  margin-bottom: 0.5rem;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group {
    margin-bottom: 0.5rem;
  }
}
body main section .form-container .form-group.flex-row {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.flex-row {
    gap: 0.75rem;
  }
}
body main section .form-container .form-group .flex-child {
  flex: 1 1 12.5rem;
  min-width: 0;
}
body main section .form-container .form-group .flex-child-large {
  flex: 2 1 18.75rem;
}
body main section .form-container .form-group .flex-child-small {
  flex: 1 1 9.375rem;
}
body main section .form-container .form-group .flex-child input {
  min-width: 0;
  width: 100%;
}
body main section .form-container .form-group.checkbox-group {
  display: flex;
  flex-flow: column;
}
body main section .form-container .form-group.checkbox-group.row {
  flex-flow: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
}
body main section .form-container .form-group.checkbox-group .form-radio-group {
  margin: 0.25rem 0rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #575578;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
}
body main section .form-container .form-group.checkbox-group .form-radio-group .radio-group-label {
  color: #575578;
  font-weight: normal;
  display: block;
  padding-bottom: 0 !important;
  font-size: 1rem;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.checkbox-group .form-radio-group .radio-group-label {
    font-size: 0.875rem;
  }
}
body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options {
  display: flex;
  flex-flow: row;
  gap: 0.75rem;
  margin: 0;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options {
    gap: 0.75rem;
  }
}
body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options .radio-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
}
body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options .radio-option input[type=radio] {
  margin: 0;
  width: auto;
  accent-color: var(--primary);
}
body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options .radio-option label {
  display: inline;
  padding-bottom: 0 !important;
  font-size: 1rem;
  color: #575578;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.checkbox-group .form-radio-group .radio-options .radio-option label {
    font-size: 0.875rem;
  }
}
body main section .form-container .form-group.checkbox-group .form-radio-group .form-error {
  margin-top: 0.25rem;
}
body main section .form-container .form-group.checkbox-group .form-checkbox {
  margin: 0 0.75rem;
  margin-bottom: 0.875rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #575578;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.checkbox-group .form-checkbox {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}
body main section .form-container .form-group.checkbox-group .form-checkbox input[type=checkbox] {
  margin: 0.2rem 0 0 0;
  width: auto;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
body main section .form-container .form-group.checkbox-group .form-checkbox label {
  cursor: pointer;
}
body main section .form-container .form-group.submit-group {
  margin-top: 2.25rem;
}
body main section .form-container .form-group.submit-group .status {
  text-align: center;
  padding: 0.75rem 2rem;
  color: #228b22;
  font-size: 1rem;
  font-weight: 800;
}
body main section .form-container .form-group.submit-group .status.red {
  color: #e60068;
}
body main section .form-container .form-group.submit-group button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 2.25rem;
  font-size: 1.25rem;
  font-family: inherit;
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 1.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  body main section .form-container .form-group.submit-group button:hover {
    background-color: var(--greyprimary);
  }
}
@media (max-width: 55rem) {
  body main section .form-container .form-group.submit-group button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
body main section .form-container .form-group label {
  color: #575578;
  font-weight: normal;
  display: block;
  font-size: 1rem;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group label {
    font-size: 0.875rem;
  }
}
body main section .form-container .form-group input, body main section .form-container .form-group select, body main section .form-container .form-group textarea {
  margin: 0.25rem 0 0.5rem 0;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd1d8;
  width: 100%;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
}
body main section .form-container .form-group input:focus, body main section .form-container .form-group select:focus, body main section .form-container .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
@media (max-width: 55rem) {
  body main section .form-container .form-group input, body main section .form-container .form-group select, body main section .form-container .form-group textarea {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
body main section .form-container .form-group input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
body main section .form-container .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23575578' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color: #161A41;
}
body main section .form-container .form-group textarea {
  resize: vertical;
  min-height: 6rem;
}
body main section .form-container .form-group .form-error {
  color: #e60068;
  font-size: 0.875rem;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
  list-style: none;
  padding: 0;
}
body main section .form-container .form-group .form-error li {
  margin: 0.25rem 0;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group .form-error {
    font-size: 0.625rem;
  }
}
body main section .form-container .form-group ::-moz-placeholder {
  color: #868E96;
  opacity: 0.7;
  font-size: 0.875rem;
}
body main section .form-container .form-group ::placeholder {
  color: #868E96;
  opacity: 0.7;
  font-size: 0.875rem;
}
@media (max-width: 55rem) {
  body main section .form-container .form-group ::-moz-placeholder {
    font-size: 0.625rem;
  }
  body main section .form-container .form-group ::placeholder {
    font-size: 0.625rem;
  }
}

body main section.faq {
  background-color: var(--primary);
  background-image: none;
}
body main section.faq div.section-title h1, body main section.faq div.section-title h2 {
  color: #FFFFFF;
  -webkit-text-stroke: 0.1rem #161A41;
}
body main section.faq div.section-title div {
  color: var(--bgprimary);
}
body main section.faq .content.max {
  max-width: 70rem;
}
body main section.faq input.filter {
  font-size: 1rem;
  font-family: inherit;
  border-radius: 1.875rem;
  padding: 0.5rem;
  border: none;
  background: var(--bgprimary);
  display: block;
  margin: 1rem auto;
  max-width: 90%;
}
body main section.faq .no-results {
  font-weight: 800;
  font-style: italic;
  color: var(--bgprimary);
  text-align: center;
  margin: 1rem;
  font-size: 1.25rem;
  display: none;
}
body main section.faq .no-results.visible {
  display: block;
}
body main section.faq .questions-flexbox {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
body main section.faq .form-container {
  margin-top: 1rem;
}
body main section.faq .form-container .title {
  margin-bottom: 0.5rem;
  line-height: 125%;
}

body {
  font-size: 1rem;
  background: none;
  font-family: Google Sans Flex, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  color: #161A41;
  --primary: #228b22;
  --bgprimary: #e8f3e8;
  --secondary: #895129;
  --bgsecondary: #f3ede9;
  --greyprimary: rgb(76, 97, 76);
  --greysecondary: #574b43;
  --iconig: url('/assets/icons/ig_primary.svg');
  --iconfb: url('/assets/icons/fb_primary.svg');
  --iconmail: url('/assets/icons/mail_primary.svg');
}
body [id] {
  scroll-margin-top: 4rem;
}
body header {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 2rem;
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  height: 4rem;
  background: #FFFFFF;
  border-bottom: 0.1rem solid #895129;
}
body header a {
  text-decoration: none;
}
@media (max-width: 55rem) {
  body header {
    flex-flow: column;
    padding: 0 0.5rem;
  }
}
body header .img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
@media (max-width: 55rem) {
  body header .img {
    width: 100%;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
}
body header .img .icon {
  flex-shrink: 1;
  height: 100%;
}
body header .img .icon a img {
  height: 100%;
  width: auto;
}
body header .img .title {
  text-align: center;
}
body header .img .title a {
  color: #895129;
  font-family: Oswald;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
}
body header .img .menu {
  height: 60%;
}
body header .img .menu #open-menu {
  transform: rotate(0deg);
  transition: transform 0.2s;
  display: none;
}
@media (max-width: 55rem) {
  body header .img .menu #open-menu {
    display: block;
    height: 100%;
    width: auto;
    cursor: pointer;
  }
}
@media (max-width: 55rem) {
  body header .links {
    position: absolute;
    z-index: 20;
    background: #FFFFFF;
    transition: transform 0.25s;
    right: 0;
    height: calc(100vh - 4rem);
    transform: translateX(calc(100% + 0.1rem));
    top: 4rem;
    border-left: 0.1rem solid #895129;
    padding: 0.5rem;
    display: flex;
    flex-flow: column;
    align-items: stretch;
  }
  body header .links.visible {
    transform: translateX(0.1rem);
  }
}
body header .links a {
  text-decoration: none;
  color: #161A41;
  margin-right: 0.5rem;
}
@media (max-width: 55rem) {
  body header .links a {
    margin: 0.5rem 1rem;
    text-align: center;
    transform: translateX(100%);
    transition: transform 0.2s;
    transition-delay: 0.1s;
  }
  body header .links a:nth-child(2) {
    transition-delay: 0.125s;
  }
  body header .links a:nth-child(3) {
    transition-delay: 0.15s;
  }
  body header .links a:nth-child(4) {
    transition-delay: 0.175s;
  }
}
body header .links a::before, body header .links a::after {
  content: "";
  background-color: #e8f3e8;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.25rem;
  border-radius: 100%;
  transition: background-color 0.2s;
  vertical-align: middle;
}
@media (max-width: 55rem) {
  body header .links a::before, body header .links a::after {
    display: none;
  }
}
body header .links a::after {
  display: none;
  margin-left: 0.25rem;
  margin-right: 0;
}
@media (max-width: 55rem) {
  body header .links a::after {
    display: inline-block;
  }
}
body header .links a {
  border-bottom: 0.1rem solid #228b22;
}
body header .links a:hover::before, body header .links a:hover::after {
  background-color: #228b22;
}
body header .links a:nth-of-type(2) {
  border-bottom: 0.1rem solid #895129;
}
body header .links a:nth-of-type(2):hover::before, body header .links a:nth-of-type(2):hover::after {
  background-color: #895129;
}
body header .links a:nth-of-type(3) {
  border-bottom: 0.1rem solid #e60068;
}
body header .links a:nth-of-type(3):hover::before, body header .links a:nth-of-type(3):hover::after {
  background-color: #e60068;
}
body header .links a:nth-of-type(4) {
  border-bottom: 0.1rem solid #019dda;
}
body header .links a:nth-of-type(4):hover::before, body header .links a:nth-of-type(4):hover::after {
  background-color: #019dda;
}
@media (max-width: 55rem) {
  body header .links.visible a {
    transform: translateX(0%);
  }
}
body header:has(.links.visible) .img .menu #open-menu {
  transform: rotate(180deg);
}
body main {
  margin-top: 4rem;
  display: flex;
  flex-flow: column;
  min-height: calc(100vh - 4rem);
}
body main #scrollto {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 19;
  border-radius: 0.5rem;
  border: 0.1rem solid #cbd1d8;
  border-right: 0.2rem solid #228b22;
  background: #FFFFFF;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 1;
  transition: opacity 0.2s;
}
body main #scrollto.hidden {
  opacity: 0;
  pointer-events: none;
}
body main #scrollto img {
  width: 1rem;
  height: auto;
}
body main section {
  --divider-src: url('/assets/divider_primary.webp');
}
body main section:nth-of-type(odd) {
  --primary: #895129;
  --bgprimary: #f3ede9;
  --secondary: #228b22;
  --bgsecondary: #e8f3e8;
  --greyprimary: #574b43;
  --greysecondary: rgb(76, 97, 76);
  --divider-src: url('/assets/divider_secondary.webp');
  --iconig: url('/assets/icons/ig_secondary.svg');
  --iconfb: url('/assets/icons/fb_secondary.svg');
  --iconmail: url('/assets/icons/mail_secondary.svg');
}
body main section:last-of-type {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main section {
  width: 100%;
  background-color: var(--bgprimary);
  background-image: url("/assets/bg_pattern.webp");
  background-repeat: repeat;
  background-size: 5rem;
  background-attachment: fixed;
}
@media (max-width: 55rem) {
  body main section {
    background-size: 2.5rem;
  }
}
body main section::before {
  content: "";
  position: absolute;
  background-image: var(--divider-src);
  background-repeat: repeat-x;
  background-size: contain;
  height: 4rem;
  width: 100%;
  z-index: 10;
  top: -2rem;
}
body main section#banner {
  height: 60rem;
  max-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;
  display: flex;
  flex-flow: column;
}
@media (max-width: 55rem) {
  body main section#banner {
    min-height: 20rem;
    max-height: 40vh;
  }
}
@media (max-width: 55rem) and (orientation: landscape) {
  body main section#banner {
    max-height: 60vh;
    min-height: 12rem;
  }
}
body main section#banner.narrow {
  height: 60rem;
  max-height: 30vh;
}
@media (max-width: 55rem) {
  body main section#banner.narrow {
    max-height: 20vh;
    min-height: 5rem;
  }
}
@media (max-width: 55rem) and (orientation: landscape) {
  body main section#banner.narrow {
    max-height: 40vh;
    min-height: 5rem;
  }
}
body main section#banner div.elem {
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;
}
body main section#banner div.elem.visible {
  opacity: 1;
}
body main section#banner .title {
  z-index: 5;
  -webkit-text-stroke: 0.1rem #228b22;
  width: 100%;
  padding: 1rem;
  border-radius: 1.875rem;
  margin-top: auto;
  margin-bottom: 10%;
  font-family: Oswald;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  line-height: 105%;
  color: #FFFFFF;
  text-shadow: 0.1rem 0.1rem 1rem #228b22;
}
@media (max-width: 55rem) {
  body main section#banner .title {
    font-size: 3rem;
  }
}
body main section#banner::before {
  display: none;
}
body main section div.section-title {
  font-family: Oswald;
  text-align: center;
  margin-bottom: 0.5rem;
}
body main section div.section-title h1, body main section div.section-title h2 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 115%;
}
body main section div.section-title div {
  color: var(--greyprimary);
  line-height: 100%;
}
body main section p {
  margin-bottom: 0.5rem;
}
body main section p.block {
  max-width: 50rem;
  margin: 0.25rem auto;
  text-align: center;
}
@media (max-width: 70rem) {
  body main section p.block {
    max-width: auto;
  }
}
body main section hr {
  width: 50%;
  height: 0.15rem;
  margin: 1rem auto;
  border: none;
  background: var(--primary);
}
body main section hr.secondary {
  background: var(--secondary);
}
body main section .list-flexbox {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0.5rem auto;
  gap: 0.75rem;
  width: 80%;
}
@media (max-width: 55rem) {
  body main section .list-flexbox {
    width: auto;
  }
}
body main section .list-flexbox .img {
  flex: 1;
  flex-basis: 15rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 1.875rem;
  transform: translateY(0px);
}
body main section .list-flexbox .img iframe {
  border-radius: 1.875rem;
  aspect-ratio: 2/1.25;
}
body main section .list-flexbox .desc {
  flex: 1;
  flex-basis: 15rem;
}
body main section .list-flexbox .desc .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
}
body main section .list-flexbox .desc ul {
  list-style-type: none;
}
@media (max-width: 55rem) {
  body main section .list-flexbox .desc ul {
    padding-right: 0.5rem;
  }
}
body main section .list-flexbox .desc ul li {
  color: #161A41;
  font-weight: 500;
  margin: 0.5rem 0;
  margin-left: 1.25rem;
  padding-left: 0.5rem;
}
body main section .list-flexbox .desc ul li::before {
  content: "";
  background-color: #228b22;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -1.25rem;
  vertical-align: middle;
  position: absolute;
  border-radius: 100%;
  top: calc(1.5em / 2);
  transform: translateY(-50%);
}
body main section .list-flexbox .desc ul li:nth-of-type(4n + 1)::before {
  background-color: #228b22;
}
body main section .list-flexbox .desc ul li:nth-of-type(4n + 2)::before {
  background-color: #895129;
}
body main section .list-flexbox .desc ul li:nth-of-type(4n + 3)::before {
  background-color: #e60068;
}
body main section .list-flexbox .desc ul li:nth-of-type(4n + 4)::before {
  background-color: #019dda;
}
body main section .list-nested-img-flexbox {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem auto;
  width: 80%;
}
@media (max-width: 55rem) {
  body main section .list-nested-img-flexbox {
    width: auto;
  }
}
body main section .list-nested-img-flexbox > .list {
  flex: 1;
  flex-basis: 15rem;
}
body main section .list-nested-img-flexbox .img {
  flex: 1;
  flex-basis: 15rem;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem;
  aspect-ratio: 4/3;
}
body main section .list-nested div.title {
  font-weight: 800;
  font-size: 1.25rem;
}
body main section .list-nested div.list {
  border-left: 0.2rem dotted #161A41;
  margin-left: 0.25rem;
}
body main section .list-nested div.list div.title {
  font-weight: inherit;
  font-size: inherit;
}
body main section .list-nested div.list div:not(.list, .title) {
  margin-left: 1.5rem;
}
body main section .list-nested div.list div:not(.list, .title)::before {
  content: "";
  background-color: #161A41;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -1rem;
  position: absolute;
  border-radius: 100%;
  top: calc(1.5em / 2);
  transform: translateY(-50%);
}
body main section .items {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  border-radius: 1.875rem;
  background: var(--bgprimary);
  padding: 1rem 0.25rem;
}
body main section .items button.arrow {
  background: none;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  padding: 0.25rem;
  border: none;
  display: block;
}
body main section .items button.arrow .triangle {
  display: block;
  width: 1rem;
  aspect-ratio: 0.866/1;
  background: var(--primary);
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
body main section .items button.arrow.right .triangle {
  transform: rotate(180deg);
}
@media (max-width: 55rem) {
  body main section .items button.arrow {
    display: block;
    padding: 0.25rem;
  }
}
body main section .items .items-scroll {
  width: 100%;
  overflow-x: hidden;
}
body main section .items .items-scroll .items-flex {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 0rem;
  transition: 0.2s;
}
body main section .items .items-scroll .items-flex a {
  text-decoration: none;
  color: inherit;
  font: inherit;
}
body main section .items .items-scroll .items-flex .item {
  width: 25rem;
  margin: 0 0.5rem;
  border-radius: 1.875rem;
  height: 100%;
  display: flex;
  flex-flow: column;
}
@media (max-width: 55rem) {
  body main section .items .items-scroll .items-flex .item {
    width: calc(100vw - 7.5rem);
    max-width: 35rem;
    padding: 0 0.75rem;
  }
}
body main section .items .items-scroll .items-flex .item .title {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.25rem;
  color: var(--primary);
  padding-top: 0.5rem;
  line-height: 125%;
}
body main section .items .items-scroll .items-flex .item hr {
  margin: 0 auto;
  margin-bottom: 0.3rem;
  width: 75%;
}
body main section .items .items-scroll .items-flex .item .desc {
  flex: 1;
  margin: auto;
  display: flex;
  flex-flow: row;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 55rem) {
  body main section .items .items-scroll .items-flex .item .desc {
    flex-wrap: wrap;
    font-size: 0.875rem;
  }
}
body main section .items .items-scroll .items-flex .item .desc div.text {
  flex: 1;
  flex-basis: 15rem;
  padding: 0 0.5rem;
  line-height: 125%;
  text-align: center;
}
body main section .items .items-scroll .items-flex .item .desc div.text.has-img {
  border-left: 0.15rem solid var(--primary);
  text-align: left;
}
@media (max-width: 55rem) {
  body main section .items .items-scroll .items-flex .item .desc div.text.has-img {
    border-left: none;
    text-align: center;
  }
}
@media (max-width: 55rem) {
  body main section .items .items-scroll .items-flex .item .desc div.text {
    border-left: none;
    text-align: center;
  }
}
body main section .items .items-scroll .items-flex .item .desc .img {
  flex: 1;
  flex-basis: 9.5rem;
  aspect-ratio: 1.25/1;
  max-width: 12rem;
  min-width: 9rem;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 55rem) {
  body main section .items .items-scroll .items-flex .item .desc .img {
    min-width: 5rem;
    aspect-ratio: 1.5/1;
  }
}
body main section .items .items-scroll .items-flex .item .desc .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main section .content {
  max-width: 70rem;
  margin: auto;
  background: #FFFFFF;
  padding: 2.5rem 0.75rem;
  padding-bottom: 3.5rem;
  border: 0.1rem dashed var(--primary);
  border-top: 0;
  border-bottom: 0;
  flex: 1;
  width: 100%;
}
@media (max-width: 70rem) {
  body main section .content {
    border: 0;
  }
}
body main section .content.max {
  max-width: unset;
  background: none;
  border: none;
}
body main section#footer {
  font-size: 1rem;
  color: var(--primary);
}
body main section#footer .content {
  padding: 2.75rem 0.75rem;
  padding-bottom: 2rem;
}
body main section#footer .title {
  text-align: center;
}
body main section#footer .title a {
  color: inherit;
  text-decoration: none;
}
body main section#footer .subtitle {
  text-align: center;
  font-size: 0.875rem;
}
body main section#footer .subtitle a {
  color: inherit;
  text-decoration: none;
}
body main section#footer .footer-links {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}
body main section#footer .footer-links a {
  margin: 0.5rem 1rem;
}
body main section#footer .footer-links a.ig, body main section#footer .footer-links a.fb, body main section#footer .footer-links a.mail {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1/1;
  width: 1.5rem;
}
body main section#footer .footer-links a.ig {
  background-image: var(--iconig);
}
body main section#footer .footer-links a.fb {
  background-image: var(--iconfb);
}
body main section#footer .footer-links a.mail {
  background-image: var(--iconmail);
}/*# sourceMappingURL=base.css.map */