/*!
 * 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: "Mona Sans", 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 >= 1025px) {
  .title-h1, h1 {
    font-size: 3rem;
  }
}

.body-text, p {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: "Mona Sans", arial, helvetica, sans-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: "Mona Sans", arial, helvetica, sans-serif;
  overflow-x: hidden;
}

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

::-moz-selection {
  background-color: #E2DBC6;
  color: #E2DBC6;
}

::selection {
  background-color: #E2DBC6;
  color: #E2DBC6;
}

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 #E2DBC6;
  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: "Mona Sans", 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 >= 1025px) {
  .font-heading-01 {
    font-size: 3rem;
  }
}

.font-body-01 {
  -webkit-font-feature-settings: "ss01";
          font-feature-settings: "ss01";
  font-family: "Mona Sans", arial, helvetica, sans-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: #E2DBC6;
  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 10px;
}
.container.--fluid {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1025px) {
  .container {
    padding: 0 40px;
  }
}

.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: 1024px) {
  .hide-md {
    display: none !important; /* stylelint-disable-line declaration-no-important -- important needed */
  }
}
@media (min-width: 1025px) 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: 1024px) {
  .show-md {
    display: block !important;
  } /* stylelint-disable-line declaration-no-important -- important needed */
}
@media (min-width: 1025px) 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: #716651;
  font-family: "Mona Sans", arial, helvetica, sans-serif;
  color: #E2DBC6;
  -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: "Mona Sans", arial, helvetica, sans-serif;
  color: #E2DBC6;
  font-weight: 400;
  margin: 0;
}

p {
  font-family: "Mona Sans", arial, helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #E2DBC6;
}

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

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

html, body, #main, .homepage-wrapper {
  height: 100vh;
  min-height: 890px;
}

.title {
  padding-top: 40px;
  margin-bottom: 300px;
  text-align: center;
  font-family: "Mona Sans", arial, helvetica, sans-serif;
  font-size: 125px;
  line-height: 98px;
  letter-spacing: -6px;
}

.footer-wrapper {
  text-align: center;
  padding-bottom: 20px;
}
.footer-wrapper .logo {
  margin-bottom: 24px;
}
.footer-wrapper .logo img {
  display: inline-block;
  width: 280px;
  height: auto;
}
.footer-wrapper .copyright p {
  color: #E2DBC6;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .title {
    padding-top: 40px;
    margin-bottom: 0;
    font-size: 280px;
    line-height: 200px;
  }
  .homepage-wrapper {
    position: relative;
  }
  .footer-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .footer-wrapper .container {
    max-width: 100%;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-wrapper .logo {
    margin-bottom: 0;
    padding-left: 12px;
  }
  .footer-wrapper .logo img {
    width: 500px;
  }
  .footer-wrapper .copyright p {
    font-size: 16px;
  }
}
/*# sourceMappingURL=app.css.map */
