/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

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

a {
  text-decoration: none;
  transition: color 0.5s ease, border 0.5s ease, background 0.5s ease; }
  a:active, a:focus, a:hover {
    text-decoration: none; }

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  box-sizing: border-box; }

/* --- CLEARFIX --- */
.clearfix {
  display: block;
  zoom: 1; }
  .clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden; }

/*
::selection {
  background: #000000;
  color: #ffffff;
}
::-moz-selection {
  background: #000000;
  color: #ffffff;
}
*/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial; }

input {
  -webkit-appearance: none; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  box-sizing: border-box; }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio]
input[type=tel],
select {
  box-sizing: border-box; }

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"],
iframe[src*="vimeo.com"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; }

/*
Ability to set font size, line height, and font size for each breakpoint
Headings usually have setup scale of 1, .95, .9, .85, .8, .75
*/
/*
Ability to set columns, margins, how many columns for each breakpoint, and margins for each breakpoint
For scaling down margin relatively, 1, .9, .8, .7, .6, .5 works well
*/
/*
@font-face {
  font-family: 'Antiqua';
  src: url('fonts/antiqua.otf');
  font-weight:  normal;
  font-style:   normal;
  font-stretch: normal;
}
*/
html {
  font-size: 18px; }

body {
  color: #ffffff;
  margin: 0px;
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-weight: 400;
  background: #D41920;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased; }
  body.inactive {
    height: 100vh;
    overflow: hidden; }

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

strong, b {
  font-weight: 700; }

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

.reveal {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out; }
  .reveal.active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .reveal.logos {
    -webkit-transform: translateY(calc(-50% + 50px)) !important;
            transform: translateY(calc(-50% + 50px)) !important; }
    .reveal.logos.active {
      -webkit-transform: translateY(-50%) !important;
              transform: translateY(-50%) !important; }

.serif {
  font-family: "urw-antiqua", serif;
  font-weight: 400;
  font-style: normal; }

.mobile {
  display: none; }
  @media (max-width: 768px) {
    .mobile {
      display: block; } }
.desktop {
  display: block; }
  @media (max-width: 768px) {
    .desktop {
      display: none; } }
h1 {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-family: "trade-gothic-next-condensed", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase; }
  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 55px; } }
  @media only screen and (max-width: 960px) {
    h1 {
      font-size: 52px; } }
  @media only screen and (max-width: 768px) {
    h1 {
      font-size: 49px; } }
  @media only screen and (max-width: 480px) {
    h1 {
      font-size: 46px; } }
  @media only screen and (max-width: 320px) {
    h1 {
      font-size: 44px; } }
  @media (max-width: 960px) {
    h1 {
      margin-bottom: 20px; } }
