@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,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 but updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box; }

body {
  font-family: "Lato", sans-serif;
  position: relative; }

h1, h2, h3, h4, h5 {
  font-family: "Lato", sans-serif; }

a {
  text-decoration: none !important;
  transition: color .25s ease, opacity .25s ease; }

.btn {
  padding: 16px 25px;
  display: inline-flex;
  font-size: 15px;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 3px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform; }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 35, 64, 0.16);
    color: #fff; }
  .btn:focus-visible {
    outline: 2px solid #92D5F0;
    outline-offset: 3px; }

.blue {
  background: #92D5F0;
  color: #000; }

.dark-blue {
  background: #1B5E9E;
  color: #fff; }

.white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff; }

.blue:hover {
  background: #0C2340;
  color: #fff; }

.dark-blue:hover {
  background: #92D5F0;
  color: #000; }

.white:hover {
  background: #fff;
  color: #0C2340;
  border-color: #fff; }

.blue-back {
  width: 100%;
  background: #1B5E9E;
  color: #fff; }

.light-blue {
  width: 100%;
  background: #b5eaff;
  color: #000; }

.gray-back {
  width: 100%;
  background: #f8f8f8;
  color: #333; }

.wrap {
  max-width: 1500px;
  margin: 0 auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box; }

.wrap2 {
  max-width: 1300px;
  margin: 0 auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box; }

.pad {
  padding: clamp(20px, 4vw, 60px) 10px; }

.center-heading {
  text-align: center;
  margin: 20px auto;
  max-width: 700px;
  width: 100%; }
  .center-heading h2 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(25px, 3.5vw, 36px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px; }
    .center-heading h2 span {
      font-size: 18px;
      font-weight: 600;
      color: #15528b; }
  .center-heading p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #333; }

.show {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease; }

.show.active {
  transform: translateX(0);
  opacity: 1; }

.showSecond {
  position: relative;
  opacity: 0;
  transition: 1s all ease; }

.showSecond.active {
  opacity: 1; }

.showUp {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: 1.5s all ease; }

.showUp.active {
  opacity: 1;
  transform: translateY(0); }

/*--- HEADER STYLES ---------------------*/
.top-wrapper {
  background: #0C2340;
  width: 100%; }

.top-header {
  color: #fff;
  max-width: 1500px;
  margin: 0 auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px; }
  .top-header p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #fff;
    display: inline-block;
    padding: 0 15px; }
  .top-header a {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #fff; }
    .top-header a:hover {
      color: #92D5F0; }
  .top-header i {
    font-size: 16px;
    padding-right: 5px; }

header {
  width: 100%;
  background: #fff;
  z-index: 100;
  top: 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  position: sticky; }

.header {
  max-width: 1500px;
  margin: 0 auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px; }
  .header .logo {
    max-width: 200px;
    width: 100%; }
    .header .logo img {
      width: 100%;
      height: auto; }

header.active .logo {
  max-width: 150px; }

/*--------Hero---------*/
.mySwiper {
  position: relative;
  width: 100%;
  height: 730px;
  overflow: hidden;
  background-color: #000; }

/* Slides */
.mySwiper .swiper-slide {
  width: 100%;
  height: 100%; }

/* Images */
.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.6s ease;
  background-color: #000; }

/* Active slide zoom reset */
.mySwiper .swiper-slide-active img {
  transform: scale(1); }

/* Gradient overlay */
.grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 40;
  pointer-events: none; }

/* Hero Text */
.hero-text {
  position: absolute;
  top: 18%;
  left: 11%;
  z-index: 55;
  max-width: 750px;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease; }

/* Active text animation */
.hero-text.active {
  opacity: 1;
  transform: translateY(0); }

.hero-text h1 {
  font-size: clamp(28px, 3vw, 60px);
  line-height: 1.1;
  text-transform: uppercase; }

.hero-text h1 span {
  font-weight: 300;
  text-transform: none; }

.hero-text h2 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600; }

.hero-text p {
  margin-bottom: 30px; }

/* Navigation arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  backdrop-filter: blur(6px);
  transition: background .3s ease, color .3s ease, transform .3s ease; }

.hero-arrow:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1.1); }

.hero-arrow.prev {
  left: 30px; }

.hero-arrow.next {
  right: 30px; }

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 40;
  overflow: hidden; }

.slide-progress .bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #ffffff;
  transform-origin: left center; }

/* Cursor-follow hover effect (active slide only) */
.mySwiper:hover .swiper-slide-active img {
  transition: transform .15s linear; }

.mySwiper .swiper-slide img {
  will-change: transform;
  transform: scale(1.05);
  transition: transform 1.6s ease; }

.mySwiper .swiper-slide img {
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1); }

.nums {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 70%;
  margin: 0 auto; }

.num {
  width: 33%;
  border-right: solid 1px #94ade4;
  padding: 0px 40px;
  text-align: center; }
  .num h2 {
    font-size: 45px;
    line-height: 28px;
    color: #fff;
    font-weight: 700; }
    .num h2 span {
      font-size: 16px;
      font-family: "Lato", sans-serif;
      line-height: 26px;
      color: #333;
      color: #fff;
      line-height: 0px;
      font-weight: 300; }

.num:last-of-type {
  border-right: none; }

.about {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 60px; }
  .about .about-text {
    width: calc(50% - 30px); }
    .about .about-text h2 {
      color: #0C2340;
      font-family: "Lato", sans-serif;
      font-size: clamp(25px, 3.5vw, 36px);
      font-style: normal;
      font-weight: 400;
      line-height: 1.1;
      max-width: 500px;
      color: #0C2340;
      margin-bottom: 20px; }
      .about .about-text h2 span {
        font-size: 18px;
        font-weight: 600;
        color: #15528b; }
    .about .about-text p {
      font-size: 16px;
      font-family: "Lato", sans-serif;
      line-height: 26px;
      color: #333;
      color: #727272;
      margin-bottom: 30px; }
  .about img {
    width: calc(50% - 30px);
    height: auto;
    object-fit: cover;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2); }

.cards {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 40px; }

.card {
  width: calc(33.33% - 20px);
  background: #fff;
  padding: 30px; }
  .card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #cbebf8;
    padding: 10px; }
  .card h3 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.1;
    font-style: normal;
    font-weight: 700;
    margin: 20px 0; }
  .card p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #727272;
    margin-bottom: 10px; }

.testimonial {
  width: calc(50% - 20px);
  background: #fff;
  padding: 30px; }
  .testimonial .fa {
    padding: 0 15px;
    font-size: 30px;
    color: #92D5F0; }
  .testimonial h3 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.1;
    font-style: normal;
    font-weight: 700;
    margin: 20px 0; }
  .testimonial p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #727272;
    margin-bottom: 10px; }

.info-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  width: 100%; }
  .info-row .info {
    width: calc(50% - 15px);
    color: #fff;
    padding: 30px; }
    .info-row .info h2 {
      color: #0C2340;
      font-family: "Lato", sans-serif;
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.1;
      font-style: normal;
      font-weight: 700;
      color: #fff;
      max-width: 500px;
      margin-bottom: 20px; }
    .info-row .info p {
      font-size: 16px;
      font-family: "Lato", sans-serif;
      line-height: 26px;
      color: #333;
      color: #fff; }

.qls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  padding-top: 20px; }
  .qls a {
    width: calc(50% - 15px);
    background-color: #000;
    display: block;
    color: #fff;
    position: relative;
    height: 260px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2); }
    .qls a img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .qls a .blue-grad {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 60%, Rgba(144, 213, 240, 0.6) 90%);
      z-index: 50; }
    .qls a .ql-text {
      position: absolute;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      top: 10%;
      left: 5%;
      right: 5%;
      width: 90%;
      margin: 0 auto;
      color: #fff;
      z-index: 100; }
      .qls a .ql-text h3 {
        color: #0C2340;
        font-family: "Lato", sans-serif;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.1;
        font-style: normal;
        font-weight: 700;
        color: #fff;
        max-width: 500px;
        margin-bottom: 20px; }
      .qls a .ql-text i {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: solid 1px #fff;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center; }

/*---------Pages----------*/
.page-top {
  width: 100%; }
  .page-top h1 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(25px, 3.5vw, 36px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px; }
  .page-top p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333; }

