@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&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 by updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
.btn {
  display: inline-block;
  font-weight: 600;
  margin: 3px;
  padding: 12px 22px;
  align-items: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease; }

.orange {
  background: #DF6036;
  color: #000; }

.black {
  background: #1d1d1d;
  color: #fff; }

.trans {
  background: transparent;
  color: #fff;
  border: solid 1px #fff; }

.black:hover {
  background: #1d1d1d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); }

.orange:hover {
  background: #DF6036;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); }

/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box; }

body {
  font-family: "Roboto Condensed", sans-serif; }

h1, h2, h3, h4 {
  font-family: "Akshar", sans-serif; }

a {
  text-decoration: none !important; }

.pad {
  padding: clamp(25px, 3vw, 60px) 10px; }

/*--- HEADER STYLES ---------------------*/
header {
  width: 100%;
  background: #1d1d1d;
  padding: 10px; }

.header {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 1200px) {
    .header {
      width: 96%; } }

.logo {
  max-width: 400px;
  width: 100%; }
  .logo img {
    width: 100%; }

/*--------Hero---------*/
.hero {
  width: 100%;
  background: #1d1d1d;
  padding: 5%; }
  .hero img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: block; }

.home-hero {
  width: 100%;
  background: linear-gradient(150deg, #000 70%, #444 70%); }

.hero-wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  @media only screen and (max-width: 1200px) {
    .hero-wrap {
      width: 96%; } }
  .hero-wrap img {
    width: 50%; }

.hero-text {
  width: 50%;
  padding-top: 60px; }
  .hero-text h1 {
    font-size: clamp(40px, 6vw, 100px);
    padding-bottom: 30px;
    line-height: 1.1;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase; }

.content {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  text-align: center; }
  @media only screen and (max-width: 1200px) {
    .content {
      width: 96%; } }
  .content .btn {
    margin: 40px auto 20px auto; }

.top-text {
  text-align: center;
  padding-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto; }
  .top-text h2 {
    font-size: clamp(25px, 4vw, 55px);
    font-family: "Akshar", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1; }
  .top-text p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-family: "Roboto Condensed", sans-serif; }

.qls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; }
  .qls a {
    display: block;
    transition: .3s ease-in-out;
    width: calc(20% - 15px);
    border: solid 1px #ccc;
    padding: 25px;
    text-align: center; }
    .qls a img {
      width: 90%;
      margin: 0 auto;
      height: 100px;
      object-fit: contain; }
    .qls a h3 {
      font-size: 22px;
      font-weight: 600;
      text-transform: uppercase;
      color: #000;
      padding-top: 15px; }
  .qls a:hover {
    background: #DF6036;
    transform: translateY(-5px); }

/*---------Pages----------*/
.contact-page {
  background: #f4f4f4;
  padding: 60px 0; }

.contact-wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 30px; }
  @media only screen and (max-width: 1200px) {
    .contact-wrap {
      width: 96%; } }

.contact-intro,
.contact-image-card,
.contact-form-wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08); }

.contact-intro {
  width: 58%;
  padding: 30px; }
  .contact-intro h1 {
    font-size: clamp(30px, 4.5vw, 50px);
    color: #1d1d1d;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px; }
  .contact-intro p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 14px; }

.contact-details {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ddd; }
  .contact-details li {
    list-style: none;
    color: #222;
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 10px; }
    .contact-details li a {
      color: #DF6036;
      font-weight: 700; }
      .contact-details li a:hover {
        color: #1d1d1d; }

.contact-image-card {
  width: 42%;
  padding: 16px; }
  .contact-image-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ececec; }

.image-note {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.4; }

.contact-form-wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  padding: 30px; }
  @media only screen and (max-width: 1200px) {
    .contact-form-wrap {
      width: 96%; } }
  .contact-form-wrap h2 {
    color: #1d1d1d;
    font-size: clamp(22px, 3vw, 30px);
    text-transform: uppercase;
    margin-bottom: 20px; }

.service-page {
  background: #f4f4f4;
  padding: 60px 0; }

.service-wrap {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box; }
  @media only screen and (max-width: 1200px) {
    .service-wrap {
      width: 96%; } }

.service-hero,
.service-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px; }

.service-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  align-items: stretch; }

