@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap");
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
table {
  border-collapse: collapse;
  width: 100%; }

td {
  vertical-align: top; }

/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
  display: block; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*-------- COLORS --------

*/
/***** END RESET *****/
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table; }

.cf:after {
  clear: both; }

.cf {
  *zoom: 1; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*---These are Variables. They are being used in place of the hex color easily changes site colors but updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
/*-----Animations--------*/
.show {
  opacity: 0;
  transition: 1s all ease;
  transform: translateY(20px); }

.show.active {
  opacity: 1;
  transform: translateY(0px); }

.showS {
  position: relative;
  opacity: 0;
  transition: 1s all ease;
  transition-delay: .4s;
  transform: translateY(20px); }

.showS.active {
  opacity: 1;
  transform: translateY(0px); }

.showT {
  position: relative;
  opacity: 0;
  transition: 1s all ease;
  transition-delay: .8s;
  transform: translateY(20px); }

.showT.active {
  opacity: 1;
  transform: translateY(0px); }

.showF {
  position: relative;
  opacity: 0;
  transition: 1s all ease;
  transition-delay: 1.1s;
  transform: translateY(20px); }

.showF.active {
  opacity: 1;
  transform: translateY(0px); }

/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box; }

body {
  font-family: "open-sans", sans-serif; }

h1, h2, h3, h4, h5 {
  font-family: "Oswald", sans-serif; }

a {
  text-decoration: none; }

.blue-btn {
  width: 220px;
  color: #fff !important;
  border-radius: 0;
  background: #062A60 !important;
  display: block;
  text-align: center;
  padding: 16px 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  transition: .3s ease;
  font-weight: 700; }