.contact-hero {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.08) 0%, rgba(146, 213, 240, 0.28) 100%); }

.contact-page {
  background: #fff; }

.contact-grid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px;
  align-items: stretch; }

.contact-panel {
  width: calc(50% - 20px);
  background: #fff;
  border: 1px solid #d9e3ec;
  box-shadow: 0 18px 45px rgba(12, 35, 64, 0.08);
  padding: 35px;
  border-radius: 18px; }
  .contact-panel h2 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(25px, 3.5vw, 36px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px; }
  .contact-panel p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #5f6b76; }

.contact-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%); }

.contact-details {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px; }

.contact-detail-card {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d9e3ec; }
  .contact-detail-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1B5E9E;
    margin-bottom: 10px; }
  .contact-detail-card a {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #0C2340;
    margin-bottom: 10px;
    transition: color .25s ease, transform .25s ease; }
    .contact-detail-card a:hover {
      color: #1B5E9E;
      transform: translateX(4px); }
  .contact-detail-card p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #5f6b76;
    margin-bottom: 8px; }

.contact-form-panel {
  background: #0C2340;
  color: #fff; }
  .contact-form-panel h2, .contact-form-panel p {
    color: #fff; }
  .contact-form-panel #formpage label {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px; }
  .contact-form-panel #formpage input, .contact-form-panel #formpage select, .contact-form-panel #formpage textarea {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important; }
  .contact-form-panel #formpage input::placeholder, .contact-form-panel #formpage textarea::placeholder {
    color: #d8e2eb; }
  .contact-form-panel #formpage select option {
    color: #000; }
  .contact-form-panel #formpage .submit-button, .contact-form-panel #submit-btn button {
    background: #92D5F0;
    color: #000;
    font-weight: 700; }
  .contact-form-panel #formpage input.submit-button:hover, .contact-form-panel #submit-btn button:hover {
    background: #fff;
    color: #0C2340; }

.contact-form-wrap {
  margin-top: 25px; }

.valuation-form-shell {
  background: #0C2340;
  color: #fff;
  border-radius: 22px;
  padding: 35px; }
  .valuation-form-shell h2, .valuation-form-shell p {
    color: #fff; }
  .valuation-form-shell #formpage label {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px; }
  .valuation-form-shell #formpage input, .valuation-form-shell #formpage select, .valuation-form-shell #formpage textarea {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important; }
  .valuation-form-shell #formpage input::placeholder, .valuation-form-shell #formpage textarea::placeholder {
    color: #d8e2eb; }
  .valuation-form-shell #formpage select option {
    color: #000; }
  .valuation-form-shell #formpage .submit-button, .valuation-form-shell #formpage button {
    background: #92D5F0;
    color: #000;
    font-weight: 700; }
  .valuation-form-shell #formpage input.submit-button:hover, .valuation-form-shell #formpage button:hover {
    background: #fff;
    color: #0C2340; }

.valuation-form-wrap {
  margin-top: 10px; }

.valuation-form-intro {
  margin-bottom: 20px; }

.valuation-section {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  margin-bottom: 22px; }

.valuation-section-heading {
  margin-bottom: 20px; }
  .valuation-section-heading span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #92D5F0;
    margin-bottom: 8px; }
  .valuation-section-heading h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0; }

