*, *::before, *::after {
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
body {
  min-height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
body.scroll-locked {
  overflow: hidden;
  height: 100vh;
}
.mobile {
  display: none;
}
body, input, button, textarea {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  outline: none;
  color: black;
}
body *:focus, input *:focus, button *:focus, textarea *:focus {
  outline: none;
}
body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  background-color: whitesmoke;
}
p {
  line-height: 24px;
  margin: 0;
}
h1, h2, h3, h4, h5 {
  font-weight: 600;
  font-family: "Staatliches", sans-serif;
  letter-spacing: 0;
  margin: 0;
  color: black;
}
h1 {
  font-size: 60px;
  line-height: 1.2em;
}
h2 {
  font-size: 36px;
  line-height: 1.2em;
}
h3 {
  font-size: 100%;
  line-height: 1.2em;
}
a {
  font-family: "Roboto", sans-serif;
  text-decoration: none !important;
}
p + p {
  margin-top: 15px;
}
ul li {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #6b6767;
  line-height: 24px;
}
.clr {
  clear: both;
}
.container {
  width: calc(100% - 130px);
  max-width: 1150px;
  margin: 0 auto;
}
.container.large {
  max-width: none;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: #009440;
  font-size: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: "Staatliches";
}
.pagination .page-numbers:hover {
  background-color: #009440;
  color: white;
  border: 2px solid #009440;
}
.pagination .page-numbers.current {
  background-color: #ffcb00;
  color: white;
  border-color: #ffcb00;
  cursor: default;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  font-weight: bold;
}
.button, a.button, button {
  height: 40px;
  padding: 0 15px;
  text-align: center;
  line-height: 38px;
  font-family: "Staatliches";
  color: black;
  font-size: 20px;
  display: inline-block;
  position: relative;
  border: solid 2px black;
  transition: all 125ms linear;
  cursor: pointer;
  background-color: transparent;
}
.button span, a.button span, button span {
  z-index: 1;
  position: relative;
}
.button:before, a.button:before, button:before {
  content: "";
  background-color: #009440;
  position: absolute;
  width: 0;
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  transition: all 125ms ease-out;
}
.button:hover, a.button:hover, button:hover {
  border-color: #009440;
  color: white;
}
.button:hover:before, a.button:hover:before, button:hover:before {
  width: calc(100% + 4px);
}
.button.white, a.button.white, button.white {
  color: white;
  border: solid 2px white;
}
/* =WordPress Core
-------------------------------------------------------------- */
/* == WordPress WYSIWYG Editor Styles == */
img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
}
.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone, img.alignnone {
  /* not sure about this one */
}
.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
@media (max-width: 980px) {
  .container {
    width: calc(100% - 60px);
  }
}
@media (max-width: 736px) {
  body {
    font-size: 14px;
  }
  .mobile {
    display: inherit;
  }
  .desktop {
    display: none;
  }
  h1 {
    font-size: 44px;
    line-height: 1.2em;
  }
  h2 {
    font-size: 32px;
    line-height: 1.2em;
  }
  h3 {
    font-size: 24px;
    line-height: 1.2em;
  }
  h4 {
    font-size: 18px;
    line-height: 1.2em;
  }
}
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
header * {
  pointer-events: auto;
}
header:before {
  transition: all 500ms linear;
  content: "";
  width: 100%;
  height: 10vh;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background-color: transparent;
  /* fallback color if gradients are not supported */
  background-image: -webkit-linear-gradient(top, #575252, rgba(0, 0, 0, 0));
  /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
  background-image: -moz-linear-gradient(top, #575252, rgba(0, 0, 0, 0));
  /* For Firefox (3.6 to 15) */
  background-image: -o-linear-gradient(top, #575252, rgba(0, 0, 0, 0));
  /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(to bottom, #575252, rgba(0, 0, 0, 0));
  /* Standard syntax; must be last */
}
header .menu_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  padding: 0 65px;
  left: 0;
  top: 30px;
}
header .menu_wrapper .left_head {
  flex-shrink: 0;
}
header .menu_wrapper .left_head .logo_container a, header .menu_wrapper .left_head .logo_container_mobile a {
  display: block;
  height: 60px;
}
header .menu_wrapper .left_head .logo_container a img, header .menu_wrapper .left_head .logo_container_mobile a img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 60px;
}
header .menu_wrapper .left_head .logo_container a img.img_logo_small, header .menu_wrapper .left_head .logo_container_mobile a img.img_logo_small {
  display: none;
}
header .menu_wrapper .left_head .logo_container_mobile {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -10px;
}
header .menu_wrapper .left_head .logo_container_mobile a {
  height: 50px;
}
header .menu_wrapper .left_head .menu_mobile_trigger {
  display: none;
}
header .menu_wrapper .right_head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
}
header .menu_wrapper .right_head .phone {
  display: flex;
  align-items: center;
}
header .menu_wrapper .right_head .phone a {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: all 150ms;
}
header .menu_wrapper .right_head .phone a p {
  margin-left: 10px;
}
header .menu_wrapper .right_head .phone a:hover {
  color: #009440;
}
header .menu_wrapper .right_head .language_menu {
  margin-left: 30px;
  position: relative;
}
header .menu_wrapper .right_head .language_menu .current_language {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
}
header .menu_wrapper .right_head .language_menu .current_language .chevron {
  position: absolute;
  right: 10px;
  transform: translateX(130%);
  transition: all 300ms ease-out;
}
header .menu_wrapper .right_head .language_menu .current_language.clicked .chevron {
  transform-origin: 50% 50%;
  transform: translateX(130%) rotate(180deg);
}
header .menu_wrapper .right_head .language_menu .other_languages {
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  right: 0;
  margin: 0;
  top: 65px;
  list-style: none;
  padding: 8px 12px;
  width: 145px;
  transition: all 300ms ease-out;
  background-color: white;
}
header .menu_wrapper .right_head .language_menu .other_languages .language {
  padding: 5px 0;
  width: 100%;
}
header .menu_wrapper .right_head .language_menu .other_languages .language a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #8e8e8e;
  font-weight: 700;
}
header .menu_wrapper .right_head .language_menu .other_languages .language a img {
  margin-left: 7px;
}
header .menu_wrapper .right_head .language_menu .other_languages.clicked {
  pointer-events: auto;
  opacity: 1;
  padding: 8px 12px;
  top: 45px;
}
header .menu_wrapper .right_head .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}
header .menu_wrapper .right_head .menu li {
  position: relative;
}
header .menu_wrapper .right_head .menu li:last-child {
  padding-right: 0;
}
header .menu_wrapper .right_head .menu li a {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  display: block;
  position: relative;
  color: white;
  text-transform: uppercase;
  transition: all 125ms linear;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
header .menu_wrapper .right_head .menu li a:before {
  content: "";
  position: absolute;
  transition: all 125ms linear;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: #ffcb00;
}
header .menu_wrapper .right_head .menu li a:hover {
  color: #009440;
  background-color: white;
}
header .menu_wrapper .right_head .menu li a:hover:before {
  width: calc(100% - 36px);
}
header .menu_wrapper .right_head .menu li.current_page_item a {
  color: #009440;
  background-color: white;
}
header .menu_wrapper .right_head .menu li > a:hover + ul.sub-menu, header .menu_wrapper .right_head .menu li ul.sub-menu:hover {
  display: block;
}
header .menu_wrapper .right_head .menu li ul.sub-menu {
  display: none;
  position: absolute;
  background-color: #009440;
  list-style: none;
  padding: 0;
  margin: 0;
  bottom: 0;
  transform: translateY(100%);
  min-width: 100%;
  padding: 18px;
}
header .menu_wrapper .right_head .menu li ul.sub-menu li a {
  padding: 0;
  color: white;
  white-space: nowrap;
  background-color: transparent;
}
header .menu_wrapper .right_head .menu li ul.sub-menu li a:before {
  display: none;
}
header .menu_wrapper .right_head .menu li ul.sub-menu li a:hover {
  color: #ffcb00;
  background-color: transparent;
}
header .copyrights {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column-reverse;
  height: 100vh;
  width: 65px;
  align-items: center;
  padding: 30px 0;
}
header .copyrights p {
  flex-shrink: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: white;
  padding-top: 25px;
  position: relative;
}
header .copyrights p span {
  color: #009440;
  position: absolute;
  transform: rotate(-180deg);
  left: 0;
  top: 0;
}
header .copyrights .line {
  width: 2px;
  height: 100%;
  background-color: #009440;
  margin-bottom: 30px;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .copyrights p {
    transform: rotate(90deg) translateX(-37%);
    padding: 5px;
  }
}
header .menu_mobile_wrapper {
  transform: translateX(-100%);
  transition: all 500ms ease-out;
  overflow: hidden;
  opacity: 0;
}
header .menu_mobile_wrapper .close_mobile_menu {
  position: absolute;
  top: 30px;
  right: 30px;
  color: black;
  width: 30px;
  height: 30px;
  border: solid 2px black;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu_mobile_wrapper .close_mobile_menu i {
  font-size: 16px;
}
header .menu_mobile_wrapper .menu {
  transform: translateX(-100%);
  pointer-events: none;
  opacity: 0;
  transition: all 1000ms ease-out;
}
header .menu_mobile_wrapper.clicked {
  transform: translateX(0);
  opacity: 1;
  height: 100vh;
  width: 100%;
  background-color: white;
  z-index: 100;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu_mobile_wrapper.clicked .menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
header .menu_mobile_wrapper ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
header .menu_mobile_wrapper ul li {
  padding: 5px 0;
}
header .menu_mobile_wrapper ul li a {
  outline: none;
  position: relative;
  color: black;
  font-size: 24px;
  font-family: "Staatliches", sans-serif;
}
header .menu_mobile_wrapper ul li.current-menu-item > a {
  color: #009440;
}
header .menu_mobile_wrapper ul li ul.sub-menu {
  padding-left: 30px;
}
header .menu_mobile_wrapper ul li ul.sub-menu li a {
  font-size: 20px;
}
/* IF NOT HOME */
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body:not(.home) header .copyrights p {
    background-color: white;
  }
}
body:not(.home) header .copyrights p {
  color: black;
}
/* IF Scrolled */
body.scrolled header:before {
  height: 15vh;
  opacity: 0.9;
}
footer {
  background-color: #575252;
  padding: 40px;
  border-left: solid 65px white;
}
@media (max-width: 1280px) {
  header .menu_wrapper .right_head .menu {
    padding-left: 20px;
  }
  header .menu_wrapper .right_head .menu li {
    padding: 18px 9px;
  }
}
@media (max-width: 980px) {
  header .copyrights {
    width: 30px;
  }
  header .menu_wrapper {
    min-height: 40px;
    justify-content: space-between;
    padding: 0 30px;
  }
  header .menu_wrapper .left_head {
    display: flex;
    align-items: center;
  }
  header .menu_wrapper .left_head .menu_mobile_trigger {
    display: block;
    margin-right: 0;
    color: white;
  }
  header .menu_wrapper .left_head .menu_mobile_trigger .open_mobile_menu {
    width: 30px;
    height: 30px;
    border: solid 2px white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .menu_wrapper .left_head .menu_mobile_trigger .open_mobile_menu i {
    font-size: 16px;
  }
  header .menu_wrapper .left_head .logo_container {
    height: 30px;
  }
  header .menu_wrapper .left_head .logo_container a {
    margin-right: 10px;
    height: 30px;
  }
  header .menu_wrapper .left_head .logo_container a img {
    max-height: 30px;
  }
  header .menu_wrapper .left_head .logo_container a img.img_logo {
    display: none;
  }
  header .menu_wrapper .left_head .logo_container a img.img_logo_small {
    display: block;
  }
  header .menu_wrapper .right_head {
    width: auto;
  }
  header .menu_wrapper .right_head .menu {
    display: none;
  }
  footer {
    border-left: solid 30px white;
  }
}
.default_page {
  background-color: white;
  padding-bottom: 80px;
  min-height: calc(100vh - 80px);
}
.default_page .hero {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.default_page .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.default_page .container.title {
  margin-top: -75px;
  position: relative;
  z-index: 2;
}
.default_page .container.title h1 {
  background-color: white;
  font-family: "Staatliches", sans-serif;
  font-size: 70px;
  color: black;
  display: inline-block;
  padding: 30px 50px;
  position: relative;
}
.default_page .container.title h1 .line {
  height: 20px;
  width: 25%;
  background-color: #009440;
}
.default_page .container .custom_content .block {
  display: flex;
  align-items: center;
  position: relative;
  /* Images on left side | Text on right side */
}
.default_page .container .custom_content .block:first-child {
  margin-top: 50px;
}
.default_page .container .custom_content .block:last-child {
  margin-bottom: 50px;
}
.default_page .container .custom_content .block.fulltext {
  background-color: whitesmoke;
  display: block;
}
.default_page .container .custom_content .block.fulltext .inner_block {
  display: block;
}
.default_page .container .custom_content .block.fullimage {
  display: block;
}
.default_page .container .custom_content .block.fullimage .inner_block img {
  max-width: 100%;
}
.default_page .container .custom_content .block.image_text {
  align-items: stretch;
}
.default_page .container .custom_content .block.image_text > div {
  width: 50%;
}
.default_page .container .custom_content .block.image_text > div.image {
  position: relative;
  overflow: hidden;
  /* IE10+ CSS styles go here */
}
.default_page .container .custom_content .block.image_text > div.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .default_page .container .custom_content .block.image_text > div.image img {
    /* IE HACK */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 100%;
    height: auto;
    /* END IE HACK */
  }
  .default_page .container .custom_content .block.image_text > div.image.vertical_fill img {
    width: auto;
    height: 100%;
    min-width: auto;
    min-height: 100%;
  }
}
.default_page .container .custom_content .block.text_image {
  align-items: stretch;
}
.default_page .container .custom_content .block.text_image > div {
  width: 50%;
}
.default_page .container .custom_content .block.text_image > div.image {
  position: relative;
  overflow: hidden;
  /* IE10+ CSS styles go here */
}
.default_page .container .custom_content .block.text_image > div.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .default_page .container .custom_content .block.text_image > div.image img {
    /* IE HACK */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 100%;
    height: auto;
    /* END IE HACK */
  }
  .default_page .container .custom_content .block.text_image > div.image.vertical_fill img {
    width: auto;
    height: 100%;
    min-width: auto;
    min-height: 100%;
  }
}
.default_page .container .custom_content .block.text_image > div.text {
  background: whitesmoke;
}
.default_page .container .custom_content .block.text_text > div {
  width: 50%;
}
.default_page .container .custom_content .block.text_text > div.righttext {
  background: whitesmoke;
}
.default_page .container .custom_content .block .text {
  padding: 30px 60px;
  display: block;
  text-align: left;
}
.default_page .container .custom_content .block .text h2 {
  color: black;
  font-size: 50px;
  margin-bottom: 15px;
}
.default_page .container .custom_content .block .text p, .default_page .container .custom_content .block .text ul, .default_page .container .custom_content .block .text li {
  font-size: 14px;
  color: black;
}
.default_page .container .custom_content .block .text ul {
  padding: 0;
  margin: 0;
}
.default_page .container .default_content {
  padding: 30px 60px;
}
@media (max-width: 980px) {
  .default_page {
    padding-bottom: 30px;
  }
  .default_page .hero {
    height: 220px;
  }
  .default_page .container.title {
    margin-top: -50px;
  }
  .default_page .container.title h1 {
    font-size: 55px;
    padding: 20px 40px;
  }
  .default_page .container.title h1 .line {
    height: 15px;
  }
  .default_page .container .custom_content .block:first-child {
    margin-top: 25px;
  }
  .default_page .container .custom_content .block:last-child {
    margin-bottom: 25px;
  }
  .default_page .container .custom_content .block .text {
    padding: 30px 30px;
  }
  .default_page .container .custom_content .block .text h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .default_page .container .custom_content .block .text p, .default_page .container .custom_content .block .text ul, .default_page .container .custom_content .block .text li {
    font-size: 14px;
    color: black;
  }
  .default_page .container .custom_content .block .text ul {
    padding: 0;
  }
}
@media (max-width: 736px) {
  .default_page .hero {
    height: 180px;
  }
  .default_page .container.title {
    margin-top: -40px;
  }
  .default_page .container.title h1 {
    font-size: 40px;
    display: inline-block;
    padding: 15px 25px;
  }
  .default_page .container.title h1 .line {
    height: 10px;
  }
  .default_page .container .custom_content .block {
    /* Images on left side | Text on right side */
  }
  .default_page .container .custom_content .block:first-child {
    margin-top: 15px;
  }
  .default_page .container .custom_content .block:last-child {
    margin-bottom: 15px;
  }
  .default_page .container .custom_content .block.image_text {
    flex-direction: column;
  }
  .default_page .container .custom_content .block.image_text > div {
    width: 100%;
  }
  .default_page .container .custom_content .block.image_text > div.image {
    order: 2;
  }
  .default_page .container .custom_content .block.image_text > div.text {
    order: 1;
  }
  .default_page .container .custom_content .block.text_image {
    flex-direction: column;
  }
  .default_page .container .custom_content .block.text_image > div {
    width: 100%;
  }
  .default_page .container .custom_content .block.text_text {
    flex-direction: column;
  }
  .default_page .container .custom_content .block.text_text > div {
    width: 100%;
  }
  .default_page .container .default_content {
    padding: 30px 30px;
  }
}
@media (max-width: 480px) {
  .default_page .container.title h1 {
    font-size: 26px;
    padding: 10px 20px;
  }
  .default_page .container.title h1 .line {
    height: 10px;
  }
  .default_page .container .custom_content .block .text {
    padding: 30px 15px;
  }
}
.contact_page .contact_columns {
  display: flex;
}
.contact_page .contact_columns .infos {
  padding: 0 25px 0 50px;
  width: 30%;
}
.contact_page .contact_columns .infos .infos_contacts {
  /* Elements with a fontawesome <i> inside */
}
.contact_page .contact_columns .infos .infos_contacts .phone, .contact_page .contact_columns .infos .infos_contacts .email {
  margin-top: 30px;
}
.contact_page .contact_columns .infos .infos_contacts .email p a {
  color: black;
}
.contact_page .contact_columns .infos .infos_contacts .email p a:hover {
  color: #009440;
}
.contact_page .contact_columns .infos .infos_contacts .icon {
  position: relative;
}
.contact_page .contact_columns .infos .infos_contacts .icon i {
  position: absolute;
  top: 2px;
  font-size: 1.2em;
  left: -30px;
  color: #009440;
}
.contact_page .contact_columns .infos .infos_social {
  margin-top: 30px;
}
.contact_page .contact_columns .infos .infos_social a {
  color: black;
  margin-right: 10px;
}
.contact_page .contact_columns .infos .infos_social a i {
  font-size: 1.4em;
}
.contact_page .contact_columns .infos .infos_inscription {
  margin-top: 25px;
}
.contact_page .contact_columns .content {
  width: 70%;
  text-align: center;
}
.contact_page .contact_columns .content h2 {
  margin-bottom: 30px;
}
.contact_page .contact_columns .content .contact_reason_why {
  max-width: 80%;
  margin: 30px auto 0 auto;
  text-align: left;
}
.contact_page .contact_columns .content .forms_container .form {
  transition: all 250ms linear;
  overflow: hidden;
}
.contact_page .contact_columns .content .forms_container .form:not(.hidden) {
  opacity: 1;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  pointer-events: auto;
}
.contact_page .contact_columns .content .forms_container .form.hidden {
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  border: solid 2px rgba(0, 0, 0, 0.07);
}
.wpcf7-form .line {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.wpcf7-form .line.submit {
  margin-bottom: 0;
}
.wpcf7-form .line .field-label {
  flex: 0 0 200px;
  max-width: 200px;
  padding-top: 0.6rem;
  font-size: 1.2em;
  font-weight: bold;
  color: #009440;
  font-family: "Staatliches", sans-serif;
}
.wpcf7-form .line .field-label .required {
  color: #ffcb00;
  margin-left: 0.3rem;
}
.wpcf7-form .line .field-input {
  flex: 1;
}
.wpcf7-form .line .field-input input, .wpcf7-form .line .field-input textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.07);
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.wpcf7-form .line .field-input input:focus, .wpcf7-form .line .field-input textarea:focus {
  border-color: #009440;
  outline: none;
}
.wpcf7-form .line .field-input textarea {
  min-height: 150px;
}
.wpcf7-form .line.submit {
  flex-direction: column;
  align-items: flex-start;
}
.wpcf7-form .line.submit p {
  width: 100%;
}
.wpcf7-form .line.submit input[type="submit"] {
  width: 100%;
  background-color: #009440;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  font-family: "Staatliches", sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.wpcf7-form .line.submit input[type="submit"]:hover {
  background-color: #ffcb00;
}
@media (max-width: 980px) {
  .contact_page .contact_columns {
    flex-direction: column;
  }
  .contact_page .contact_columns .infos, .contact_page .contact_columns .content {
    width: 100%;
  }
  .contact_page .contact_columns .infos .infos_contacts {
    display: flex;
  }
  .contact_page .contact_columns .infos .infos_contacts > div {
    width: 50%;
  }
  .contact_page .contact_columns .infos .infos_contacts .phone_email_container > div:first-child {
    margin-top: 0;
  }
  .contact_page .contact_columns .infos .infos_contacts .phone_email_container .phone, .contact_page .contact_columns .infos .infos_contacts .phone_email_container .email {
    margin-top: 15px;
  }
  .contact_page .contact_columns .infos .infos_social {
    width: 100%;
    text-align: center;
  }
  .contact_page .contact_columns .content {
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    border-bottom: solid 2px whitesmoke;
  }
  .contact_page .contact_columns .content .contact_reason_why {
    max-width: 100%;
  }
}
@media (max-width: 736px) {
  .wpcf7-form .line .field-input input, .wpcf7-form .line .field-input textarea {
    padding: 0.4rem 0.6rem;
  }
  .wpcf7-form .line {
    flex-direction: column;
  }
  .wpcf7-form .line .field-label {
    max-width: 100%;
    flex: 0 0 auto;
    padding-top: 0;
    margin-bottom: 0.3rem;
  }
  .wpcf7-form .line .field-input {
    width: 100%;
  }
  .wpcf7-form .line .contact_page .contact_columns .infos .infos_contacts {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .wpcf7-form .line .contact_page .contact_columns .infos .infos_contacts > div {
    width: 100%;
  }
  .wpcf7-form .line .contact_page .contact_columns .infos .infos_contacts .phone_email_container > div:first-child {
    margin-top: 15px;
  }
  .wpcf7-form .line .contact_page .contact_columns .infos .infos_contacts .icon i {
    position: relative;
    left: 0;
  }
  .wpcf7-form .line .contact_page .contact_columns .content h2 {
    margin-bottom: 15px;
    font-size: 26px;
    margin-top: 15px;
  }
  .wpcf7-form .line .contact_page .contact_columns .content .form_selector {
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 auto;
  }
  .wpcf7-form .line .contact_page .contact_columns .content .form_selector button {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 15px auto;
  }
}
@media (max-width: 480px) {
  .contact_page .contact_columns .content .form_selector button {
    padding: 15px 7px;
  }
  .contact_page .contact_columns .content .form_selector button .main {
    font-size: 20px;
    margin-bottom: 7px;
  }
}
#homepage {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
#homepage .bg_image {
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: contain;
  transform-origin: center;
  transform: scale(1) translate(-50%, 0);
  position: relative;
  left: 50%;
  z-index: 1;
  /* animation-name duration timing-function delay iteration-count direction fill-mode */
  -webkit-animation: bg_kenburns 300s ease-out 0.5s 1 normal forwards;
  animation: bg_kenburns 300s ease-out 0.5s 1 normal forwards;
}
#homepage .catchphrase {
  position: absolute;
  z-index: 3;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}
#homepage .catchphrase p {
  margin-bottom: 30px;
  font-family: "Staatliches", sans-serif;
  font-size: 95px;
  line-height: 60px;
  color: white;
}
#homepage .catchphrase p small {
  font-size: 48px;
}
#homepage .catchphrase .line {
  height: 20px;
  width: 25%;
  background-color: #009440;
}
#homepage .catchphrase .home_latestarticle_title {
  font-size: 25px;
  margin-bottom: 5px;
  margin-top: 30px;
  line-height: 35px;
  color: #ffcb00;
}
#homepage .catchphrase .latest-article .title {
  font-size: 30px;
  margin-bottom: 5px;
  line-height: 35px;
}
#homepage .catchphrase .latest-article .actions {
  display: flex;
  flex-wrap: wrap;
}
#homepage .catchphrase .latest-article .actions a {
  margin-top: 15px;
  height: 40px;
  padding: 0 15px;
  text-align: center;
  line-height: 38px;
  font-family: "Staatliches";
  color: white;
  font-size: 20px;
  display: inline-block;
  position: relative;
  border: solid 2px white;
  transition: all 125ms linear;
}
#homepage .catchphrase .latest-article .actions a:before {
  content: "";
  background-color: #009440;
  position: absolute;
  z-index: -1;
  width: 0;
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  transition: all 125ms ease-out;
}
#homepage .catchphrase .latest-article .actions a:hover {
  border-color: #009440;
}
#homepage .catchphrase .latest-article .actions a:hover:before {
  width: calc(100% + 4px);
}
#homepage .catchphrase .latest-article .actions a:not(:last-child) {
  margin-right: 5px;
}
#homepage .contact_block {
  position: absolute;
  z-index: 3;
  bottom: 80px;
  right: 65px;
  padding: 30px;
  border: solid 2px white;
  width: 300px;
  text-align: right;
}
#homepage .contact_block p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: white;
}
#homepage .contact_block p span {
  font-weight: 700;
}
#homepage .contact_block a.button {
  margin-top: 60px;
}
#homepage .contact_block .kungfu {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  padding-top: 10px;
  margin-right: -2px;
  display: flex;
  align-items: baseline;
  width: max-content;
}
#homepage .contact_block .kungfu .button {
  margin-top: 0;
}
#homepage:before {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(90, 73, 21, 0.4);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  animation-duration: 5s;
  animation-name: bg_before_fadein;
  animation-iteration-count: 1;
  pointer-events: none;
}
#homepage:after {
  content: "";
  position: absolute;
  height: 95%;
  width: 30%;
  z-index: 2;
  top: 11%;
  left: 38%;
  background: transparent url(../images/dessin_filigrane.png) left center no-repeat;
  background-size: contain;
}
@keyframes bg_before_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bg_kenburns {
  from {
    transform: scale(1) translate(-50%, 0);
  }
  to {
    transform: scale(1.7) translate(-55%, 60px);
  }
}
@media (max-width: 980px) {
  #homepage .catchphrase {
    left: 10%;
    top: 45%;
  }
  #homepage .catchphrase p {
    margin-bottom: 20px;
    font-size: 65px;
    line-height: 70px;
  }
  #homepage .catchphrase p small {
    font-size: 38px;
  }
  #homepage .catchphrase .line {
    height: 15px;
  }
  #homepage .catchphrase .home_latestarticle_title {
    margin-top: 15px;
  }
  #homepage .catchphrase .latest-article .title {
    font-size: 25px;
    margin-bottom: 5px;
    line-height: 27px;
  }
  #homepage .contact_block {
    right: 30px;
    padding: 15px;
  }
  #homepage .contact_block a {
    margin-top: 15px;
  }
}
@media (max-width: 736px) {
  #homepage .catchphrase {
    width: auto;
    padding-right: 10px;
  }
  #homepage:after {
    height: 90%;
    width: 90%;
    top: 5%;
    left: 5%;
  }
  #homepage .contact_block a.button {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  #homepage .catchphrase {
    left: 10%;
  }
  #homepage .catchphrase p {
    margin-bottom: 15px;
    font-size: 45px;
    line-height: 45px;
  }
  #homepage .catchphrase .line {
    height: 10px;
  }
  #homepage .contact_block {
    padding: 10px;
  }
  #homepage .contact_block a {
    margin-top: 10px;
    font-size: 16px;
    line-height: 34px;
    height: 34px;
  }
}
section.blocks {
  padding: 0;
}
section.blocks.last_post {
  margin-bottom: 100px;
}
section.blocks .content_blocks .block {
  margin: 75px 0 0 0;
  display: flex;
  align-items: center;
  position: relative;
  align-items: stretch;
  background: whitesmoke;
  /* Images on left side | Text on right side */
}
section.blocks .content_blocks .block.fulltext {
  display: block;
}
section.blocks .content_blocks .block.fulltext .inner_block {
  display: block;
}
section.blocks .content_blocks .block.fullimage {
  display: block;
}
section.blocks .content_blocks .block.fullimage .inner_block img {
  max-width: 100%;
  width: 100%;
}
section.blocks .content_blocks .block.image_text {
  align-items: stretch;
}
section.blocks .content_blocks .block.image_text > div {
  width: 50%;
}
section.blocks .content_blocks .block.image_text > div.image {
  position: relative;
  overflow: hidden;
}
section.blocks .content_blocks .block.image_text > div.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.blocks .content_blocks .block.image_text > div.image iframe {
  width: 100%;
}
section.blocks .content_blocks .block.text_image {
  align-items: stretch;
}
section.blocks .content_blocks .block.text_image > div {
  width: 50%;
}
section.blocks .content_blocks .block.text_image > div.image {
  position: relative;
  overflow: hidden;
}
section.blocks .content_blocks .block.text_image > div.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.blocks .content_blocks .block.text_image > div.image iframe {
  width: 100%;
}
section.blocks .content_blocks .block.text_text > div {
  width: 50%;
}
section.blocks .content_blocks .block.text_text > div.righttext {
  background: whitesmoke;
}
section.blocks .content_blocks .block .button {
  display: inline-flex;
  margin-top: 15px;
}
section.blocks .content_blocks .block img.desktop {
  display: block;
}
section.blocks .content_blocks .block img.mobile {
  display: none;
}
section.blocks .content_blocks .block.icons {
  display: block;
  width: 100%;
}
section.blocks .content_blocks .block.icons h2 {
  text-align: center;
}
section.blocks .content_blocks .block.icons .description {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 25px;
}
section.blocks .content_blocks .block.icons .icons_container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
section.blocks .content_blocks .block.icons .icons_container .item {
  flex: 1 1 0;
  margin: 20px 25px 0 25px;
  max-width: 250px;
  text-align: center;
}
section.blocks .content_blocks .block.icons .icons_container .item .icon {
  font-size: 40px;
}
section.blocks .content_blocks .block.icons .icons_container .item .title {
  margin-top: 15px;
}
section.blocks .content_blocks .block.article small {
  font-weight: 300;
}
section.blocks .content_blocks .block.article div.image {
  overflow: visible;
}
section.blocks .content_blocks .block.article div.image img {
  width: calc(100% - 25px);
  transform: translateY(25px);
}
section.blocks .content_blocks .block .text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
section.blocks .content_blocks .block .text h1, section.blocks .content_blocks .block .text h2, section.blocks .content_blocks .block .text h3, section.blocks .content_blocks .block .text h4, section.blocks .content_blocks .block .text h5, section.blocks .content_blocks .block .text h6 {
  color: black;
  margin-bottom: 15px;
}
section.blocks .content_blocks .block .text p, section.blocks .content_blocks .block .text ul, section.blocks .content_blocks .block .text li, section.blocks .content_blocks .block .text ol {
  color: black;
}
section.blocks .content_blocks .block .text p + p, section.blocks .content_blocks .block .text p + ul, section.blocks .content_blocks .block .text p + ol, section.blocks .content_blocks .block .text ul + ul, section.blocks .content_blocks .block .text ul + p, section.blocks .content_blocks .block .text ul + ol, section.blocks .content_blocks .block .text ol + ol, section.blocks .content_blocks .block .text ol + p, section.blocks .content_blocks .block .text ol + ul {
  margin-top: 10px;
}
section.blocks .content_blocks .block .text ul {
  padding: 0;
  margin: 0;
}
section.blocks .content_blocks .block .text ul.flex {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
section.blocks .content_blocks .block .text ul.flex li {
  margin-right: 15px;
  max-width: 150px;
}
section.blocks .content_blocks .block .text ol {
  padding: 0;
  margin: 0;
}
section.blocks .content_blocks .block.black {
  background-color: black;
}
section.blocks .content_blocks .block.themegradient {
  background-color: #009440;
  background-image: linear-gradient(225deg, #009440, #730011);
}
section.blocks .content_blocks .block.white {
  background-color: white;
}
section.blocks .content_blocks .block.black .text h1, section.blocks .content_blocks .block.black .text h2, section.blocks .content_blocks .block.black .text h3, section.blocks .content_blocks .block.black .text h4, section.blocks .content_blocks .block.black .text h5, section.blocks .content_blocks .block.black .text h6, section.blocks .content_blocks .block.black .text p, section.blocks .content_blocks .block.black .text ul, section.blocks .content_blocks .block.black .text li, section.blocks .content_blocks .block.black .text ol, section.blocks .content_blocks .block.black .text a:not(.button), section.blocks .content_blocks .block.themegradient .text h1, section.blocks .content_blocks .block.themegradient .text h2, section.blocks .content_blocks .block.themegradient .text h3, section.blocks .content_blocks .block.themegradient .text h4, section.blocks .content_blocks .block.themegradient .text h5, section.blocks .content_blocks .block.themegradient .text h6, section.blocks .content_blocks .block.themegradient .text p, section.blocks .content_blocks .block.themegradient .text ul, section.blocks .content_blocks .block.themegradient .text li, section.blocks .content_blocks .block.themegradient .text ol, section.blocks .content_blocks .block.themegradient .text a:not(.button) {
  color: white;
}
@media (max-width: 980px) {
  section.blocks.last_post {
    margin-bottom: 50px;
  }
  section.blocks .content_blocks .block {
    margin-top: 50px;
  }
  section.blocks .content_blocks .block img.mobile {
    display: block;
  }
  section.blocks .content_blocks .block img.desktop {
    display: none;
  }
  section.blocks .content_blocks .block .text {
    padding: 30px;
  }
  section.blocks .content_blocks .block .text h2 {
    margin-bottom: 15px;
  }
  section.blocks .content_blocks .block .text ul {
    padding: 0;
  }
}
@media (max-width: 768px) {
  section.blocks.last_post {
    margin-bottom: 30px;
  }
  section.blocks .content_blocks .block {
    margin-top: 30px;
    /* Images on left side | Text on right side */
  }
  section.blocks .content_blocks .block.image_text {
    flex-direction: column-reverse;
  }
  section.blocks .content_blocks .block.image_text > div {
    width: 100%;
  }
  section.blocks .content_blocks .block.image_text > div.image {
    order: 2;
  }
  section.blocks .content_blocks .block.image_text > div.text {
    order: 1;
  }
  section.blocks .content_blocks .block.text_image {
    flex-direction: column;
  }
  section.blocks .content_blocks .block.text_image > div {
    width: 100%;
  }
  section.blocks .content_blocks .block.text_text {
    flex-direction: column;
  }
  section.blocks .content_blocks .block.text_text > div {
    width: 100%;
  }
}
@media (max-width: 480px) {
  section.blocks.last_post {
    margin-bottom: 15px;
  }
  section.blocks .content_blocks .block .text {
    padding: 20px;
  }
}
.elements_list {
  width: 100%;
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.elements_list .item {
  padding: 20px;
  border: solid 2px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}
.elements_list .item .list_title {
  margin-top: 15px;
  text-align: center;
  font-size: 30px;
}
.elements_list .item .list_subtitle {
  text-align: center;
  font-size: 22px;
}
.elements_list .item .text {
  margin-top: 10px;
}
.elements_list .item .button {
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
}
.elements_list .item .media iframe {
  width: 100%;
  height: fit-content;
}
.elements_list .item .popup-lyrics {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.elements_list .item .popup-lyrics .popup-inner {
  pointer-events: auto;
  width: calc(100% - 50px);
  height: calc(100dvh - 50px);
  background-color: white;
  max-width: 650px;
  padding: 50px 25px;
  position: relative;
  pointer-events: auto;
}
.elements_list .item .popup-lyrics .popup-inner .popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
}
.elements_list .item .popup-lyrics .popup-inner .popup-content-wrapper {
  height: 100%;
  overflow-y: visible;
  overflow-y: auto;
  height: calc(100dvh - 150px);
}
.elements_list .item .popup-lyrics .popup-inner .popup-content-wrapper .popup-title {
  text-align: center;
  margin-bottom: 15px;
}
.elements_list .item .popup-lyrics .popup-inner .popup-content-wrapper .popup-content {
  text-align: center;
}
@media (max-width: 980px) {
  .elements_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 736px) {
  .elements_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-list {
  width: 100%;
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-item {
  padding: 20px;
  border: solid 2px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}
.news-item .news-thumbnail {
  margin-bottom: 1rem;
}
.news-item .news-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.news-item h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.news-item h2 a {
  text-decoration: none;
  color: inherit;
}
.news-item h2 a:hover {
  color: #009440;
}
.news-item .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.news-item .excerpt {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
@media (max-width: 980px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 736px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-article {
  max-width: 800px;
  padding: 4rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
}
.single-article .featured-image {
  margin-bottom: 2rem;
}
.single-article .featured-image img {
  width: 100%;
  height: auto;
  padding: 15px;
  border: solid 2px rgba(0, 0, 0, 0.07);
}
.single-article .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #009440;
}
.single-article .meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2.5rem;
}
.single-article .meta a {
  color: #009440;
  text-decoration: none;
}
.single-article .meta a:hover {
  text-decoration: underline;
}
.single-article .content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #009440;
}
.single-article .content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #009440;
}
.single-article .content p {
  margin-bottom: 1.5rem;
}
.single-article .content ul, .single-article .content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-article .content ul li, .single-article .content ol li {
  margin-bottom: 0.5rem;
}
.single-article .content ul li::marker {
  color: #ffcb00;
}
.single-article .content blockquote {
  border-left: 4px solid #009440;
  padding-left: 1rem;
  font-style: italic;
  color: #555;
  margin: 2rem 0;
}
.single-article .content iframe, .single-article .content embed, .single-article .content video {
  max-width: 100%;
  margin: 2rem 0;
}
.single-article .content iframe, .single-article .content embed, .single-article .content video {
  max-width: 100%;
  margin: 2rem 0;
  padding: 15px;
  border: solid 2px rgba(0, 0, 0, 0.07);
  background: #fff;
  display: block;
}
.single-article .content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  padding: 15px;
  border: solid 2px rgba(0, 0, 0, 0.07);
  background: #fff;
  display: block;
}
.single-article .tags {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555;
}
.single-article .tags a {
  display: inline-block;
  background-color: #ffcb00;
  color: black;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  font-weight: 500;
}
.single-article .tags a:hover {
  background-color: #cca200;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Fcapoeira-libourne.fr%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_init.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2Fstyles.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_header_footer.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_default_page.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_contacts.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_homepage.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_blocks.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_list.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_news.scss%22%2C%22wp-content%2Fthemes%2Fluandaxecaopeira%2Fassets%2Fscss%2F_news_single.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAsBA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBQ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAC5NR%3BAAAA%3BAAAA%3BADwOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA4BA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAEI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAErVJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAyBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBC%3BAAAA%3BAAAA%3BAAOK%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAgBP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeI%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BADlcN%3BACqdG%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAD1dH%3BACkeC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAKI%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAASL%3BAAIE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAUP%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAUH%3BAAAA%3BAAAA%3BAAAA%3BACzlBD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWG%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBR%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWG%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBN%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAYH%3BAAAA%3BAAAA%3BAAcF%3BAAGC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAeC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAmBN%3BAAME%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAYH%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAMG%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAgBC%3BAAAA%3BAAAA%3BAAAA%3BACjeJ%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMG%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAeR%3BAAGE%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAACE%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYL%3BAAiBK%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC5VN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAuBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAQL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeD%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAcD%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAWN%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWG%3BAAAA%3BAAAA%3BAAAA%3BAAUL%3BAAKE%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC%2FUN%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAWZ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAcR%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAYR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAASQ%3BAAAA%3BAAAA%3BAA4BpB%3BAAIQ%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAASpB%3BAAIQ%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAUpB%3BAAIQ%3BAAAA%3BAAAA%3BAAOQ%3BAAAA%3BAAAA%3BAAAA%3BACpZhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAMN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOM%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAoBZ%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAC3GD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBF%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BACpEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%22%7D */