.blue-btn:hover {
  background: #EB7100 !important; }

.orange-btn {
  width: 220px;
  border: none;
  color: #000;
  transition: .3s ease;
  background: #EB7100;
  display: block;
  text-align: center;
  padding: 16px 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 700; }

.orange-btn:hover {
  background: #062A60;
  color: #fff; }

/*--- HEADER STYLES ---------------------*/
.top-wrapper {
  width: 100%;
  background: #062A60; }

.top-header {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 10px; }
  .top-header p, .top-header a {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    color: #fff;
    padding: 5px 10px; }
    @media only screen and (max-width: 400px) {
      .top-header p, .top-header a {
        font-size: 14px;
        line-height: 22px; } }
  .top-header p a:hover {
    color: #EB7100; }

header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1); }

.header {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .header a {
    height: 60px;
    margin-top: 20px; }

.logo {
  max-width: 250px;
  width: 100%; }
  .logo img {
    width: 100%; }

/*--------Hero---------*/
.hero {
  width: 100%;
  height: 700px;
  background: #000;
  position: relative;
  z-index: 0; }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero .grad {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    background: linear-gradient(to right, #062A60, transparent);
    top: 0;
    left: 0;
    right: 0; }
  .hero .hero-text {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    z-index: 150;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36%; }
    .hero .hero-text h1 {
      font-size: 70px;
      font-family: "Oswald", sans-serif;
      max-width: 800px;
      width: 100%;
      color: #fff;
      font-weight: 600;
      line-height: 80px;
      text-transform: uppercase; }
    .hero .hero-text p {
      font-size: 16px;
      line-height: 24px;
      color: #333;
      font-family: "open-sans", sans-serif;
      color: #fff;
      padding: 20px 0; }
      @media only screen and (max-width: 400px) {
        .hero .hero-text p {
          font-size: 14px;
          line-height: 22px; } }
    .hero .hero-text a {
      margin-top: 20px; }

/*-------Search-----------*/
.search {
  max-width: 1300px;
  margin: 0 auto;
  width: 99%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0 !important;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-top: -50px;
  z-index: 200;
  position: relative; }
  .search img {
    width: 500px;
    object-fit: cover; }

.search-wrapper {
  width: calc(100% - 500px);
  padding: 5% 7%; }
  .search-wrapper h2 {
    font-size: 60px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 64px;
    padding-bottom: 50px;
    line-height: 50px; }
    @media only screen and (max-width: 1200px) {
      .search-wrapper h2 {
        font-size: 45px;
        line-height: 48px; } }
    @media only screen and (max-width: 1000px) {
      .search-wrapper h2 {
        font-size: 40px;
        line-height: 44px; } }
    @media only screen and (max-width: 800px) {
      .search-wrapper h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 600px) {
      .search-wrapper h2 {
        font-size: 30px;
        line-height: 33px; } }
    @media only screen and (max-width: 400px) {
      .search-wrapper h2 {
        font-size: 26px;
        line-height: 30px; } }
    .search-wrapper h2 span {
      color: #AC5401;
      font-size: 16px;
      font-weight: 700; }

.search-col input, .search-col select {
  width: 100%;
  margin: 10px 0;
  background: #F9F9F9 !important;
  border: #777 solid 1px;
  padding: 20px;
  box-sizing: border-box;
  color: #222; }

.search-col button {
  margin: 10px 0; }

.search-col button:hover {
  cursor: pointer; }

.wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box; }

.cat {
  padding: 6% 0; }
  .cat h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center; }
    @media only screen and (max-width: 1200px) {
      .cat h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .cat h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .cat h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .cat h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .cat h2 {
        font-size: 22px;
        line-height: 25px; } }
  .cat hr {
    width: 180px;
    height: 12px;
    background: #EB7100;
    border: None;
    margin: 15px auto 40px auto; }

.qls {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px; }
  .qls a {
    width: calc(25% - 15px);
    position: relative; }
    .qls a img {
      width: 100%;
      height: 240px;
      object-fit: cover; }
    .qls a i {
      position: absolute;
      transition: .3s ease;
      z-index: 50;
      color: #fff;
      padding: 15px;
      background: #EB7100;
      bottom: 65px;
      right: 10px; }
    .qls a h3 {
      font-size: 18px;
      text-transform: uppercase;
      color: #000;
      font-weight: 600;
      font-family: "Oswald", sans-serif;
      padding: 10px 0; }
    .qls a:hover i {
      background: #062A60; }

.blue-back {
  width: 100%;
  background: #062A60; }

.brands {
  padding: 6% 0 12% 0; }
  .brands h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px;
    color: #fff;
    text-align: center; }
    @media only screen and (max-width: 1200px) {
      .brands h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .brands h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .brands h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .brands h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .brands h2 {
        font-size: 22px;
        line-height: 25px; } }
  .brands hr {
    width: 180px;
    height: 12px;
    background: #EB7100;
    border: None;
    margin: 15px auto 40px auto; }

.brand-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px 20px;
  flex-wrap: wrap; }
  .brand-row a {
    width: calc(25% - 20px);
    position: relative; }
    .brand-row a .white-back {
      width: 100%;
      min-height: 270px;
      position: relative;
      z-index: 80;
      padding: 35px 35px 65px 35px;
      clip-path: polygon(0% 0%, 100% 0%, 100% 84.25%, 0% 100%);
      background: #fff; }
      .brand-row a .white-back h3 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        line-height: 35px;
        padding-bottom: 10px; }
        @media only screen and (max-width: 1000px) {
          .brand-row a .white-back h3 {
            font-size: 28px;
            line-height: 32px; } }
        @media only screen and (max-width: 700px) {
          .brand-row a .white-back h3 {
            font-size: 22px;
            line-height: 26px; } }
        @media only screen and (max-width: 400px) {
          .brand-row a .white-back h3 {
            font-size: 18px;
            line-height: 24px; } }
      .brand-row a .white-back p {
        font-size: 16px;
        line-height: 24px;
        color: #333;
        font-family: "open-sans", sans-serif; }
        @media only screen and (max-width: 400px) {
          .brand-row a .white-back p {
            font-size: 14px;
            line-height: 22px; } }
    .brand-row a .icon {
      position: absolute;
      z-index: 20;
      transition: .3s ease;
      transform: rotate(2deg);
      background: #EB7100;
      bottom: 0px;
      left: 0;
      right: 0;
      width: 90%;
      margin: 0 auto; }
      .brand-row a .icon i {
        color: #fff;
        font-size: 20px;
        float: right;
        padding: 30px 15px 15px; }
    .brand-row a:hover .icon {
      transform: rotate(4deg); }

.custom {
  max-width: 1300px;
  margin: 0 auto;
  width: 99%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #fff;
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
  margin-top: -5%; }
  .custom img {
    width: 40%;
    object-fit: cover; }
  .custom .text {
    width: 60%;
    padding: 6% 5%; }
    .custom .text h2 {
      font-size: 45px;
      font-weight: 700;
      font-family: "Oswald", sans-serif;
      color: #000;
      text-transform: uppercase;
      line-height: 50px; }
      @media only screen and (max-width: 1200px) {
        .custom .text h2 {
          font-size: 40px;
          line-height: 45px; } }
      @media only screen and (max-width: 1000px) {
        .custom .text h2 {
          font-size: 35px;
          line-height: 40px; } }
      @media only screen and (max-width: 800px) {
        .custom .text h2 {
          font-size: 30px;
          line-height: 43px; } }
      @media only screen and (max-width: 600px) {
        .custom .text h2 {
          font-size: 26px;
          line-height: 30px; } }
      @media only screen and (max-width: 400px) {
        .custom .text h2 {
          font-size: 22px;
          line-height: 25px; } }
    .custom .text p {
      font-size: 16px;
      line-height: 24px;
      color: #333;
      font-family: "open-sans", sans-serif;
      padding: 40px 0; }
      @media only screen and (max-width: 400px) {
        .custom .text p {
          font-size: 14px;
          line-height: 22px; } }

.sell {
  max-width: 1300px;
  margin: 0 auto;
  width: 99%;
  box-sizing: border-box;
  text-align: center;
  padding: 2% 10px; }
  .sell h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px; }
    @media only screen and (max-width: 1200px) {
      .sell h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .sell h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .sell h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .sell h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .sell h2 {
        font-size: 22px;
        line-height: 25px; } }
  .sell p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    padding: 25px 0; }
    @media only screen and (max-width: 400px) {
      .sell p {
        font-size: 14px;
        line-height: 22px; } }
  .sell a {
    margin: 0 auto; }

/*---------Pages----------*/
.page-hero {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  padding: 4% 10px 8% 10px; }
  .page-hero h1 {
    font-size: 60px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 64px;
    padding-bottom: 15px; }
    @media only screen and (max-width: 1200px) {
      .page-hero h1 {
        font-size: 45px;
        line-height: 48px; } }
    @media only screen and (max-width: 1000px) {
      .page-hero h1 {
        font-size: 40px;
        line-height: 44px; } }
    @media only screen and (max-width: 800px) {
      .page-hero h1 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 600px) {
      .page-hero h1 {
        font-size: 30px;
        line-height: 33px; } }
    @media only screen and (max-width: 400px) {
      .page-hero h1 {
        font-size: 26px;
        line-height: 30px; } }
  .page-hero p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    color: #fff; }
    @media only screen and (max-width: 400px) {
      .page-hero p {
        font-size: 14px;
        line-height: 22px; } }

.what {
  max-width: 1300px;
  margin: 0 auto;
  width: 99%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #fff;
  margin-top: -60px;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.1); }
  .what img {
    width: 40%;
    object-fit: cover; }
  .what .text {
    width: 60%;
    padding: 6% 4%; }
    .what .text h2 {
      font-size: 45px;
      font-weight: 700;
      font-family: "Oswald", sans-serif;
      color: #000;
      text-transform: uppercase;
      line-height: 50px; }
      @media only screen and (max-width: 1200px) {
        .what .text h2 {
          font-size: 40px;
          line-height: 45px; } }
      @media only screen and (max-width: 1000px) {
        .what .text h2 {
          font-size: 35px;
          line-height: 40px; } }
      @media only screen and (max-width: 800px) {
        .what .text h2 {
          font-size: 30px;
          line-height: 43px; } }
      @media only screen and (max-width: 600px) {
        .what .text h2 {
          font-size: 26px;
          line-height: 30px; } }
      @media only screen and (max-width: 400px) {
        .what .text h2 {
          font-size: 22px;
          line-height: 25px; } }
    .what .text p {
      font-size: 16px;
      line-height: 24px;
      color: #333;
      font-family: "open-sans", sans-serif;
      padding: 20px 0; }
      @media only screen and (max-width: 400px) {
        .what .text p {
          font-size: 14px;
          line-height: 22px; } }
  .what .fa-x {
    color: red; }

