@font-face {
  font-family: 'Bevan';
  font-style: normal;
  font-weight: 400;
  src: local('Bevan Regular'), local('Bevan-Regular'), url(/css/application/fonts/bevan.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face{
    font-family:'Open Sans';
    src:url('/css/application/fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face{
    font-family:'Open Sans';
    src:url('/css/application/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight:300;
    font-style:normal
}

@font-face{
    font-family:'Open Sans';
    src:url('/css/application/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}

@font-face{
    font-family:'Open Sans';
    src: url('/css/application/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight:bold;
    font-style:normal;
}

body {
  font-family: "Open Sans", san-serif, Helvetica;
  line-height: 18px;
  font-size: 16px;
  color: #000;
}

.container {
  width: 100%;
  padding: 0 0 0 0;
}

.container-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0 0 0 0;
  width: 100%;
  background: #FFF;
  height: 75px;
}

.logo {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  height: 75px;
}

.logo img{
  display: inline-block;
  max-width: 300px;
  margin-top: 11px;
}

.title_header {
  background-color: #000;
  width: 100%;
  height: 32px;
}

#outer_content_wrapper {
  margin: 125px auto 0 auto;
  max-width: 1280px;
  padding: 0 15px;

}

h2, h3 {
  color: #b22329;
  font-family: "Bevan", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  font-size: 35px;
}

.btn, .btn-info {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  background-color: #b22329;
  border-color: #b22329;
  color: #FFF;
  border-radius: 0px;
  text-transform: uppercase;
}

.btn:hover, 
.btn:active, 
.btn:focus, 
.btn-info:hover, 
.btn-info:active, 
.btn-info:focus, 
.btn-info.active {
  background-color: #e03c3f;
  border-color: #e03c3f;
  color: #FFF;
  border-radius: 0px;
  text-transform: uppercase;
  transition: background-color .25s ease-out,color .25s ease-out;
}

a {
  color: #b22329;
  text-decoration: none;
  transition: background-color .25s ease-out,color .25s ease-out;
}

a:hover, 
a:focus, 
a:active {
  color: #e03c3f;
  text-decoration: none;
  transition: background-color .25s ease-out,color .25s ease-out;
}

.text-primary {
  color: #ae233a;
}

#secure_wrapper {
  text-align: center;
}

#secure_notice {
  background: none;
  border: 1px solid #999999;
  padding: 10px;
  margin-top: 25px;
  text-align: center;
}

#secure_notice h3 {
  margin: 0 auto;
  width: 200px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 15px;
}

@media (max-width: 839px) {
  .container-logo {
    transition: all .5s ease-in;
    -webkit-transition-delay: .2s;
    transition-delay: .2s; 
  } 

  .logo {
    max-height: 69px;
  }

  .logo img {
    max-width: 243px;
    max-height: 69px;
    margin-top: 10px;
    margin-left: 2%;
    padding-left: 0;
    transition: all .5s ease-in;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;   
  }

}

@media (max-width: 640px) {
  .container-logo {
    position: relative;
    height: 50px;
    transition: all .5s ease-in;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    box-shadow: 1px 0 1px #000;    
  }
  .title_header {
    display: none;
  }

  .logo {
    padding: 0;
    width: 100%;
    height: 50px;
    margin-top: 0;
    padding-right: 5px;
  }

  h1, h2, h3 {
    font-size: 18px;
  } 

  .logo img{
    display: block;
    max-width: 289px;
    height: 50px;
    margin: 0 auto 0 auto;
  }  

  #outer_content_wrapper {
    margin: 25px auto 0 auto;
  }  

} 