/*!
 * App CSS
 * @description App CSS
 * @author Ricardo Lopes
 */
/* IMPORT EXAMPLE */
/* IMPORT EXAMPLE */
/* CUSTOM ICON FONT EXAMPLE */
/*
@font-face {
	font-family: dficon;
	src: url("./../fonts/dficon/dficon.eot?v751zj");
	src: url("./../fonts/dficon/dficon.eot?v751zj#iefix") format("embedded-opentype"),
		 url("./../fonts/dficon/dficon.ttf?v751zj") format("truetype"),
		 url("./../fonts/dficon/dficon.woff?v751zj") format("woff"),
		 url("./../fonts/dficon/dficon.svg?v751zj#dficon") format("svg");
	font-weight: 400;
	font-style: normal;
	font-display: block;
}
*/
/* CUSTOM FONT EXAMPLE */
/*
@font-face{
	font-family: 'Proxima Nova';
	src: url("./../fonts/proxima-nova/ProximaNova-Regular.eot");
	src: url("./../fonts/proxima-nova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"),
		 url("./../fonts/proxima-nova/ProximaNova-Regular.woff2") format("woff2"),
		 url("./../fonts/proxima-nova/ProximaNova-Regular.woff") format("woff"),
		 url("./../fonts/proxima-nova/ProximaNova-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
*/
/* Complex Colors System */
/*
$colors-list: (
	'blue': #09C,
	'navy': #000046,
	'grey': #5B6570,
	'orange': #EC8200,
	'yellow': #FFB400,
	'green': #0B9D4D,
	'red': #F7442C
);
*/
/*
 * Example output:
 *
 */
/*
%font-heading-01 {
	font-feature-settings: "ss01";
	font-family: "proxima-nova", arial, helvetica, sans-serif;
	font-size: 1.75rem;
	line-height: 1.1429;
	font-weight: 700;

	@media (width >= 768px) {
		font-size: 2.5rem;
		line-height: 1.1;
	}
	@media (width >= 1024px) {
		font-size: 3rem;
		line-height: 1.0833;
	}
}
*/
/* stylelint-disable scss/no-duplicate-dollar-variables -- I need to replace default vars to test on next iteration */
/* stylelint-disable at-rule-empty-line-before -- Just for the sake of maintaning all ifs together */
.title-h1, h1 {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: "Satoshi", arial, helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
}
@media (width >= 768px) {
  .title-h1, h1 {
    font-size: 2.5rem;
  }
}
@media (width >= 1200px) {
  .title-h1, h1 {
    font-size: 3rem;
  }
}

.body-text, p {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.53;
  font-weight: 400;
}
@media (width >= 768px) {
  .body-text, p {
    font-size: 1.125rem;
  }
}
/* stylelint-enable scss/no-duplicate-dollar-variables */
/* stylelint-enable at-rule-empty-line-before -- Reason: testing */
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
*:active, *:focus {
  outline: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Georgia, serif;
  overflow-x: hidden;
}

body {
  color: #000;
  line-height: 1.5555;
  overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important -- important needed */
}

::-moz-selection {
  background-color: #000;
  color: #FFF;
}

::selection {
  background-color: #000;
  color: #FFF;
}

::-moz-selection {
  background-color: #000;
  color: #FFF;
}

img::-moz-selection {
  color: #FFF;
  background: transparent;
}

img::selection {
  color: #FFF;
  background: transparent;
}

strong,
b {
  font-weight: 700;
}

em,
i,
var {
  font-style: italic;
}