.what-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }
  .what-row ul {
    padding: 15px 50px 0 0;
    margin: 0 !important; }
    .what-row ul li {
      line-height: 28px;
      font-size: 16px;
      line-height: 24px;
      color: #333;
      font-family: "open-sans", sans-serif;
      list-style: none; }
      @media only screen and (max-width: 400px) {
        .what-row ul li {
          font-size: 14px;
          line-height: 22px; } }
      .what-row ul li i {
        color: #fff;
        padding: 5px;
        font-size: 14px;
        background: #EB7100;
        margin: 2px; }

.why-wrap {
  width: 100%;
  padding: 6% 0; }
  .why-wrap h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center; }
    @media only screen and (max-width: 1200px) {
      .why-wrap h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .why-wrap h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .why-wrap h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .why-wrap h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .why-wrap h2 {
        font-size: 22px;
        line-height: 25px; } }
  .why-wrap hr {
    width: 180px;
    height: 12px;
    background: #EB7100;
    border: None;
    margin: 15px auto 30px auto; }
  .why-wrap p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px; }
    @media only screen and (max-width: 400px) {
      .why-wrap p {
        font-size: 14px;
        line-height: 22px; } }

.why-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px; }
  .why-row .why {
    width: calc(25% - 20px);
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
    padding: 30px; }
    .why-row .why h3 {
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
      color: #000;
      line-height: 35px;
      padding-bottom: 10px; }
      @media only screen and (max-width: 1000px) {
        .why-row .why h3 {
          font-size: 28px;
          line-height: 32px; } }
      @media only screen and (max-width: 700px) {
        .why-row .why h3 {
          font-size: 22px;
          line-height: 26px; } }
      @media only screen and (max-width: 400px) {
        .why-row .why h3 {
          font-size: 18px;
          line-height: 24px; } }
    .why-row .why p {
      font-size: 16px;
      line-height: 24px;
      color: #333;
      font-family: "open-sans", sans-serif;
      text-align: left; }
      @media only screen and (max-width: 400px) {
        .why-row .why p {
          font-size: 14px;
          line-height: 22px; } }