.service-hero-text {
  width: 58%; }
  .service-hero-text h1 {
    font-size: clamp(30px, 4vw, 50px);
    color: #1d1d1d;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px; }
  .service-hero-text p {
    color: #333;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 16px; }
  .service-hero-text .service-hero-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px; }

.service-hero-image {
  width: 42%; }
  .service-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 430px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ececec; }

.service-section {
  padding: 30px; }
  .service-section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    color: #1d1d1d;
    text-transform: uppercase;
    margin-bottom: 18px; }
  .service-section h3 {
    font-size: clamp(22px, 3vw, 32px);
    color: #1d1d1d;
    margin-bottom: 8px; }
  .service-section p,
  .service-section li {
    color: #333;
    font-size: 18px;
    line-height: 1.65; }
  .service-section p:last-child {
    margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; }

.service-tile {
  border: 1px solid #e7e7e7;
  border-left: 4px solid #DF6036;
  border-radius: 6px;
  background: #fdfdfd;
  padding: 18px; }

.service-process ol {
  padding-left: 24px;
  margin: 0; }
.service-process li {
  margin-bottom: 12px; }
  .service-process li:last-child {
    margin-bottom: 0; }

.service-contact-panel {
  background: #1d1d1d; }
  .service-contact-panel h2,
  .service-contact-panel p,
  .service-contact-panel a,
  .service-contact-panel strong {
    color: #fff; }
  .service-contact-panel p {
    margin-bottom: 10px; }
    .service-contact-panel p:last-child {
      margin-bottom: 0; }
  .service-contact-panel a {
    text-decoration: underline !important; }
    .service-contact-panel a:hover {
      color: #DF6036; }

/*--------GENERIC FORM TEMPLATE--------------------*/
.flex-form {
  width: 100%;
  margin: 0 auto 2rem auto;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-size: 15px; }
  .flex-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.02em; }
  .flex-form input,
  .flex-form select,
  .flex-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Roboto Condensed", sans-serif;
    background: #ffffff;
    font-size: 15px;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box; }
    .flex-form input:focus,
    .flex-form select:focus,
    .flex-form textarea:focus {
      border-color: #DF6036;
      outline: none; }
  .flex-form textarea {
    min-height: 100px;
    resize: vertical; }
  .flex-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem; }
    .flex-form .form-row > * {
      flex: 1 1 0; }
  .flex-form .form-actions {
    text-align: right; }
  .flex-form button,
  .flex-form input[type="submit"],
  .flex-form .submit-button,
  .flex-form .fake-submit button {
    display: inline-block !important;
    padding: 14px 28px !important;
    width: auto !important;
    background: #DF6036 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-family: "Akshar", sans-serif !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s; }
    .flex-form button:hover,
    .flex-form input[type="submit"]:hover,
    .flex-form .submit-button:hover,
    .flex-form .fake-submit button:hover {
      background: #1d1d1d !important; }
  .flex-form .form-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 1rem; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem; }
  .flex-row > * {
    flex: 1 1 0; }

.form-whole {
  width: 100%; }

.form-half {
  width: calc(50% - 0.5rem); }

.form-third {
  width: calc(33.333% - 0.67rem); }

@media (max-width: 900px) {
  .form-half,
  .form-third {
    width: 100%; } }
.submit-button,
.flex-form .submit-button,
.fake-submit button {
  display: inline-block !important;
  padding: 14px 28px !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 16px !important;
  font-family: "Akshar", sans-serif !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform .25s ease, box-shadow .25s ease; }

.submit-button:hover,
.fake-submit button:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); }

/* CAPTCHA AREA (hidden state) */
.include-captcha {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease; }

/* SHOW STATE */
.include-captcha.show {
  opacity: 1;
  max-height: 350px;
  transform: translateY(0); }

/* FAKE BUTTON FADE OUT */
.fake-submit {
  opacity: 1;
  transition: opacity 0.3s ease; }

.fake-submit.hide {
  opacity: 0;
  pointer-events: none;
  display: none; }

.CaptchaPanel {
  text-align: left !important; }