pre,
code,
kbd {
  background: #000;
  border: 1px solid #FFF;
  border-radius: 2px;
  font-family: monospace;
  font-size: 0.75rem;
  overflow-x: scroll;
  padding: 1rem;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

figure,
img,
svg {
  height: auto;
  max-width: 100%;
}

svg {
  max-height: 100%;
  width: auto;
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
}

sub {
  font-size: smaller;
  vertical-align: sub;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

abbr,
acronym {
  border-bottom: 1px dotted #000;
  cursor: help;
  font-size: 90%;
  text-transform: uppercase;
}

/*
 * Example output:
 *
 */
/*
.font-heading-01 {
	font-feature-settings: "ss01";
	font-family: "proxima-nova", arial, helvetica, sans-serif;
	font-size: 1.75rem;
	line-height: 1.1429;
	font-weight: 700;

	@media (width >= 768px) {
		font-size: 2.5rem;
		line-height: 1.1;
	}
	@media (width >= 1024px) {
		font-size: 3rem;
		line-height: 1.0833;
	}
}
*/
/* stylelint-disable scss/no-duplicate-dollar-variables -- I need to replace default vars to test on next iteration */
/* stylelint-disable at-rule-empty-line-before -- Just for the sake of maintaning all ifs together */
.font-heading-01 {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: "Satoshi", arial, helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
}
@media (width >= 768px) {
  .font-heading-01 {
    font-size: 2.5rem;
  }
}
@media (width >= 1200px) {
  .font-heading-01 {
    font-size: 3rem;
  }
}

.font-body-01 {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.53;
  font-weight: 400;
}
@media (width >= 768px) {
  .font-body-01 {
    font-size: 1.125rem;
  }
}
/* stylelint-enable scss/no-duplicate-dollar-variables */
/* stylelint-enable at-rule-empty-line-before -- Reason: testing */
.semibold {
  font-weight: 600;
}

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

em, i, .italic {
  font-style: italic;
}

/* stylelint-disable font-family-no-missing-generic-family-keyword -- Reason: there is no fallback font for icons */
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon::before {
  color: #000;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

/*
.icon-arrow-back::before {
	content: "\e901";
}
*/
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0;
}
.container.--fluid {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 26px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 26px;
  }
}

.hide, .hidden {
  display: none;
}

@media (max-width: 479px) {
  .hide-xs {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hide-sm {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hide-md {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .hide-lg {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
@media (min-width: 1200px) {
  .hide-xl {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
.show-xs, .show-sm, .show-md, .show-lg, .show-xl {
  display: none !important;
} /* stylelint-disable-line declaration-no-important -- important needed */
@media (max-width: 479px) {
  .show-xs {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
@media (min-width: 480px) and (max-width: 767px) {
  .show-sm {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
@media (min-width: 768px) and (max-width: 1199px) {
  .show-md {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .show-lg {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
@media (min-width: 1200px) {
  .show-xl {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
.height-0 {
  height: 0;
}

.gap-0 {
  grid-gap: 0;
}

.margin-0 {
  margin: 0 0;
}

.margin-t-0 {
  margin-top: 0;
}

.margin-b-0 {
  margin-bottom: 0;
}

.padding-0 {
  padding: 0 0;
}

.padding-t-0 {
  padding-top: 0;
}

.padding-b-0 {
  padding-bottom: 0;
}

.height-1 {
  height: 0.0625rem;
}

.gap-1 {
  grid-gap: 0.0625rem;
}

.margin-1 {
  margin: 0.0625rem 0;
}

.margin-t-1 {
  margin-top: 0.0625rem;
}

.margin-b-1 {
  margin-bottom: 0.0625rem;
}

.padding-1 {
  padding: 0.0625rem 0;
}

.padding-t-1 {
  padding-top: 0.0625rem;
}

.padding-b-1 {
  padding-bottom: 0.0625rem;
}

.height-2 {
  height: 0.125rem;
}

.gap-2 {
  grid-gap: 0.125rem;
}

.margin-2 {
  margin: 0.125rem 0;
}

.margin-t-2 {
  margin-top: 0.125rem;
}

.margin-b-2 {
  margin-bottom: 0.125rem;
}

.padding-2 {
  padding: 0.125rem 0;
}

.padding-t-2 {
  padding-top: 0.125rem;
}

.padding-b-2 {
  padding-bottom: 0.125rem;
}

.height-4 {
  height: 0.25rem;
}

.gap-4 {
  grid-gap: 0.25rem;
}

.margin-4 {
  margin: 0.25rem 0;
}

.margin-t-4 {
  margin-top: 0.25rem;
}

.margin-b-4 {
  margin-bottom: 0.25rem;
}

.padding-4 {
  padding: 0.25rem 0;
}

.padding-t-4 {
  padding-top: 0.25rem;
}

.padding-b-4 {
  padding-bottom: 0.25rem;
}

.height-8 {
  height: 0.5rem;
}

.gap-8 {
  grid-gap: 0.5rem;
}

.margin-8 {
  margin: 0.5rem 0;
}

.margin-t-8 {
  margin-top: 0.5rem;
}

.margin-b-8 {
  margin-bottom: 0.5rem;
}

.padding-8 {
  padding: 0.5rem 0;
}

.padding-t-8 {
  padding-top: 0.5rem;
}

.padding-b-8 {
  padding-bottom: 0.5rem;
}

.height-12 {
  height: 0.75rem;
}

.gap-12 {
  grid-gap: 0.75rem;
}

.margin-12 {
  margin: 0.75rem 0;
}

.margin-t-12 {
  margin-top: 0.75rem;
}

.margin-b-12 {
  margin-bottom: 0.75rem;
}

.padding-12 {
  padding: 0.75rem 0;
}

.padding-t-12 {
  padding-top: 0.75rem;
}

.padding-b-12 {
  padding-bottom: 0.75rem;
}

.height-16 {
  height: 1rem;
}

.gap-16 {
  grid-gap: 1rem;
}

.margin-16 {
  margin: 1rem 0;
}

.margin-t-16 {
  margin-top: 1rem;
}

.margin-b-16 {
  margin-bottom: 1rem;
}

.padding-16 {
  padding: 1rem 0;
}

.padding-t-16 {
  padding-top: 1rem;
}

.padding-b-16 {
  padding-bottom: 1rem;
}

.height-20 {
  height: 1.25rem;
}

.gap-20 {
  grid-gap: 1.25rem;
}

.margin-20 {
  margin: 1.25rem 0;
}

.margin-t-20 {
  margin-top: 1.25rem;
}

.margin-b-20 {
  margin-bottom: 1.25rem;
}

.padding-20 {
  padding: 1.25rem 0;
}

.padding-t-20 {
  padding-top: 1.25rem;
}

.padding-b-20 {
  padding-bottom: 1.25rem;
}

.height-24 {
  height: 1.5rem;
}

.gap-24 {
  grid-gap: 1.5rem;
}

.margin-24 {
  margin: 1.5rem 0;
}

.margin-t-24 {
  margin-top: 1.5rem;
}

.margin-b-24 {
  margin-bottom: 1.5rem;
}

.padding-24 {
  padding: 1.5rem 0;
}

.padding-t-24 {
  padding-top: 1.5rem;
}

.padding-b-24 {
  padding-bottom: 1.5rem;
}

.height-32 {
  height: 2rem;
}

.gap-32 {
  grid-gap: 2rem;
}

.margin-32 {
  margin: 2rem 0;
}

.margin-t-32 {
  margin-top: 2rem;
}

.margin-b-32 {
  margin-bottom: 2rem;
}

.padding-32 {
  padding: 2rem 0;
}

.padding-t-32 {
  padding-top: 2rem;
}

.padding-b-32 {
  padding-bottom: 2rem;
}

.height-48 {
  height: 3rem;
}

.gap-48 {
  grid-gap: 3rem;
}

.margin-48 {
  margin: 3rem 0;
}

.margin-t-48 {
  margin-top: 3rem;
}

.margin-b-48 {
  margin-bottom: 3rem;
}

.padding-48 {
  padding: 3rem 0;
}

.padding-t-48 {
  padding-top: 3rem;
}

.padding-b-48 {
  padding-bottom: 3rem;
}

.height-64 {
  height: 4rem;
}

.gap-64 {
  grid-gap: 4rem;
}

.margin-64 {
  margin: 4rem 0;
}

.margin-t-64 {
  margin-top: 4rem;
}

.margin-b-64 {
  margin-bottom: 4rem;
}

.padding-64 {
  padding: 4rem 0;
}

.padding-t-64 {
  padding-top: 4rem;
}

.padding-b-64 {
  padding-bottom: 4rem;
}

.height-128 {
  height: 8rem;
}

.gap-128 {
  grid-gap: 8rem;
}

.margin-128 {
  margin: 8rem 0;
}

.margin-t-128 {
  margin-top: 8rem;
}

.margin-b-128 {
  margin-bottom: 8rem;
}

.padding-128 {
  padding: 8rem 0;
}

.padding-t-128 {
  padding-top: 8rem;
}

.padding-b-128 {
  padding-bottom: 8rem;
}

html, body {
  min-height: 100%;
  background-color: #FFF;
  font-family: Georgia, serif;
  color: #000;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: none;
  font-weight: 400;
  overflow-x: hidden;
}

body {
  position: relative;
}
body.in-popup, body.is-in-popup {
  overflow: hidden;
}

input,
textarea,
select {
  outline: none;
}

input:focus,
textarea:focus {
  color: transparent !important;
  outline: none;
}

.swiper-custom-nav span {
  outline: none;
}

.swiper-custom-prev {
  outline: none;
}

.swiper-custom-next {
  outline: none;
}

.clearfix {
  display: flow-root;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Satoshi", arial, helvetica, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 0;
}

p {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
  color: #000;
}

a, a:visited {
  color: #000;
  text-decoration: underline;
}
@media (min-width: 1200px) {
  a, a:visited {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  a:hover, a:visited:hover {
    color: #000;
  }
}

table {
  width: 100%;
}
table td {
  vertical-align: top;
  padding: 1rem;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.svg-sprite {
  display: none;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

image {
  border: none;
}
image.responsive {
  max-width: 100%;
  height: auto;
}
image.responsive-full {
  max-width: none;
  width: 100%;
  height: auto;
}

a.full-link,
a.full-link:visited {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p0, .no-padding {
  padding: 0;
}

.m0, .no-margin {
  margin: 0;
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

video {
  border: none;
}
video.responsive {
  max-width: 100%;
  height: auto;
}
video.responsive-full {
  max-width: none;
  width: 100%;
  height: auto;
}

#headerWrapper .header {
  position: relative;
  padding-top: 70px;
}
#headerWrapper .header h1 {
  width: 286px;
  height: 256px;
  margin: 0 auto;
  margin-bottom: 22px;
}
#headerWrapper .header h1 img {
  display: block;
  width: 100%;
  height: 100%;
}
#headerWrapper .header h1 .title-desktop {
  display: none;
}
#headerWrapper .header h2 {
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  padding: 0 60px;
  font-family: Georgia, serif;
}
#headerWrapper .header h2 span {
  display: inline-block;
  position: relative;
}
#headerWrapper .header h2 span::before, #headerWrapper .header h2 span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 15px;
  height: 1px;
  background-color: #707070;
  margin-top: -3px;
}
#headerWrapper .header h2 span::after {
  left: auto;
  right: -25px;
}
#headerWrapper .header a.other-lang, #headerWrapper .header a.other-lang:visited {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  padding: 3px 6px;
  text-transform: uppercase;
  font-style: italic;
  font-size: 12px;
  line-height: 14px;
  border: 1px solid #707070;
  text-decoration: none;
}
@media (min-width: 458px) {
  #headerWrapper .header h2 span::before, #headerWrapper .header h2 span::after {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  #headerWrapper.container {
    max-width: 1237px;
  }
  #headerWrapper .header {
    padding-top: 120px;
    max-width: 1237px;
  }
  #headerWrapper .header h1 {
    width: 100%;
    height: auto;
    margin-bottom: 42px;
  }
  #headerWrapper .header h1 .title-mobile {
    display: none;
  }
  #headerWrapper .header h1 .title-desktop {
    display: block;
  }
  #headerWrapper .header h1 img {
    height: auto;
  }
  #headerWrapper .header h2 {
    font-size: 22px;
    line-height: 22px;
    padding: 0;
  }
  #headerWrapper .header h2 span {
    display: inline-block;
    position: relative;
  }
  #headerWrapper .header h2 span::before, #headerWrapper .header h2 span::after {
    left: -57px;
    width: 37px;
    margin-top: 0;
  }
  #headerWrapper .header h2 span::after {
    left: auto;
    right: -57px;
  }
  #headerWrapper .header a.other-lang, #headerWrapper .header a.other-lang:visited {
    top: 37px;
    right: 0;
    padding: 5px 0;
    width: 45px;
    text-align: center;
    font-size: 22px;
    line-height: 25px;
  }
  #headerWrapper .header a.other-lang:hover, #headerWrapper .header a.other-lang:visited:hover {
    background-color: #000;
    color: #FFF;
  }
}

.illustration-tree {
  margin-top: -20px;
  pointer-events: none;
  overflow: hidden;
}
.illustration-tree .image {
  /*
  margin-right: -100px;
  margin-left: -162px;
  */
  margin-right: -130px;
  margin-left: -130px;
}
.illustration-tree .image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 582px;
  height: auto;
}
@media (min-width: 1200px) {
  .illustration-tree {
    margin-top: -90px;
  }
  .illustration-tree .image {
    max-width: 1440px;
    margin: 0 auto;
  }
  .illustration-tree .image img {
    /*margin-left: -76px;*/
    max-width: 1397px;
    width: 100%;
    height: auto;
  }
}