.thankyou {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  padding: 4% 10px; }
  .thankyou h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 35px; }
    @media only screen and (max-width: 1000px) {
      .thankyou h2 {
        font-size: 28px;
        line-height: 32px; } }
    @media only screen and (max-width: 700px) {
      .thankyou h2 {
        font-size: 22px;
        line-height: 26px; } }
    @media only screen and (max-width: 400px) {
      .thankyou h2 {
        font-size: 18px;
        line-height: 24px; } }
  .thankyou ul {
    padding: 20px 0; }
  .thankyou ul li {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    line-height: 28px;
    list-style: none; }
    @media only screen and (max-width: 400px) {
      .thankyou ul li {
        font-size: 14px;
        line-height: 22px; } }

/*--------FORM STYLES--------------------*/
.cont-page {
  margin-top: -70px !important;
  background: #fff; }

#formpage {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  text-align: left; }
  #formpage label {
    margin: 5px;
    display: block; }
  #formpage input, #formpage select {
    padding: 14px;
    border: #ccc;
    color: #222 !important;
    font-size: 14px;
    background: #F8F8F8;
    border-radius: 5px; }
  #formpage input[type="text"], #formpage input[type="email"], #formpage input[type="date"], #formpage select, #formpage input[type="phone"] {
    width: 100%;
    box-sizing: border-box; }
  #formpage textarea {
    font-family: 'Arial', sans-serif;
    border: #ccc;
    box-sizing: border-box;
    color: #000;
    background: #fff;
    width: 100%;
    height: 100px;
    border-radius: 2px;
    padding: 14px;
    color: #777 !important;
    font-size: 14px;
    background: #F8F8F8;
    border-radius: 5px; }
  #formpage textarea:focus {
    border: 1px solid #ccc;
    border-radius: 2px; }
  #formpage button {
    border: none !important; }
  #formpage button:hover {
    cursor: pointer; }

#formpage .captcha-button input {
  color: #fff !important; }