.option-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px; }
  .option-grid.two-up {
    grid-template-columns: repeat(2, 1fr); }
  .option-grid.three-up {
    grid-template-columns: repeat(3, 1fr); }

.option-card {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer; }
  .option-card input {
    accent-color: #92D5F0;
    margin-top: 0 !important;
    margin-right: 4px; }
  .option-card label {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    cursor: pointer;
    display: inline !important; }
  .option-card small {
    display: block;
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    color: #b8cada; }

/*--------FORM STYLES--------------------*/
#formpage {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  text-align: left; }
  #formpage label {
    margin: 5px 5px 0 5px;
    padding: 10px 0 0px 0; }
  #formpage input, #formpage select {
    padding: 14px;
    border: #ccc;
    color: #777 !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; }

label:has(+ input:required)::after {
  content: "*";
  color: #92D5F0;
  margin-left: 5px; }

.flex-form {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%; }

.form-whole {
  width: calc(100% - 10px);
  display: block;
  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; }

#formpage .submit-button, #submit-btn button {
  width: 200px;
  padding: 14px;
  background: #1B5E9E;
  display: block;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: none;
  font-size: 14px;
  text-transform: uppercase; }

#formpage input.submit-button:hover, #submit-btn button:hover {
  transition: ease-out .3s;
  cursor: pointer;
  background: #0C2340 !important;
  color: #fff !important; }

