/*!
 * 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: 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: 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: arial, helvetica, sans-serif;
  overflow-x: hidden;
}

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

::-moz-selection {
  background-color: #EC1C23;
  color: #3C4658;
}

::selection {
  background-color: #EC1C23;
  color: #3C4658;
}

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 #3C4658;
  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: 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: 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: #3C4658;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

/*
.icon-arrow-back::before {
	content: "\e901";
}
*/
.container {
  max-width: 1108px;
  margin: 0 auto;
  padding: 0 20px;
}
.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: #FFF;
  font-family: arial, helvetica, sans-serif;
  color: #3C4658;
  -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, html.in-popup, html.is-in-popup {
  overflow: hidden !important;
}

input,
textarea,
select {
  outline: none;
}

input:focus,
textarea:focus {
  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: arial, helvetica, sans-serif;
  color: #3C4658;
  font-weight: 400;
  margin: 0;
}

p {
  margin-bottom: 1rem;
  color: #3C4658;
}

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

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 {
  height: 400px;
  position: relative;
}
#headerWrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#headerWrapper .image img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#headerWrapper .image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 76px;
  width: 100%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
#headerWrapper .logos {
  position: relative;
  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;
  padding-top: 16px;
  z-index: 3;
}
#headerWrapper .logos .logo-timestamp svg {
  width: 111px;
  height: 21px;
}
#headerWrapper .logos .logo-sas svg {
  width: 52px;
  height: 28px;
}
#headerWrapper.--is-confirmation-page {
  height: 76px;
}
#headerWrapper.--is-confirmation-page .image {
  display: none;
}
#headerWrapper.--is-confirmation-page::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 76px;
  width: 100%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1025px) {
  #headerWrapper {
    height: 800px;
  }
  #headerWrapper .image::before {
    height: 218px;
  }
  #headerWrapper .logos {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 988px;
    margin: 0 auto;
    padding-top: 68px;
  }
  #headerWrapper .logos .logo-timestamp svg {
    width: 267px;
    height: 50px;
  }
  #headerWrapper .logos .logo-sas svg {
    width: 132px;
    height: 70px;
  }
  #headerWrapper.--is-confirmation-page {
    height: 110px;
  }
  #headerWrapper.--is-confirmation-page::before {
    height: 110px;
    width: 100%;
  }
  #headerWrapper.--is-confirmation-page .logos {
    padding-top: 34px;
  }
  #headerWrapper.--is-confirmation-page .logos .logo-timestamp svg {
    width: 133px;
    height: 25px;
  }
  #headerWrapper.--is-confirmation-page .logos .logo-sas svg {
    width: 66px;
    height: 35px;
  }
}

.footer-top {
  padding-top: 40px;
  padding-bottom: 55px;
  text-align: center;
}
.footer-top p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}
.footer-top p a, .footer-top p a:visited {
  text-decoration: none;
}
@media (min-width: 1025px) {
  .footer-top {
    padding-top: 70px;
  }
  .footer-top p {
    font-size: 18px;
  }
}

.footer-middle {
  background-color: #F8F8F8;
  padding-top: 60px;
  padding-bottom: 50px;
}
.footer-middle .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer-middle .logo-timestamp svg {
  width: 169px;
  height: 32px;
}
.footer-middle .logo-sas {
  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;
  gap: 12px;
}
.footer-middle .logo-sas span {
  display: inline-block;
  font-size: 10px;
  line-height: 12px;
  color: #000;
}
.footer-middle .logo-sas svg {
  width: 83px;
  height: 44px;
}
@media (min-width: 1025px) {
  .footer-middle {
    background-color: #F5F5F5;
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .footer-middle .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-middle .logo-timestamp svg {
    width: 267px;
    height: 50px;
  }
  .footer-middle .logo-sas {
    gap: 26px;
  }
  .footer-middle .logo-sas svg {
    width: 132px;
    height: 70px;
  }
}

.footer-bottom {
  background-color: #F8F8F8;
  padding-bottom: 24px;
}
.footer-bottom p {
  color: #000000;
  text-align: center;
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .footer-bottom {
    background-color: #FFFFFF;
    padding-bottom: 52px;
    padding-top: 22px;
  }
  .footer-bottom p {
    text-align: left;
  }
}

#footerWrapper.--is-confirmation-page .footer-bottom {
  background-color: #FFF !important;
}
#footerWrapper.--is-confirmation-page .footer-bottom p {
  text-align: center !important;
}