/*-------- FOOTER STYLES ----------------*/
footer {
  width: auto;
  background: #1d1d1d;
  padding: 60px 0;
  color: #fff; }

.footer {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media only screen and (max-width: 1200px) {
    .footer {
      width: 96%; } }
  .footer p {
    color: #fff;
    font-size: clamp(18px, 2vw, 28px);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700; }
  .footer ul {
    margin: 0;
    padding: 0; }
    .footer ul li {
      list-style: none;
      margin-bottom: 8px; }
      .footer ul li a {
        color: #fff;
        font-size: 15px;
        transition: color .25s ease; }
        .footer ul li a:hover {
          color: #DF6036; }

.footer-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px; }

.foot-col {
  min-width: 220px; }

.footer-right {
  width: 300px; }

/* ---- INVENTORY STYLES - KEEP AT BOTTOM OF CSS ---- */
.listing-top-right,
.buy-now-link,
.check-availability-link,
.view-listing-details-link,
.email-seller-link {
  background: #DF6036 !important;
  color: #fff !important; }

.list-error-container .info button,
.mobile-done-button,
a.buy-btn.des-buy-now,
a.buy-btn.gtm-buynow.des-buy-now,
button.selected-facet.ts-button,
.detail-contact-bar .contact-bar-btn,
button.page-nav {
  background: #DF6036 !important;
  color: #fff !important; }

/* --------------------------------
   Hover states
-------------------------------- */
.view-listing-details-link:hover,
.contact-options a:hover,
.fin-calc-mobile > a:hover,
button.g-recaptcha.button:hover,
.email-seller-link:hover,
.mc-nav-controls .mc-icon-navarrow span,
a.buy-btn.des-buy-now:hover,
a.buy-btn.gtm-buynow.des-buy-now:hover,
.detail-contact-bar .contact-bar-btn:hover {
  background: #1d1d1d !important;
  color: #fff !important; }

/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1200px) {
  .logo {
    padding-right: 20px; } }
@media only screen and (max-width: 1100px) {
  .hero-wrap {
    flex-direction: column; }
    .hero-wrap img {
      width: 60%;
      margin: 0 auto;
      height: auto; }

  .hero-text {
    width: 100%;
    padding: 40px 0; }

  .qls a {
    width: calc(25% - 15px); }
    .qls a img {
      height: 80px; } }
@media only screen and (max-width: 1000px) {
  .contact-wrap {
    flex-direction: column; }

  .contact-intro, .contact-image-card {
    width: 100%; }

  .contact-image-card img {
    min-height: 260px;
    max-height: 360px; }

  .service-hero {
    flex-direction: column; }

  .service-hero-text, .service-hero-image {
    width: 100%; }

  .service-hero-image img {
    min-height: 260px;
    max-height: 360px; }

  .service-grid {
    grid-template-columns: 1fr; }

  .qls a {
    width: calc(33.33% - 15px); }
    .qls a img {
      height: 80px; } }
@media only screen and (max-width: 900px) {
  .footer {
    flex-direction: column;
    gap: 20px; }

  .footer-left {
    width: 100%; }

  .footer-right {
    width: 100%; }

  .hero-wrap img {
    width: 70%; } }
@media only screen and (max-width: 750px) {
  .qls a {
    width: calc(50% - 15px); }
    .qls a img {
      height: 80px; } }
@media only screen and (max-width: 600px) {
  .footer-left {
    flex-direction: column;
    gap: 20px; }

  .foot-col {
    width: 100%;
    min-width: unset; }

  .contact-page {
    padding: 40px 0; }

  .contact-intro, .contact-form-wrap {
    padding: 20px; }

  .contact-intro p {
    font-size: 16px; }

  .contact-details li {
    font-size: 15px; }

  .service-page {
    padding: 40px 0; }

  .service-hero, .service-section {
    padding: 20px; }

  .service-section p, .service-section li, .service-hero-text p {
    font-size: 16px; }

  .flex-form .form-row {
    flex-direction: column; }
  .flex-form .form-half {
    width: calc(100% - 10px); }

  .hero-wrap img {
    width: 80%; } }
@media only screen and (max-width: 450px) {
  .qls {
    gap: 10px; }

  .qls a {
    width: calc(50% - 10px);
    padding: 15px; }
    .qls a img {
      height: 70px; }
    .qls a h3 {
      font-size: 18px; }

  .hero-wrap img {
    width: 90%; } }