.submit-button, #submit-btn {
  padding: 10px 0px 10px 0px;
  position: relative;
  width: 100%;
  text-align: center; }

.captcha-button {
  width: 200px; }

.include-captcha {
  display: none; }

.CaptchaWhatsThisPanel a {
  color: #fff !important; }

.CaptchaPanel {
  text-align: left !important; }

/*-------- THANKYOU PAGE STYLES ----------------*/
.thankyou-hero {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.06) 0%, rgba(27, 94, 158, 0.08) 100%); }

.thankyou-icon {
  margin-bottom: 24px; }
  .thankyou-icon i {
    font-size: 64px;
    color: #1B5E9E;
    display: inline-block; }

.thankyou-page {
  background: #fff; }

.thankyou-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px; }

.thankyou-card {
  background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
  border: 1px solid #d9e3ec;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.06); }
  .thankyou-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1B5E9E;
    margin-bottom: 10px; }
  .thankyou-card h2 {
    color: #0C2340;
    font-family: "Lato", sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.1;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 14px; }
  .thankyou-card p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #5f6b76; }

.thankyou-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: center; }

.thankyou-contact-item {
  text-align: center; }
  .thankyou-contact-item span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1B5E9E;
    margin-bottom: 10px; }
  .thankyou-contact-item a {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #0C2340;
    margin-bottom: 8px;
    transition: color .25s ease, transform .25s ease; }
    .thankyou-contact-item a:hover {
      color: #1B5E9E;
      transform: translateX(4px); }
  .thankyou-contact-item p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #5f6b76; }

