/*--------------------------------------------------------------
Settings: Global variables, config switches.
Tools: Default mixins and functions.
Generic: Ground-zero styles (Normalize.css, resets, box-sizing).
Base: Unclassed HTML elements (type selectors).
Objects: Cosmetic-free design patterns.
Components: Designed components, chunks of UI.
Trumps: Helpers and overrides.
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Settings: Global variables, config switches.
--------------------------------------------------------------*/


.col-centered{
    float: none;
    margin: 0 auto;
}



/*--------------------------------------------------------------
Base: Unclassed HTML elements (type selectors).
--------------------------------------------------------------*/
a[disabled], button[disabled] { pointer-events: none; }

a:focus, a:hover{
	text-decoration: none;
}


a, a:hover, button, button:hover, .navbar-toggle:hover {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

h1 {
  color: rgba(0,0,0,.87);
  font-family: 'Montserrat', sans-serif;
      font-size: 32px;
    font-weight: 800;
    line-height: 1.20;
    opacity: 1.00;
    margin-top: 0px;
    margin-bottom: 10px;
    letter-spacing: -0.72px;
    word-spacing: 1.00px;
    text-transform: none;
}

h2 {
  color: rgba(0,0,0,.87);
  font-family: 'Montserrat', sans-serif;
        font-size: 26px;
    font-weight: 700;
    line-height: 1.20;
    opacity: 1.00;
    margin-top: 0px;
    margin-bottom: 5px;
    letter-spacing: -0.72px;
    word-spacing: 0.00px;
    text-transform: none;
    margin-top: 20px;
}

h3 {
  color: rgba(0,0,0,.87);
  font-family: 'Montserrat', sans-serif;
        font-size: 20px;
    font-weight: 700;
    line-height: 1.20;
    opacity: 0.90;
    margin-top: 0px;
    margin-bottom: 5px;
    letter-spacing: 0.00px;
    word-spacing: 0.00px;
    text-transform: none;
    margin-top: 20px;
}

h1:first-child {
    margin-bottom: 0px;
}

h1:not(:first-child) {
    margin-top: 0px;
}

h1 a, h2 a, h3 a{
  color: rgba(0,0,0,.87);
}

table{
font-family: 'Open Sans', sans-serif;
}
p {
font-family: 'Open Sans', sans-serif;
 font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(0,0,0,.56);
    margin-top: 0px;
    margin-bottom: 25px;
    letter-spacing: -0.06px;
    word-spacing: 0.00px;
    text-transform: none;
}

b, strong {
    font-weight: 700;
}

li, ul {
font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(0,0,0,.56);
    font-weight: 400;
    line-height: 1.65;
    margin-top: 0px;
    margin-bottom: 5px;
    letter-spacing: -0.06px;
    word-spacing: 0.00px;
    text-transform: none;
}

ul {
    list-style-type: initial;
}

p~ul, p~ol {
/*  margin-top: -25px; */
}

blockquote {
  font-family: 'Open Sans', sans-serif;
  padding: 18px 18px;
  text-align: center;
  background: rgba(120, 1, 22, .1);
  border-left: 10px solid #780116;
  margin: 12px 0 24px;
}

blockquote p {
  font-size: 20px;
  color: rgba(0,0,0,.87);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
Base: Unclassed HTML elements (type selectors).
--------------------------------------------------------------*/


/*--- Form styles ----*/

a, a:hover, button, button:hover {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.form-style {
      position: relative;
        display: table;
    width: 100%;
    height: 55px;
  font-size:1em;
  text-align: left;
}

.control-label {
     color: #9B9B9B;
    line-height: 60px;
    top: 0;
    padding: 0 20px;
    transition: all 240ms ease;
    text-transform: uppercase;
    font-weight: 400;
    cursor: text;
    pointer-events: none;
    position: absolute;
    margin: 0;
    font-size:1em;
}

.form-style.focused .control-label {
 font-size: .8em;
    line-height: 35px;
    background: transparent;
    width: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.form-control {
     color: #9B9B9B;
    border-radius: 4px;
    background: #EFEFEF;
    outline: none;
    box-shadow: none;
    border: none;
    cursor: text;
  height:60px;
  font-size:1em;
}

.form-control:hover{
     outline: none;
    box-shadow: none;
    border: none;
}

input.form-control {
    padding: 20px 20px 0;
    color: #212121;
}

textarea{
  resize: vertical;
}
textarea.form-control {
    padding: 30px 20px 0;
    color: #212121;
}

.form-control:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}

.has-warning .control-label {
    color: #BF362A;
}


.has-warning .form-control, .has-warning .form-control:focus {
    border: none;
    box-shadow: none;
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* --- material floating appended button --- */

.btn{
  font-weight: 400;
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
  font-size: 20px;
  border-radius: 4px;
}
.appended input{
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.btn-submit {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
background: #EDAE49;
  color: white;
  text-transform: uppercase;
}

.btn-submit a{
  font-size:1em;
}
.btn-submit:hover{
  color:white;
  background: #D39B41;
}




.btn-primary {
	background-color: #DC5226;
  border: 1px solid rgba(0, 0, 0, 0.12);
	color: rgba(255, 255, 255, 1);
	padding: 13px 26px;
}

.btn-primary:hover {
	background-color: #C84B23;
	color: rgba(255, 255, 255, 1);
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 13px 26px;
}

.btn-primary.focus, .btn-primary:focus, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover, .btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    color: #fff;
	background-color: #C84B23;
}

.btn-outline-light{
  color: #fff;
	background-color: transparent;
  border: 1px solid white;
  padding: 13px 26px;
}

.btn-outline-light.focus, .btn-outline-light:focus, .btn-outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .2);
  text-decoration: none;
  border: 1px solid white;
}

.btn-outline-dark {
    color: rgba(0, 0, 0, .87);
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.87);
    padding: 13px 26px;
}

.btn-outline-dark.focus, .btn-outline-dark:focus, .btn-outline-dark:hover {
  color: rgba(0, 0, 0, .87);
  background: rgba(0, 0, 0, .05);
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.87);
}









.comingsoon{
      position: relative;
}

.inner{
    padding: 230px 0 50px;
}

.background-image{
  background: url(/assets/images/bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  height: 300px;
width: 100%;
}

.fill{
  height: 300px;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
position: absolute;
}

.img-logo {
    height: 190px;
    margin-bottom: 20px;
  }



  .faq{
margin: 24px 0 120px;
  }