body.pt #headerWrapper .header {
  max-width: 1130px;
}
body.pt #headerWrapper .header h1 {
  width: 286px;
}
body.pt #headerWrapper .header h1 img {
  margin-left: 2px;
}
@media (min-width: 1200px) {
  body.pt #headerWrapper .header h1 {
    width: 100%;
    height: auto;
    margin-bottom: 42px;
  }
}

#footerWrapper {
  padding: 0 24px;
  padding-bottom: 30px;
}
#footerWrapper .footer-top {
  text-align: center;
  margin-bottom: 94px;
}
#footerWrapper .footer-top p {
  font-style: italic;
  font-family: "Satoshi", arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 17px;
}
#footerWrapper .footer-top p a, #footerWrapper .footer-top p a:visited {
  font-weight: 700;
  text-decoration: underline;
}
#footerWrapper .footer-bottom {
  padding: 0 6px;
  max-width: 260px;
  margin: 0 auto;
}
#footerWrapper .footer-bottom nav.social-nav {
  margin-bottom: 42px;
}
#footerWrapper .footer-bottom nav.social-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footerWrapper .footer-bottom nav.social-nav ul li {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  font-family: "Satoshi", arial, helvetica, sans-serif;
}
#footerWrapper .footer-bottom nav.social-nav ul li a, #footerWrapper .footer-bottom nav.social-nav ul li a:visited {
  text-decoration: none;
}
#footerWrapper .footer-bottom p.address {
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  font-family: "Satoshi", arial, helvetica, sans-serif;
}
#footerWrapper .footer-bottom p.copyright {
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  font-family: "Satoshi", arial, helvetica, sans-serif;
}
#footerWrapper .footer-bottom p.concept-design {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  font-family: "Satoshi", arial, helvetica, sans-serif;
}
#footerWrapper .footer-bottom p.concept-design a, #footerWrapper .footer-bottom p.concept-design a:visited {
  text-decoration: none;
}
#footerWrapper .footer-bottom p.concept-design img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  width: 19px;
  height: 22px;
  margin-top: -4px;
}
@media (min-width: 1200px) {
  #footerWrapper {
    padding: 0;
    padding-bottom: 22px;
  }
  #footerWrapper .footer-top {
    max-width: 1060px;
    margin: 0 auto;
    margin-bottom: 52px;
  }
  #footerWrapper .footer-top p {
    font-size: 16px;
  }
  #footerWrapper .footer-bottom {
    padding: 0 24px;
    max-width: none;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #footerWrapper .footer-bottom nav.social-nav {
    margin-bottom: 0;
  }
  #footerWrapper .footer-bottom nav.social-nav ul li {
    font-size: 12px;
    line-height: 18px;
    margin-right: 90px;
  }
  #footerWrapper .footer-bottom nav.social-nav ul li a:hover, #footerWrapper .footer-bottom nav.social-nav ul li a:visited:hover {
    text-decoration: underline;
  }
  #footerWrapper .footer-bottom p.address {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: left;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
    width: 393px;
  }
  #footerWrapper .footer-bottom .copyright-and-authors {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
  #footerWrapper .footer-bottom p.copyright {
    text-align: right;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
  }
  #footerWrapper .footer-bottom p.concept-design {
    text-align: right;
    font-size: 12px;
    line-height: 18px;
  }
  #footerWrapper .footer-bottom p.concept-design a:hover, #footerWrapper .footer-bottom p.concept-design a:visited:hover {
    text-decoration: underline;
  }
  #footerWrapper .footer-bottom p.concept-design img {
    width: 24px;
    height: 24px;
  }
}