/*-------- FOOTER STYLES ----------------*/
footer {
  width: 100%;
  background: #0C2340;
  color: #fff; }

.footer {
  max-width: 1500px;
  margin: 0 auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px; }

.footer-left {
  width: 50%;
  color: #fff; }
  .footer-left img {
    width: 100%;
    max-width: 180px;
    margin-bottom: 20px; }
  .footer-left p {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    line-height: 26px;
    color: #333;
    color: #ccc;
    max-width: 500px; }

.footer-right {
  width: 50%;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .footer-right p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px; }
  .footer-right ul {
    margin: 0;
    padding: 0; }
    .footer-right ul li {
      list-style: none; }
      .footer-right ul li a {
        font-size: 16px;
        font-family: "Lato", sans-serif;
        line-height: 26px;
        color: #333;
        color: #ccc;
        line-height: 28px;
        display: inline-block;
        transition: color .25s ease, transform .25s ease; }
        .footer-right ul li a:hover {
          color: #fff;
          transform: translateX(4px); }
        .footer-right ul li a i {
          -webkit-text-stroke: 1px #92D5F0;
          color: transparent;
          padding-right: 10px;
          transition: color .25s ease, transform .25s ease, -webkit-text-stroke .25s ease; }
        .footer-right ul li a:hover i {
          -webkit-text-stroke: 1px #92D5F0;
          color: #92D5F0;
          transform: translateX(2px); }

.btm-foot {
  padding-top: 15px;
  color: #ccc;
  border-top: solid 1px #7e96a3;
  margin-top: 60px; }
  .btm-foot p {
    font-size: 14px; }

/*----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: #1B5E9E !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: #1B5E9E !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: #0C2340 !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) {
  .mySwiper .hero-text {
    left: 2%;
    top: 10%; }

  .mySwiper {
    height: 550px; }

  .nums {
    width: 100%; }

  .contact-grid, .map-card {
    gap: 25px; }

  .contact-panel {
    padding: 28px; }

  .valuation-layout {
    gap: 25px; } }
@media only screen and (max-width: 1000px) {
  .contact-grid, .map-card {
    flex-direction: column; }

  .contact-panel, .map-copy, .map-placeholder {
    width: 100%; }

  .valuation-hero-grid, .valuation-layout {
    flex-direction: column; }

  .valuation-hero-copy, .valuation-hero-note, .valuation-sidebar, .valuation-form-shell {
    width: 100%; }

  .valuation-sidebar {
    position: static; }

  .thankyou-grid, .thankyou-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media only screen and (max-width: 650px) {
  .contact-panel {
    padding: 22px;
    border-radius: 14px; }

  .contact-detail-card a {
    font-size: 20px; }

  #formpage .flex-row {
    flex-direction: column; }

  .form-half {
    width: calc(100% - 10px);
    display: block; }

  .map-placeholder {
    min-height: 240px; }

  .valuation-form-shell, .valuation-hero-note, .valuation-section {
    padding: 22px;
    border-radius: 14px; }

  .valuation-section-heading h3 {
    font-size: 24px; }

  .valuation-form-page .flex-row {
    flex-direction: column; }

  .option-grid.two-up, .option-grid.three-up {
    grid-template-columns: 1fr; }

  .form-third {
    width: calc(100% - 10px);
    display: block; }

  .thankyou-grid, .thankyou-contact {
    grid-template-columns: 1fr; }

  .thankyou-card {
    padding: 22px; } }
@media only screen and (max-width: 1280px) {
  .mySwiper .hero-text {
    max-width: 600px; } }
@media only screen and (max-width: 1100px) {
  .mySwiper .hero-text p {
    display: none; }

  .about {
    flex-direction: column;
    gap: 15px; }
    .about img {
      width: 100%;
      height: 300px; }
    .about .about-text {
      width: 100%; }
      .about .about-text h2 {
        max-width: 700px; }

  .cards {
    flex-wrap: wrap; }

  .testimonial {
    width: 100%; }

  .footer {
    flex-direction: column;
    gap: 30px; }

  .footer-left, .footer-right {
    width: 100%; } }
@media only screen and (max-width: 1000px) {
  .nums {
    flex-direction: column;
    gap: 15px; }

  .num {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #94ade4;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 600px; }

  .num:last-of-type {
    border-bottom: none; }

  .card {
    width: calc(50% - 20px); } }
@media only screen and (max-width: 900px) {
  .qls {
    flex-direction: column;
    gap: 30px; }
    .qls a {
      width: 100%;
      height: 200px; } }
@media only screen and (max-width: 800px) {
  .top-right {
    display: none; }

  .cards {
    gap: 20px; }

  .card {
    width: calc(50% - 10px); }

  .info-row {
    flex-wrap: wrap;
    gap: 20px; }

  .info-row .info {
    width: 100%;
    padding: 10px; } }
@media only screen and (max-width: 700px) {
  .card {
    width: 100%; }

  .mySwiper {
    height: 450px; } }
@media only screen and (max-width: 600px) {
  .top-wrapper {
    display: none; } }
@media only screen and (max-width: 500px) {
  .footer-right {
    flex-direction: column;
    gap: 20px; }
    .footer-right .foot-col {
      width: 100%; }

  .card {
    padding: 20px; }

  .mySwiper {
    height: 350px; }

  .btn {
    padding: 14px 20px;
    font-size: 14px; }

  .contact-details {
    display: flex;
    flex-direction: column; }

  .contact-detail-card {
    padding: 15px; }

  .contact-detail-card a {
    font-size: 16px; }

  .hero-arrow {
    display: none; }

  .header .logo {
    max-width: 150px; } }