.flex-form {
  width: 100%;
  padding: 50px;
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
  margin: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px; }
  .flex-form h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 35px;
    padding-bottom: 10px;
    margin-left: 5px; }
    @media only screen and (max-width: 1000px) {
      .flex-form h2 {
        font-size: 28px;
        line-height: 32px; } }
    @media only screen and (max-width: 700px) {
      .flex-form h2 {
        font-size: 22px;
        line-height: 26px; } }
    @media only screen and (max-width: 400px) {
      .flex-form h2 {
        font-size: 18px;
        line-height: 24px; } }
  .flex-form p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    margin-top: 5px;
    padding-bottom: 15px; }
    @media only screen and (max-width: 400px) {
      .flex-form p {
        font-size: 14px;
        line-height: 22px; } }
  .flex-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-left: 5px;
    padding-top: 15px; }
  .flex-form a {
    color: #000; }
  .flex-form a:hover {
    text-decoration: underline; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }

.form-whole {
  width: calc(100% - 10px);
  display: block;
  vertical-align: middle;
  margin: 5px; }

.form-half {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-third {
  width: calc(33.33% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.CaptchaPanel {
  text-align: left !important; }

.include-captcha {
  display: none; }

/*-------- FOOTER STYLES ----------------*/
.footer {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  padding: 4% 0; }

.top-footer {
  width: 100%;
  padding: 10px 10px 8%; }
  .top-footer h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px;
    color: #fff; }
    @media only screen and (max-width: 1200px) {
      .top-footer h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .top-footer h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .top-footer h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .top-footer h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .top-footer h2 {
        font-size: 22px;
        line-height: 25px; } }
  .top-footer hr {
    width: 100%;
    height: 5px;
    background: #fff;
    border: None;
    margin: 20px 0; }

.top-footer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .top-footer-row a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
    transition: .3s ease; }
    .top-footer-row a i {
      color: #EB7100;
      padding-right: 15px;
      font-size: 50px; }
    .top-footer-row a p {
      color: #fff;
      font-size: 26px;
      font-family: "Oswald", sans-serif;
      font-weight: 800;
      line-height: 25px; }
      .top-footer-row a p span {
        font-size: 18px;
        font-weight: 400; }
    .top-footer-row a:hover p {
      color: #EB7100; }

.bottom-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .bottom-footer .left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; }
    .bottom-footer .left ul {
      margin: 0 !important;
      padding: 0 4%;
      width: 200px; }
      .bottom-footer .left ul li {
        line-height: 28px;
        list-style: none; }
        .bottom-footer .left ul li a {
          color: #fff;
          transition: .3s ease;
          text-transform: uppercase;
          font-size: 16px;
          font-family: "Oswald", sans-serif; }
        .bottom-footer .left ul li a:hover {
          color: #EB7100; }
  .bottom-footer .right p {
    color: #fff;
    font-size: 16px;
    margin-top: 100px; }

.faq {
  max-width: 1300px;
  margin: 0 auto;
  width: 99%;
  box-sizing: border-box;
  padding: 4% 10px; }
  .faq h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center; }
    @media only screen and (max-width: 1200px) {
      .faq h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 1000px) {
      .faq h2 {
        font-size: 35px;
        line-height: 40px; } }
    @media only screen and (max-width: 800px) {
      .faq h2 {
        font-size: 30px;
        line-height: 43px; } }
    @media only screen and (max-width: 600px) {
      .faq h2 {
        font-size: 26px;
        line-height: 30px; } }
    @media only screen and (max-width: 400px) {
      .faq h2 {
        font-size: 22px;
        line-height: 25px; } }
  .faq hr {
    width: 180px;
    height: 12px;
    background: #EB7100;
    border: None;
    margin: 15px auto 40px auto; }

/*--------FAQ-----------------------*/
.accordion {
  background-color: #fff;
  border: solid 1px #ccc;
  color: #000;
  cursor: pointer;
  padding: 26px;
  font-size: 18px;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font-weight: 500;
  transition: 0.4s; }

.accordion i {
  padding-left: 15px;
  font-size: 15px;
  transition: .3s ease; }

.accordion:hover {
  background-color: #f0f0f0; }

.active2 i {
  transform: rotate(180deg);
  padding-right: 15px; }

.panel {
  padding: 0px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }
  .panel p {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "open-sans", sans-serif;
    font-size: 20px; }
    @media only screen and (max-width: 400px) {
      .panel p {
        font-size: 14px;
        line-height: 22px; } }

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .check-availability-link,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .email-seller-link,
.body-wrapper > div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .apply-button,
.body-wrapper > div:not(.detail-wrapper) button.page-nav {
  background: #062A60 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .view-listing-details-link,
.body-wrapper > div:not(.detail-wrapper) .contact-options a,
.body-wrapper > div:not(.detail-wrapper) .fin-calc-mobile > a,
.body-wrapper > div:not(.detail-wrapper) button.g-recaptcha.button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .apply-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .nuf-button,
.body-wrapper > div:not(.detail-wrapper) .list-error-container .info button,
.body-wrapper > div:not(.detail-wrapper) .mobile-done-button-container .mobile-done-button,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.des-buy-now,
.body-wrapper > div:not(.detail-wrapper) button.selected-facet.ts-button,
.body-wrapper > div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn {
  background: #062A60 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .view-listing-details-link:hover,
.body-wrapper > div:not(.detail-wrapper) .contact-options a:hover,
.body-wrapper > div:not(.detail-wrapper) .fin-calc-mobile > a:hover,
.body-wrapper > div:not(.detail-wrapper) button.g-recaptcha.button:hover,
.body-wrapper > div:not(.detail-wrapper) .email-seller-link:hover,
.body-wrapper > div:not(.detail-wrapper) .mc-nav-controls .mc-icon-navarrow span,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.gtm-buynow.des-buy-now:hover,
.body-wrapper > div:not(.detail-wrapper) a.buy-btn.des-buy-now:hover,
.body-wrapper > div:not(.detail-wrapper) .detail-contact-bar .contact-bar-btn:hover {
  background: #EB7100 !important;
  color: #fff !important; }

.body-wrapper > div:not(.detail-wrapper) .faceted-section-box .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .show-all-modal-content-container .show-all-modal-content .title-close-row .back-button,
.body-wrapper > div:not(.detail-wrapper) .show-all-modal .back-button,
.body-wrapper > div:not(.detail-wrapper) .parts-listing-container .mobile-parts-detail-container .dealer-phone-container a {
  color: #000 !important;
  border: 1px solid #000 !important; }

.body-wrapper > div:not(.detail-wrapper) .list-title .list-title-text,
.body-wrapper > div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-title-text span,
.body-wrapper > div:not(.detail-wrapper) .title-media-buttons-heading h1 {
  color: #000 !important;
  line-height: 28px !important; }

.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .fin-calc,
.body-wrapper > div:not(.detail-wrapper) .list-listing-mobile .listing-dealer-info .spec-value,
.body-wrapper > div:not(.detail-wrapper) .fin-calc,
.body-wrapper > div:not(.detail-wrapper) .fin-calc p,
.body-wrapper > div:not(.detail-wrapper) .list-main-section .list-container .list-error .info,
.body-wrapper > div:not(.detail-wrapper) .parts-bottom-section .parts-list-view .parts-list-content .error-message,
.body-wrapper > div:not(.detail-wrapper) .info,
.body-wrapper > div:not(.detail-wrapper) .list-title .list-listings-count,
.body-wrapper > div:not(.detail-wrapper) .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count,
.body-wrapper > div:not(.detail-wrapper) .list-top-section .listing-option-bar .list-listings-count,
.body-wrapper > div:not(.detail-wrapper) span.part-list-price.bold,
.body-wrapper > div:not(.detail-wrapper) .dealer-company-header,
.body-wrapper > div:not(.detail-wrapper) .dealer-info h3,
.body-wrapper > div:not(.detail-wrapper) .listing-description-text,
.body-wrapper > div:not(.detail-wrapper) .paging-container .list-page-number,
.body-wrapper > div:not(.detail-wrapper) .paging-container .page-number,
.body-wrapper > div:not(.detail-wrapper) .listing-main-stats .price,
.body-wrapper > div:not(.detail-wrapper) .list-container-flexrow .price-container .price,
.body-wrapper > div:not(.detail-wrapper) h2.listing-portion-title,
.body-wrapper > div:not(.detail-wrapper) .list-listing-mobile .price-container .price,
.body-wrapper > div:not(.detail-wrapper) .compare-listings-container .compare-container .comp-header-img .comp-title-close-cont .compare-title,
.body-wrapper > div:not(.detail-wrapper) .compare-listings-container .compare-container .compare-price,
.body-wrapper > div:not(.detail-wrapper) .rent-title,
.body-wrapper > div:not(.detail-wrapper) .rent-title-details,
.body-wrapper > div:not(.detail-wrapper) span.list-title-text,
.body-wrapper > div:not(.detail-wrapper) a.search-results-link,
.body-wrapper > div:not(.detail-wrapper) h3.listing-portion-title {
  color: #000 !important; }

.body-wrapper > div:not(.detail-wrapper) .mobile-option-bar .mobile-option-bar-filter,
.body-wrapper > div:not(.detail-wrapper) span.listing-prices__retail-price,
.body-wrapper > div:not(.detail-wrapper) span.parts-listings-count {
  color: #000 !important; }

/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1400px) {
  .brand-row {
    flex-wrap: wrap; }

  .brand-row a {
    width: calc(33.33% - 20px); } }
@media only screen and (max-width: 1200px) {
  .sell {
    padding: 40px 10px; }

  .hero {
    height: 550px; }
    .hero .hero-text {
      padding: 10px 20px;
      bottom: 25%; }
      .hero .hero-text h1 {
        font-size: 60px;
        line-height: 64px; }

  .search-wrapper {
    padding: 4%; }
    .search-wrapper h2 {
      padding-bottom: 20px; }

  .qls {
    flex-wrap: wrap; }

  .qls a {
    width: calc(33.33% - 15px); }

  .why-row {
    flex-wrap: wrap; }
    .why-row .why {
      width: calc(33.33% - 20px); } }
@media only screen and (max-width: 1150px) {
  .header .blue-btn {
    display: none; }

  .header {
    flex-direction: column;
    padding: 0; }

  .logo {
    padding: 5px 10px;
    margin: 0 auto; }

  .brand-row a {
    width: calc(50% - 20px); }

  .page-hero {
    padding: 30px 10px 80px 10px; }

  .what {
    margin-top: -40px;
    width: 97%; } }
@media only screen and (max-width: 1000px) {
  .search-col select, .search-col input {
    padding: 14px;
    margin: 5px 0; }

  .search img {
    width: 350px; }

  .search-wrapper {
    width: calc(100% - 350px); }

  .top-footer-row a p {
    font-size: 22px; }
    .top-footer-row a p span {
      font-size: 16px; }
  .top-footer-row a i {
    font-size: 40px; }

  .bottom-footer {
    flex-direction: column;
    padding: 10px; }
    .bottom-footer .right p {
      margin-top: 20px; }
    .bottom-footer .left ul {
      padding: 0 30px;
      width: 250px; } }
@media only screen and (max-width: 900px) {
  .qls a {
    width: calc(50% - 15px); }

  .what img {
    display: none; }

  .what .text {
    width: 100%; }

  .why-row .why {
    width: calc(50% - 20px);
    padding: 20px; } }
@media only screen and (max-width: 800px) {
  .search img {
    display: none; }

  .search-wrapper {
    width: 100%; }

  .search {
    width: 96%; }

  .custom {
    width: 97%; }

  .custom img {
    display: none; }

  .custom .text {
    width: 100%; }

  .top-footer-row {
    flex-direction: column;
    justify-content: flex-start; } }
@media only screen and (max-width: 700px) {
  .hero {
    height: 500px; }
    .hero .hero-text h1 {
      font-size: 50px;
      line-height: 54px; }
    .hero .grad {
      background: #062A60;
      opacity: .5; }

  .brand-row a {
    width: 100%; }

  .flex-form {
    padding: 30px; }

  .flex-row {
    flex-direction: column; }
    .flex-row .form-half {
      width: calc(100% - 10px); }
    .flex-row #formpage label {
      margin: 0 !important; } }
@media only screen and (max-width: 600px) {
  .qls a {
    width: 100%; }

  .custom .text p {
    padding: 20px 0; }

  .bottom-footer .left {
    flex-direction: column; }
    .bottom-footer .left ul {
      padding: 0;
      width: 100%; }

  .what-row {
    flex-direction: column;
    padding: 0; }
    .what-row ul {
      padding: 0; } }
@media only screen and (max-width: 500px) {
  .top-wrapper {
    display: none; }

  .hero .hero-text {
    bottom: 20%; }

  .hero .hero-text h1 {
    font-size: 40px;
    line-height: 44px; }

  .search-wrapper, .custom .text {
    padding: 20px; }

  .brand-row a .white-back {
    padding: 25px 25px 55px; }

  .why-row .why {
    width: 100%; }

  .accordion {
    padding: 20px;
    font-size: 14px; }

  .panel p {
    font-size: 16px; } }
@media only screen and (max-width: 430px) {
  .search-wrapper h2 span {
    line-height: 22px; }

  .hero {
    height: 450px; }

  .qls a img {
    height: 200px; }

  .orange-btn, .blue-btn {
    width: 180px;
    font-size: 14px;
    padding: 14px 10px; } }
@media only screen and (max-width: 380px) {
  .hero .hero-text h1 {
    font-size: 35px;
    line-height: 40px; } }