.fable-wrapper {
  text-align: center;
  padding-top: 3.25rem;
  padding-bottom: 1.125rem;
}
.fable-wrapper .fable-list {
  display: grid;
  gap: 3.25rem;
  font-size: 0;
}
.fable-wrapper .fable-list.in-desktop {
  display: none;
}
.fable-wrapper .lottie-anim {
  background-color: red;
}
.fable-wrapper video, .fable-wrapper img {
  max-width: 100%;
  height: auto;
}
.fable-wrapper .item {
  position: relative;
  z-index: 2;
}
.fable-wrapper .item span.number {
  display: inline-block;
  margin-bottom: 0.6875rem;
  font-size: 1.375rem;
  line-height: 1.22;
  font-family: Georgia, serif;
  font-style: italic;
  position: relative;
  padding-left: 3.25rem;
}
.fable-wrapper .item span.number::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 37px;
  height: 1px;
  background-color: #707070;
}
.fable-wrapper .item p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.4;
}
.fable-wrapper .item.is-illustration {
  z-index: 1;
}
.fable-wrapper .item.is-illustration p {
  color: red;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-01 {
  margin-top: -28px;
  margin-bottom: -42px;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-01 video, .fable-wrapper .fable-list.in-mobile .item.illustration-01 img {
  width: 292px;
  height: 423px;
  -webkit-transform: rotate(359deg);
          transform: rotate(359deg);
}
.fable-wrapper .fable-list.in-mobile .item.illustration-02 {
  margin-top: -87px;
  margin-bottom: -62px;
  margin-left: -60px;
  margin-right: -60px;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-02 video, .fable-wrapper .fable-list.in-mobile .item.illustration-02 img {
  width: 431px;
  height: 436px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.fable-wrapper .fable-list.in-mobile .item.illustration-03 {
  margin-top: -62px;
  margin-bottom: -52px;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-03 video, .fable-wrapper .fable-list.in-mobile .item.illustration-03 img {
  width: 320px;
  height: 402px;
  -webkit-transform: rotate(347deg);
          transform: rotate(347deg);
}
.fable-wrapper .fable-list.in-mobile .item.illustration-04 {
  margin-top: -10px;
  margin-bottom: -6px;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-04 video, .fable-wrapper .fable-list.in-mobile .item.illustration-04 img {
  width: 303px;
  height: 404px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
.fable-wrapper .fable-list.in-mobile .item.illustration-05 {
  margin-top: -6px;
}
.fable-wrapper .fable-list.in-mobile .item.illustration-05 video, .fable-wrapper .fable-list.in-mobile .item.illustration-05 img {
  width: 279px;
  height: 672px;
}
@media (min-width: 1200px) {
  .fable-wrapper {
    text-align: left;
    padding-top: 0;
    padding-bottom: 6.125rem;
    max-width: 1120px;
    margin: 0 auto;
  }
  .fable-wrapper .fable-list {
    gap: 0;
  }
  .fable-wrapper .fable-list.in-mobile {
    display: none;
  }
  .fable-wrapper .fable-list.in-desktop {
    display: block;
  }
  .fable-wrapper .col-left {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-top: -2rem;
  }
  .fable-wrapper .col-right {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-top: 2rem;
  }
  .fable-wrapper .item {
    margin-bottom: 5rem;
  }
  .fable-wrapper .item:last-child {
    margin-bottom: 0;
  }
  .fable-wrapper .item span.number {
    line-height: 1.45;
  }
  .fable-wrapper .item span.number::before {
    bottom: 12px;
  }
  .fable-wrapper .item p {
    font-size: 1.375rem;
    line-height: 1.32;
  }
  .fable-wrapper .item.illustration-01 {
    margin-top: -42px;
    margin-bottom: 48px;
    margin-left: -50px;
  }
  .fable-wrapper .item.illustration-01 video, .fable-wrapper .item.illustration-01 img {
    width: 509px;
    height: 739px;
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
  .fable-wrapper .item.illustration-02 {
    margin-top: -80px;
    margin-left: -200px;
    margin-bottom: -35px;
  }
  .fable-wrapper .item.illustration-02 video, .fable-wrapper .item.illustration-02 img {
    width: 754px;
    height: 761px;
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  .fable-wrapper .item.illustration-03 {
    margin-top: -90px;
    margin-left: -100px;
    margin-bottom: -50px;
  }
  .fable-wrapper .item.illustration-03 video, .fable-wrapper .item.illustration-03 img {
    width: 641px;
    height: 808px;
    -webkit-transform: rotate(347deg);
            transform: rotate(347deg);
  }
  .fable-wrapper .item.illustration-04 {
    margin-top: 10px;
    margin-left: -50px;
    margin-bottom: 0;
  }
  .fable-wrapper .item.illustration-04 video, .fable-wrapper .item.illustration-04 img {
    width: 502px;
    height: 670px;
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  .fable-wrapper .item.illustration-05 {
    margin-top: 10px;
    margin-left: -30px;
  }
  .fable-wrapper .item.illustration-05 video, .fable-wrapper .item.illustration-05 img {
    width: 432px;
    height: 1043px;
  }
}
/*# sourceMappingURL=app.css.map */