.hp-intro {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 40px;
}
.hp-intro .container {
  max-width: 1112px;
}
.hp-intro h1 {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 14px;
  padding: 12px 25px;
  border: 1px solid #3C4658;
  border-radius: 50px;
}
.hp-intro h2 {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
}
.hp-intro .description p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.hp-intro .description p em {
  font-size: 14px;
}
.hp-intro .description p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .hp-intro {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .hp-intro h1 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 30px;
    padding: 20px 58px;
    border-radius: 51px;
  }
  .hp-intro h2 {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 40px;
  }
  .hp-intro .description p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .hp-intro .description p em {
    font-size: 16px;
  }
  .hp-intro .description p:last-child {
    margin-bottom: 0;
  }
}

.form-info {
  background-color: #EC1C23;
  padding: 0 10px;
}
.form-info h1, .form-info h2, .form-info h3, .form-info h4, .form-info h5, .form-info h6, .form-info p, .form-info a, .form-info a:visited {
  color: #FFF;
}
@media (min-width: 1025px) {
  .form-info {
    padding: 0;
    padding-top: 45px;
    padding-bottom: 65px;
  }
  .form-info .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .form-info .container > * {
    width: 50%;
  }
  .form-info .agenda {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.agenda {
  padding: 32px 0;
  border-bottom: 1px solid #FFF;
}
.agenda .content-header {
  border-bottom: 1px solid #FFF;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.agenda .content-header h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
.agenda .description p {
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 20px;
}
.agenda .description p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .agenda {
    padding: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #FFF;
  }
  .agenda .content-header {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 36px;
  }
  .agenda .description {
    text-align: center;
  }
}

.form-wrapper {
  padding: 34px 0;
}
.form-wrapper .content-header {
  margin-bottom: 34px;
}
.form-wrapper .content-header h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}
.form-wrapper .content-header p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 17px;
}
.form-wrapper .content-header p strong {
  display: block;
}
.form-wrapper .form-field {
  margin-bottom: 30px;
}
.form-wrapper .form-field label {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #FFF;
  display: block;
  margin-bottom: 16px;
  padding-left: 10px;
}
.form-wrapper .form-field input {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  font-family: arial, helvetica, sans-serif;
  border: 0;
  background-color: #FFF;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 11px 20px;
  width: 100%;
  color: #000;
}
.form-wrapper .form-field input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.form-wrapper .form-field input::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.form-wrapper .form-field input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.form-wrapper .form-field input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.form-wrapper .form-field input::placeholder {
  color: #000;
  opacity: 1;
}
.form-wrapper .form-field input:focus {
  color: #000;
}
.form-wrapper .form-submit {
  margin-top: 44px;
  text-align: center;
}
.form-wrapper .form-submit a.button {
  display: inline-block;
  background-color: #000;
  padding: 16px 38px;
  font-size: 24px;
  line-height: 28px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
}
.form-wrapper p.note {
  margin-top: 38px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
.form-wrapper .wpcf7-not-valid-tip {
  display: none !important;
}
.form-wrapper .form-field-hidden, .form-wrapper .hidden {
  display: none !important;
}
.form-wrapper .ajax-loader {
  display: none !important;
}
.form-wrapper .wpcf7 form.invalid .wpcf7-response-output, .form-wrapper .wpcf7 form.unaccepted .wpcf7-response-output {
  clear: both;
  border: 0;
  padding: 10px;
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: red;
  background-color: #FFF;
  margin-bottom: 0;
  margin-top: 20px;
  border-radius: 8px;
}
.form-wrapper .wpcf7 form.sent .wpcf7-response-output {
  clear: both;
  border: 0;
  padding: 10px;
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFF;
  background-color: green;
  margin-bottom: 0;
  margin-top: 20px;
  border-radius: 8px;
}
@media (min-width: 1025px) {
  .form-wrapper {
    padding: 0;
  }
  .form-wrapper .content-header {
    margin-bottom: 36px;
    padding-bottom: 10px;
    border-bottom: 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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .form-wrapper .content-header h2 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 0;
  }
  .form-wrapper .content-header p {
    margin-top: 6px;
  }
  .form-wrapper .content-header p strong {
    display: inline;
  }
  .form-wrapper .form-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .form-wrapper .form-fields > * {
    width: 50%;
  }
  .form-wrapper .form-field {
    margin-bottom: 0;
  }
  .form-wrapper .form-submit {
    margin-top: 36px;
    text-align: left;
  }
  .form-wrapper .form-submit a.button:hover {
    opacity: 0.5;
  }
  .form-wrapper p.note {
    margin-top: 28px;
    font-size: 11px;
    line-height: 12px;
    text-align: left;
  }
}

.confirmation {
  text-align: center;
  padding: 64px 0;
}
.confirmation .container {
  max-width: 530px;
}
.confirmation p {
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .confirmation {
    padding-top: 62px;
    padding-bottom: 96px;
  }
}
/*# sourceMappingURL=app.css.map */
