@charset "UTF-8";

/*=============== FONT ===================*/

@import url('https://fonts.googleapis.com/css?family=Cairo:400,600&subset=latin-ext')


/*=============== CORE STYLING ===================*/
*{
  -webkit-text-size-adjust: none;
}
::-moz-selection{
  background: #000;
  color: #dc001b;
}
::selection{ 
  background: #000;
  color: #dc001b;
}
html{
  font-size: 8px;
}
body{
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  color: #4c4646;
  background-color: #eaeaea;
  position: relative;
}
a,
p,
span,
strong,
input,
textarea,
th, td,
label,
ul li ,ul li a,
ol li,ol li a{
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.425;
}
.form-control{
  font-size: 1.15rem;
}
p{
  margin-bottom: 0.8rem;
}
a{
  text-decoration: underline;
  color: #191a1e;
  transition: color 0.3s;
}
a:hover,
a:focus{
  outline: none;
  color: #1a1a1a;
}
input{
  outline: none !important;
  box-shadow: none !important;
}
button{
  outline: none !important;
}
h1,
.h1{
  margin: 0 0 1.8rem 0;
  padding: 0 0 0.8rem 0;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
  color: #4c4646;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}
h1:after,
.h1:after{
  content: "";
  position: absolute;
  left: 20%;
  width: 60%;
  bottom: 0;
  height: 2px;
  background-color: #dc001b;
}
h2,
.h2{
  margin: 0 0 1.6rem 0;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
  color: #4c4646;
}
@media (min-width: 320px) {
  html{
    font-size: 9px;
  }
}
@media (min-width: 420px) {
  html{
    font-size: 11px;
  }
}
@media (min-width: 575px) {
  html{
    font-size: 13px;
  }
  body,
  a,
  p,
  span,
  strong,
  input,
  textarea,
  th, td,
  label,
  ul li ,ul li a,
  ol li,ol li a{
    font-size: 0.75rem;
  }
  .form-control{
    font-size: 0.85rem;
  }
}
@media (min-width: 768px){
  html{
    font-size: 9.5px;
  }
}
@media (min-width: 992px){
  html{
    font-size: 11px;
  }
}
@media (min-width: 1120px){
  html{
    font-size: 13px;
  }
}
@media (min-width: 1286px){
  html{
    font-size: 15px;
  }
}
@media (min-width: 1520px){
  html{
    font-size: 16.6px;
  }
}
@media (min-width: 1840px){
  html{
    font-size: 20px;
  }
}
@media (min-width: 2480px){
  html{
    font-size: 26px;
  } 
}


strong{
  font-weight: 700;
  font-size: inherit;
}


/*=============== GRID STYLES ===================*/

@media (min-width: 1286px){
  .container{
    max-width: 1200px;
  }
}
@media (min-width: 1520px){
  .container{
    max-width: 1366px;
  }
}
@media (min-width: 1840px){
  .container{
    max-width: 1600px;
  }
}
@media (min-width: 2480px){
  .container{
    max-width: 2120px;
  }
}

.container{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.row.row-extrawide{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.row.row-extrawide > *[class*="col"]{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.row.row-wide{
  margin-left: -1rem;
  margin-right: -1rem;
}
.row.row-wide > *[class*="col"]{
  padding-left: 1rem;
  padding-right: 1rem;
}
.row{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.row > *[class*="col"]{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.row.row-tiny{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row.row-tiny > *[class*="col"]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.row.row-extratiny{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.row.row-extratiny > *[class*="col"]{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.row.row-connected{
  margin-left: 0;
  margin-right: 0;
}
.row.row-connected > *[class*="col"]{
  padding-left: 0;
  padding-right: 0;
}




/*=============== BUTTONS ===================*/
.btn{
  height: 3rem;
  line-height: normal;
  padding: 0 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s;
  background-color: #dc001b;
  border: none;
  color: #FFF;
  position: relative;
  text-align: left;
}
a.btn{
  line-height: 3rem;
}
.btn:hover,
.btn:active,
.btn:focus{
  background-color: #b30217;
}
.btn.disabled, 
.btn[disabled]{
    opacity: 0.4;
}

@media (min-width: 575px){
  .btn{
    height: 2.5rem;    
    font-size: 0.75rem;
  }
}



/*=============== FORMS ===================*/
.form-group{
  margin-bottom: 0.2rem;
  position: relative;
}
form label{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  height: 1.8rem;
  color: #6f6c6c;
}
form label strong,
form label span{
  line-height: inherit;
  color: inherit;
}
.form-control{
  height: 3.2rem;
  line-height: 1;
  padding: 0 0.85rem;
  border-radius: 0;
  border: 1px solid #d5d8d9;
  background-color: #fff;
  box-shadow: none !important;
  font-size: 1.1rem;
  color: #000;
  font-weight: 400;
  transition: all 0.3s;
  background-clip: unset;
}
select.form-control{
  cursor: pointer;
}
.form-control:disabled{
  opacity: 0.7;
}
.form-control.form-control-sm{
  height: 2.5rem;
}
.form-control:focus{
  border-color: #000 !important;
}
textarea.form-control{
  height: 8rem;
  padding-top: 0.7rem;
}

@media (min-width: 575px){
  .form-control{
    height: 2.5rem;
    font-size: 0.75rem;
  }
  textarea.form-control{
    height: 6rem;
  }
}


.styled-checkbox{
  height: auto;
  min-height: 2.5rem;
  padding: 0 0 0 2rem;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.styled-checkbox + .styled-checkbox{
  margin-left: 1rem;
}
.styled-checkbox input[type="checkbox"]{
  display: none;
}
.styled-checkbox input[type="checkbox"] + em{
  height: 1.6rem;
  line-height: calc(1.6rem - 2px);
  width: 1.6rem;
  text-align: center;
  background: #FFF;
  border: 1px solid #d5d8d9;
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-style: normal;
  cursor: pointer;
}
.styled-checkbox input[type="checkbox"]:checked + em:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  color: #1a1a1a;
  font-family: "LexusIcons";
  font-size: 1rem;
}
.styled-checkbox span{
  font-weight: 400;
}
.has-error.styled-checkbox input[type="checkbox"] + em{
  border-color: #e50000 !important;
}


.styled-radio{
  height: auto;
  min-height: 2.5rem;
  padding: 0 0 0 2rem;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.styled-radio + .styled-radio{
  margin-left: 1rem;
}
.styled-radio input[type="radio"]{
  display: none;
}
.styled-radio input[type="radio"] + em{
  height: 1.6rem;
  line-height: calc(1.6rem - 2px);
  width: 1.6rem;
  text-align: center;
  background: #FFF;
  border: 1px solid #d5d8d9;
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-style: normal;
  border-radius: 50%;
  cursor: pointer;
}
.styled-radio input[type="radio"]:checked + em:after{
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  content: "";
  background-color: #1a1a1a;
  border-radius: 50%;
}



/*=============== ALERT ===================*/
.alert{
  padding: 0.5rem 0.8rem;
  border-radius: 0;
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.75rem;
}
.alert-info{
  color: #ffffff;
  background-color: #132e40;
  border-color: #1a1a1a;
}
@media (min-width: 575px){
  .alert{
    font-size: 0.65rem;
  }
}