/*!
 * 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: "Roboto", 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: "Oswald", 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: "Oswald", arial, helvetica, sans-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: #4A4A4A;
  color: #000;
}

::selection {
  background-color: #4A4A4A;
  color: #000;
}

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: "Roboto", 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: "Oswald", 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: #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 12px;
}
.container.--fluid {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1025px) {
  .container {
    padding: 0 50px;
  }
}

.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: #FFF;
  font-family: "Oswald", arial, helvetica, sans-serif;
  color: #4A4A4A;
  -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: "Roboto", arial, helvetica, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 0;
}

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

a, a:visited {
  color: #000;
  text-decoration: underline;
}
@media (min-width: 1025px) {
  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;
}

#headerWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#headerWrapper .header {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#headerWrapper .header .logo {
  width: 138px;
  height: 48px;
}
#headerWrapper .header .logo svg {
  width: 138px;
  height: 48px;
}
#headerWrapper .header ul.languages-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
#headerWrapper .header ul.languages-nav li a, #headerWrapper .header ul.languages-nav li a:visited {
  display: block;
  width: 38px;
  height: 26px;
  border: 1px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Roboto", arial, helvetica, sans-serif;
  color: #FFF;
  letter-spacing: 0.194em;
}
#headerWrapper .header ul.languages-nav li.selected a, #headerWrapper .header ul.languages-nav li.selected a:visited {
  background-color: #D8D8D8;
  border-color: #D8D8D8;
  color: #000;
}
@media (min-width: 1025px) {
  #headerWrapper .header {
    padding-top: 34px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #headerWrapper .header .logo {
    width: 200px;
    height: 70px;
  }
  #headerWrapper .header .logo svg {
    width: 200px;
    height: 70px;
  }
  #headerWrapper .header ul.languages-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #headerWrapper .header ul.languages-nav li a, #headerWrapper .header ul.languages-nav li a:visited {
    width: 54px;
    height: 35px;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.194em;
  }
  #headerWrapper .header ul.languages-nav li a:hover, #headerWrapper .header ul.languages-nav li a:visited:hover {
    background-color: #D8D8D8;
    border-color: #D8D8D8;
    color: #000;
  }
}

#footerWrapper {
  margin-top: 74px;
}
@media (min-width: 1025px) {
  #footerWrapper {
    margin-top: 160px;
  }
}

#footerWrapper .footer-top {
  padding-top: 40px;
  margin-bottom: 46px;
  border-top: 1px solid #C9C9C9;
}
#footerWrapper .footer-top p {
  font-size: 20px;
  line-height: 29px;
  text-align: center;
  font-weight: 300;
  color: #000;
  margin-bottom: 0;
}
#footerWrapper .footer-top p strong {
  font-weight: 700;
}
@media (min-width: 1025px) {
  #footerWrapper .footer-top {
    padding-top: 58px;
    margin-bottom: 80px;
  }
}

#footerWrapper .footer-middle h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 17px;
  font-family: "Roboto", arial, helvetica, sans-serif;
}
#footerWrapper .footer-middle .logos-list {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 40px;
  font-size: 0;
}
#footerWrapper .footer-middle .logos-list .logo-item {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  padding: 0 8px;
  margin-bottom: 12px;
}
#footerWrapper .footer-middle .logos-list .logo-item .logo-item-aux {
  padding: 20px;
  border: 1px solid #4A4A4A;
  position: relative;
  padding-top: 79%;
}
#footerWrapper .footer-middle .logos-list .logo-item .logo-item-aux img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 87.5%;
}
@media (min-width: 480px) {
  #footerWrapper .footer-middle .logos-list .logo-item {
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  #footerWrapper .footer-middle .logos-list .logo-item {
    width: 25%;
  }
}
@media (min-width: 1025px) {
  #footerWrapper .footer-middle .logos-list .logo-item {
    width: 16.66%;
  }
}
@media (min-width: 1200px) {
  #footerWrapper .footer-middle .logos-list .logo-item {
    width: 14.28%;
  }
}

#footerWrapper .footer-bottom {
  text-align: center;
  background-color: #F6F6F6;
  padding-top: 60px;
  padding-bottom: 66px;
}
#footerWrapper .footer-bottom .social-wrapper {
  margin-bottom: 32px;
}
#footerWrapper .footer-bottom ul.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
}
#footerWrapper .footer-bottom ul.social-links li a, #footerWrapper .footer-bottom ul.social-links li a:visited {
  display: block;
  border: 1px solid #9B9B9B;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
#footerWrapper .footer-bottom ul.social-links li svg {
  width: 45px;
  height: 45px;
}
#footerWrapper .footer-bottom .btn-wrapper a, #footerWrapper .footer-bottom .btn-wrapper a:visited {
  display: inline-block;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Roboto", arial, helvetica, sans-serif;
  font-weight: 500;
  color: #9B9B9B;
  text-decoration: none;
  border: 1px solid #9B9B9B;
  padding: 12px 40px;
}
#footerWrapper .footer-bottom p {
  padding: 0 25px;
  font-size: 9px;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #4A4A4A;
  font-family: "Roboto", arial, helvetica, sans-serif;
}
#footerWrapper .footer-bottom p a, #footerWrapper .footer-bottom p a:visited {
  color: #4A4A4A;
}
#footerWrapper .footer-bottom p .m-sep {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (min-width: 1025px) {
  #footerWrapper .footer-bottom {
    padding: 60px 0;
    margin-top: 90px;
  }
  #footerWrapper .footer-bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footerWrapper .footer-bottom .social-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 54px;
  }
  #footerWrapper .footer-bottom ul.social-links {
    margin-bottom: 0;
  }
  #footerWrapper .footer-bottom p .m-sep {
    display: inline;
    width: auto;
    height: auto;
  }
}

.hp-banner {
  height: 618px;
  position: relative;
}
.hp-banner .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hp-banner .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hp-banner h1 {
  padding: 0 12px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 36px;
  line-height: 39px;
  letter-spacing: 0.068em;
  color: #FFF;
  font-family: "Oswald", arial, helvetica, sans-serif;
  font-weight: 300;
  text-align: center;
}
.hp-banner a.scroll-next, .hp-banner a.scroll-next:visited {
  position: absolute;
  bottom: 74px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border: 2px solid #FFF;
}
.hp-banner a.scroll-next svg, .hp-banner a.scroll-next:visited svg {
  width: 19px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .hp-banner {
    height: 816px;
  }
  .hp-banner .info {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 367px;
    left: 0;
    right: 0;
  }
  .hp-banner h1 {
    position: relative;
    max-width: 925px;
    margin: 0 auto;
    padding: 0 12px;
    font-size: 48px;
    line-height: 55px;
    top: auto;
    left: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
  }
  .hp-banner a.scroll-next, .hp-banner a.scroll-next:visited {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0 auto;
    margin-top: 54px;
    width: 36px;
    height: 36px;
    border: 2px solid #FFF;
  }
  .hp-banner a.scroll-next svg, .hp-banner a.scroll-next:visited svg {
    width: 19px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.intro-text {
  margin-bottom: 30px;
  margin-top: 26px;
}
.intro-text p {
  font-family: "Oswald", arial, helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.068em;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  color: #000;
  text-align: center;
}
@media (min-width: 1025px) {
  .intro-text {
    margin-top: 46px;
    margin-bottom: 80px;
  }
  .intro-text p {
    font-size: 20px;
    line-height: 30px;
  }
}

.tips-grid .grid {
  border-top: 1px solid #C9C9C9;
  padding-top: 24px;
  display: grid;
  gap: 86px;
}
.tips-grid .grid .image {
  padding-top: 68.45%;
  position: relative;
}
.tips-grid .grid .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tips-grid .grid .info {
  text-align: center;
}
.tips-grid .grid .info h2 {
  margin: 15px 0;
  font-family: "Oswald", arial, helvetica, sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  color: #4A4A4A;
}
.tips-grid .grid .info p {
  font-size: 17px;
  line-height: 22px;
  font-family: "Roboto", arial, helvetica, sans-serif;
  text-transform: uppercase;
  color: #4A4A4A;
  font-weight: 400;
  margin-bottom: 0;
}
.tips-grid .grid .info p strong {
  font-weight: 700;
}
@media (min-width: 768px) {
  .tips-grid .grid {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media (min-width: 1025px) {
  .tips-grid .grid {
    padding-top: 80px;
    padding-left: 7%;
    padding-right: 7%;
    gap: 116px;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
  }
  .tips-grid .grid .info h2 {
    margin: 20px 0;
    font-size: 45px;
    line-height: 52px;
  }
  .tips-grid .grid .info p {
    max-width: 498px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=app.css.map */
