* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: 'museo-500';
  src: url("./fonts/museosans_500-webfont.woff2") format("woff2"), url("./fonts/museosans_500-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'museo-700';
  src: url("./fonts/museosans_700-webfont.woff2") format("woff2"), url("./fonts/museosans_700-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'museo-900';
  src: url("./fonts/museosans_900-webfont.woff2") format("woff2"), url("./fonts/museosans_900-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'museo-500', sans-serif;
  font-weight: normal;
  background: #2f325c;
  background: -webkit-gradient(linear, left top, right top, from(#2f325c), to(#1677b7));
  background: linear-gradient(to right, #2f325c 0%, #1677b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f325c', endColorstr='#1677b7',GradientType=1 );
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  font-size: 16px;
}

.container-wide {
  max-width: 1280px;
}

/* -- Font weights ---------------------------*/
.text--400 {
  font-family: 'museo-500', sans-serif;
  font-weight: normal;
}

.text--700 {
  font-family: 'museo-700', sans-serif;
  font-weight: normal;
}

.text--800 {
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
}

.text--blue {
  color: #004C6A;
}

.text--yellow {
  color: #FBBA00;
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.link--white, .link--white:hover {
  color: #fff;
}

/* -- Form -----------------------------------*/
.form-control {
  border: none;
  padding: .8rem 1.5rem 1rem 1.5rem;
  border-radius: .75rem;
  height: auto;
  background: #fff;
}

/* -- Button ---------------------------------*/
.btn {
  position: relative;
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
  color: #004C6A;
  padding: .5rem 1.5rem .65rem 1.5rem;
  border-radius: 5rem;
}

.btn:after {
  content: '';
  position: absolute;
  top: -.5rem;
  left: -.5rem;
  display: block;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  border: 1px solid #004C6A;
  border-radius:  5rem;
  -webkit-transition: all .25s;
  transition: all .25s;
}

.btn:hover:after {
  top: -.35rem;
  left: -.35rem;
  width: calc(100% + .7rem);
  height: calc(100% + .7rem);
}

.btn--white {
  background: #fff;
}

.btn--white:hover {
  color: #fff;
  background: #004C6A;
}

.btn--yellow {
  background: #FBBA00;
}

.btn--yellow:hover {
  color: #fff;
  background: #004C6A;
}

/* -- Preloader ----------------------------- */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
/*  background: #fff;*/
  background: #2f325c;
  background: -webkit-gradient(linear, left top, right top, from(#2f325c), to(#1677b7));
  background: linear-gradient(to right, #2f325c 0%, #1677b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f325c', endColorstr='#1677b7',GradientType=1 );
  z-index: 888;
}

#preloader .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.preloader-text__line {
  overflow: hidden;
}

.preloader-text__line span {
  display: block;
  font-size: 2rem;
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

/* -- Header ------------------------------ */
#header {
  padding: 1.25rem 0;
  background: #fff;
}

  #header .brand {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }

@media all and (min-width: 992px) {
  #header {
    padding: 1.75rem 0;
  }
}

@media all and (min-width: 1200px) {
  #header {
    padding: 2.5rem 0;
  }
}

/* -- Hero -------------------------------- */
#hero {
  padding: 4rem 0 2rem 0;
}

.hero-text__line span {
  display: block;
  font-size: 2rem;
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .preloader-text__line span,
  .hero-text__line span {
    font-size: 3rem;
  }
}

@media all and (min-width: 992px) {
  .preloader-text__line span,
  .hero-text__line span {
    font-size: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .preloader-text__line span,
  .hero-text__line span {
    font-size: 4.5rem;
  }
}

/* -- Video ------------------------------- */
#video {
  position: relative;
}

#video:before {
  content: '';
  height: 33%;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* -- Content ----------------------------- */
#content {
  padding: 2rem 0 5rem 0;
}

#content .lead {
  font-size: 1.5rem;
  color: #FBBA00;
}

#content ul {
  padding: 0 0 0 1rem;
}

  #content ul li {
    line-height: 1.8;
  }

.call-to-action {
  background: #FBBA00;
  padding: 2.5rem 1rem;
  text-align: center;
}

.call-to-action h3 {
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}

.call-to-action p {
  font-size: 1.125rem;
  font-family: 'museo-700', sans-serif;
  font-weight: normal;
  line-height: 1.2;
  color: #004C6A;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* -- Footer ------------------------------ */
#footer {
  background: #fff;
  padding: 3rem 0;
}

/* -- Interesse-form ---------------------- */
#interesse-form {
  position: fixed;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background: #FBBA00;
  z-index: 888;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#interesse-form h3 {
  font-family: 'museo-900', sans-serif;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}

#interesse-form p {
  font-size: 1.125rem;
  font-family: 'museo-700', sans-serif;
  font-weight: normal;
  line-height: 1.2;
  color: #004C6A;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

#form-messages {
  margin-top: 2rem; 
  line-height: 1.2em;
  background: #fff;
}

  #form-messages.error {
    border-left: 3px solid #fd2500;    
     padding: 10px 0 10px 18px;
    color: #fd2500;    
  }

  #form-messages.success {
    border-left: 3px solid #069644;
    padding: 10px 0 10px 18px;
    color: #069644;
  }
/*# sourceMappingURL=stylesheet.css.map */