h2 {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-family: "trade-gothic-next-condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 30px; }
  @media (max-width: 960px) {
    h2 {
      margin-bottom: 20px; } }
h3 {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-family: "trade-gothic-next-condensed", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 40px; }
  @media only screen and (max-width: 1200px) {
    h3 {
      font-size: 34px; } }
  @media only screen and (max-width: 960px) {
    h3 {
      font-size: 32px; } }
  @media only screen and (max-width: 768px) {
    h3 {
      font-size: 31px; } }
  @media only screen and (max-width: 480px) {
    h3 {
      font-size: 29px; } }
  @media only screen and (max-width: 320px) {
    h3 {
      font-size: 27px; } }
  @media (max-width: 960px) {
    h3 {
      margin-bottom: 30px; } }
h4 {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 15px; }
  @media only screen and (max-width: 1200px) {
    h4 {
      font-size: 27px; } }
  @media only screen and (max-width: 960px) {
    h4 {
      font-size: 25px; } }
  @media only screen and (max-width: 768px) {
    h4 {
      font-size: 24px; } }
  @media only screen and (max-width: 480px) {
    h4 {
      font-size: 22px; } }
  @media only screen and (max-width: 320px) {
    h4 {
      font-size: 21px; } }
h5 {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 15px; }
  @media only screen and (max-width: 1200px) {
    h5 {
      font-size: 23px; } }
  @media only screen and (max-width: 960px) {
    h5 {
      font-size: 23px; } }
  @media only screen and (max-width: 768px) {
    h5 {
      font-size: 22px; } }
  @media only screen and (max-width: 480px) {
    h5 {
      font-size: 22px; } }
  @media only screen and (max-width: 320px) {
    h5 {
      font-size: 22px; } }
p, ul, ol {
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 16px; }
  @media (max-width: 960px) {
    p, ul, ol {
      margin-bottom: 30px; } }
  @media (max-width: 480px) {
    p, ul, ol {
      font-size: 16px; } }
button, .button {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "trade-gothic-next", sans-serif;
  font-style: normal;
  font-family: "trade-gothic-next-condensed", sans-serif;
  font-weight: 700;
  display: inline-block;
  border: 2px solid #ffffff;
  cursor: pointer;
  color: #3A0911;
  background: #ffffff;
  transition: all 0.5s ease;
  padding: 15px 30px;
  border-radius: 8px; }
  button:hover, .button:hover {
    color: #ffffff;
    background: transparent; }

.content {
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0px auto;
  position: relative; }
  .content.small {
    max-width: 800px; }

@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes scale-in {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.form {
  padding: 0px 0px 70px;
  text-align: center;
  background: #D41920; }
  @media (max-width: 768px) {
    .form {
      padding: 45px 0px 55px; } }
  .form p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px; }
  .form form {
    text-align: left; }
    .form form label {
      display: block;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 5px; }
      @media (max-width: 480px) {
        .form form label {
          font-size: 12px; } }
    .form form a {
      text-decoration: underline;
      color: #ffffff; }
    
    .form form input[type='text'] {
      width: 100%;
      color: #ffffff;
      line-height: 50px;
      height: 50px;
      font-size: 16px;
      border: 2px solid #ffffff;
      padding: 0px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      transition: all 0.5s ease; }
      .form form input[type='text']::-webkit-input-placeholder {
        color: #ffffff; }
      .form form input[type='text']::-moz-placeholder {
        color: #ffffff; }
      .form form input[type='text']:-ms-input-placeholder {
        color: #ffffff; }
      .form form input[type='text']::placeholder {
        color: #ffffff; }
      .form form input[type='text']:active, .form form input[type='text']:focus, .form form input[type='text'].error {
        border: 2px solid #3A0911; }
      @media (max-width: 480px) {
        .form form input[type='text'] {
          font-size: 14px; } }


    .form form input[type='tel'] {
      width: 100%;
      color: #ffffff;
      line-height: 50px;
      height: 50px;
      font-size: 16px;
      border: 2px solid #ffffff;
      padding: 0px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      transition: all 0.5s ease; }
      .form form input[type='tel']::-webkit-input-placeholder {
        color: #ffffff; }
      .form form input[type='tel']::-moz-placeholder {
        color: #ffffff; }
      .form form input[type='tel']:-ms-input-placeholder {
        color: #ffffff; }
      .form form input[type='tel']::placeholder {
        color: #ffffff; }
      .form form input[type='text']:active, .form form input[type='tel']:focus, .form form input[type='tel'].error {
        border: 2px solid #3A0911; }
      @media (max-width: 480px) {
        .form form input[type='tel'] {
          font-size: 14px; } }


    .form form .checkbox {
      display: flex;
      align-items: center;
      margin-bottom: 20px; }
      .form form .checkbox input[type='checkbox'] {
        margin-right: 10px;
        width: 25px;
        height: 25px;
        border: 2px solid #ffffff;
        border-radius: 8px;
        cursor: pointer; }
        .form form .checkbox input[type='checkbox']:checked {
          background-image: url(https://image.mail.bluetriton.com/lib/fe8d137277610c7f7d/m/1/72c389de-bf90-40c8-88d1-d59175cfb5eb.png);
          background-size: 80%;
          background-position: center center;
          background-repeat: no-repeat; }

      .form form .checkbox label {
        text-transform: none;
        width: calc(100% - 30px);
        margin-bottom: 0px; }
        .form form .checkbox label.error {
          color: #3A0911;
        }
    .form form .button-wrapper {
      text-align: center;
      margin-top: 40px; }



.thanks {
  display: none;
  text-align: center;
  background: #D41920;
  opacity: 0; }
  @media (max-width: 480px) {
    .thanks {
      padding: 45px 0px 0px; } }
  .thanks .content {
    max-width: 800px;
    padding-bottom: 40px; }
  .thanks .half-half {
    display: flex;
    background: #3A0911; }
    @media (max-width: 768px) {
      .thanks .half-half {
        flex-direction: column; } }
    .thanks .half-half .left {
      width: 50%;
      background-image: url(https://image.mail.bluetriton.com/lib/fe8d137277610c7f7d/m/1/b9e406b7-2bf7-4b66-a9ee-ebc743daff82.jpg);
      background-size: 125%;
      background-position: top center;
      transition: all 1s ease; }
      @media (max-width: 768px) {
        .thanks .half-half .left {
          width: 100%; } }
      @media (max-width: 768px) {
        .thanks .half-half .left {
          height: 350px; } }
      .thanks .half-half .left.reveal {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0); }
        @media (max-width: 768px) {
          .thanks .half-half .left.reveal {
            background-size: auto 437px; } }
        .thanks .half-half .left.reveal.active {
          background-size: 100%; }
          @media (max-width: 768px) {
            .thanks .half-half .left.reveal.active {
              background-size: auto 350px; } }
    .thanks .half-half .right {
      width: 50%;
      padding: 30px;
      text-align: left;
      max-width: 500px; }
      .thanks .half-half .right h1 {
        font-size: 58px;
        line-height: 1;
        color: #ffffff; }
        @media only screen and (max-width: 1200px) {
          .thanks .half-half .right h1 {
            font-size: 55px; } }
        @media only screen and (max-width: 960px) {
          .thanks .half-half .right h1 {
            font-size: 52px; } }
        @media only screen and (max-width: 768px) {
          .thanks .half-half .right h1 {
            font-size: 46px; } }
        @media only screen and (max-width: 480px) {
          .thanks .half-half .right h1 {
            font-size: 41px; } }
        @media only screen and (max-width: 320px) {
          .thanks .half-half .right h1 {
            font-size: 35px; } }
      @media (max-width: 768px) {
        .thanks .half-half .right {
          text-align: center;
          width: 100%; } }
footer {
  background: #3A0911;
  padding: 30px 0px 0px;
  text-align: center; }
  footer img {
    width: 100%;
    margin: 0px auto; }
  footer p {
    color: #ffffff;
    font-size: 12px;
    padding: 0px 20px;
    margin-bottom: 0px; }
    @media (max-width: 480px) {
      footer p {
        margin-bottom: 20px; } }
