@font-face {
  font-family: Source Sans Pro;
  src: url('../fonts/fbcd9479e388dc3e-s.p.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Source Sans Pro;
  src: url('../fonts/9b57e661e8b11ba2-s.p.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Source Sans Pro;
  src: url('../fonts/af479473f89d8bc9-s.p.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --header: "Source Sans Pro", Arial, sans-serif;
  --white: white;
  --black: #000;
  --body: "Source Sans Pro", Arial, sans-serif;
  --light-gray: #f8f8f8;
  --dark-gray: #30363a;
  --dark-blue: #00719c;
  --light-blue: #0096d0;
}

body {
  color: #333;
  background-color: #f6f6f6;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--header);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

h2 {
  font-family: var(--header);
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
}

h3 {
  font-family: var(--header);
  color: #000;
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

p {
  font-family: var(--body);
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

a {
  text-decoration: underline;
}

.paragraph {
  font-family: Din;
  font-weight: 400;
}

.heading, .heading-2 {
  font-weight: 500;
}

.button {
  font-family: var(--body);
  color: var(--white);
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  background-color: #006679;
  border: 1px #fff;
  border-radius: 100px;
  margin-top: 15px;
  padding: 20px 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .5s;
  display: inline-flex;
}

.button:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: #0076bd;
}

.button.secondary {
  color: var(--black);
  background-color: #0000;
  border-style: solid;
  border-color: #000;
  align-items: center;
  transition-property: all;
}

.button.secondary._50-top {
  margin-top: 35px;
}

.button.secondary.black {
  color: var(--white);
  background-color: #000;
}

.button.less-padding {
  margin-top: 5px;
}

.button-arrow {
  margin-left: 10px;
}

.navigation {
  z-index: 0;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
  position: relative;
}

.hero {
  background-image: url('../images/Hero.jpg');
  background-position: 50%;
  background-size: cover;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 70vh;
  display: flex;
}

.section-one {
  flex-flow: column;
  align-items: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
}

.section-two {
  justify-content: center;
  align-items: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
}

.sized-block {
  width: 95%;
  max-width: 1600px;
}

.hero-insert {
  color: var(--white);
  flex-flow: column;
  align-items: center;
  margin-bottom: 5vh;
  display: flex;
}

.hero-insert.no-padding {
  margin-bottom: 0;
}

.two-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.light-blue {
  color: var(--black);
  font-weight: 600;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 550px;
  display: flex;
}

.three-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 35px;
  display: grid;
}

.image {
  object-fit: cover;
  border-radius: 25px;
  height: 400px;
  overflow: hidden;
}

.image.right {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 0% 50%;
  position: static;
}

.black {
  color: var(--black);
}

.black.large-padding {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 500;
}

.black.center {
  text-align: center;
}

.black.small {
  margin-top: 35px;
  font-size: 12px;
}

.div-block-2 {
  background-color: var(--light-gray);
  justify-content: center;
  align-items: center;
  height: 400px;
  margin-top: 5vh;
  display: flex;
}

.div-block-2.dealer {
  background-color: #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.div-block-3 {
  background-image: url('../images/mid-section.jpg');
  background-position: 50%;
  background-size: cover;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  height: 400px;
}

.section-four {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.div-block-4 {
  text-align: center;
  width: 95%;
  max-width: 1000px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.div-block-5 {
  width: 1200px;
  max-width: 1200px;
}

.div-block-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.table-row-inserted-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  font-family: var(--body);
  color: var(--black);
  border-bottom: 1px solid #d8d8d8;
  grid-template-rows: auto;
  grid-template-columns: 3.5fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 50px;
  font-size: 16px;
  display: grid;
}

._2-3-col {
  text-align: center;
  font-weight: 600;
  line-height: 24px;
}

.bold {
  font-weight: 600;
  line-height: 24px;
}

.section-five-full {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.cover-block {
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  height: auto;
  min-height: 50px;
  padding-top: 15px;
  padding-bottom: 5px;
}

.cover-block.last {
  margin-bottom: 50px;
}

.large-padding {
  margin-top: 100px;
}

.large-image {
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 825px;
  overflow: hidden;
}

.first {
  margin-top: 50px;
}

.footer {
  background-color: var(--black);
  justify-content: center;
  margin-top: 10vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
}

.footer-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px none var(--light-gray);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 2.75fr;
  grid-auto-columns: 1fr;
  padding-bottom: 0;
  display: grid;
}

.white {
  color: var(--white);
  font-weight: 500;
}

.footer-link {
  font-family: var(--body);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
}

.footer-link.hide {
  display: none;
}

.footer-header {
  font-family: var(--header);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.footer-link-block {
  flex-flow: column;
  padding-bottom: 50px;
  display: flex;
}

.footer-logo {
  width: 200px;
}

.div-block-7 {
  padding-top: 30px;
}

.small {
  font-size: 12px;
}

.small.white {
  color: #fff;
  font-weight: 400;
  display: block;
}

.naviagtion-spacer-block {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 95%;
  display: flex;
}

.header-logo {
  width: 160px;
}

.navigation-links {
  align-items: center;
  display: flex;
}

.navigation-header-link {
  font-family: var(--body);
  color: var(--black);
  margin-right: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.hamburger {
  cursor: pointer;
  flex-flow: column;
  justify-content: space-around;
  align-items: stretch;
  width: 35px;
  height: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.hamburger.close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.menu {
  z-index: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #00000096;
  justify-content: flex-end;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-8 {
  background-color: var(--white);
  width: 400px;
  height: 100vh;
  padding: 0 2.5% 50px 50px;
  position: relative;
  right: 0;
}

.nav-link {
  font-family: var(--body);
  color: var(--black);
  font-size: 16px;
  line-height: 35px;
  text-decoration: none;
}

.nav-link.hide {
  display: none;
}

.div-block-9 {
  justify-content: space-between;
  align-items: center;
  height: 70px;
  margin-bottom: 30px;
  display: flex;
}

.small-logo {
  width: 120px;
}

.blue-line {
  background-color: var(--black);
  width: 100%;
  height: 2px;
}

.blue-line.crossa {
  width: 32px;
  display: block;
  position: absolute;
  transform: rotate(-45deg);
}

.blue-line.crossb {
  width: 30px;
  position: absolute;
  transform: rotate(45deg);
}

.inline-link {
  color: var(--white);
  flex: none;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.text-span {
  font-weight: 600;
}

.lower {
  text-transform: capitalize;
}

.heading-4 {
  font-weight: 400;
}

.div-block-10 {
  border-radius: 25px;
  width: 1800px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.text-span-2 {
  font-family: var(--body);
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 32px;
    line-height: 36px;
  }

  p {
    font-size: 14px;
    line-height: 20px;
  }

  .button.secondary.last {
    margin-bottom: 50px;
  }

  .two-grid {
    grid-column-gap: 21px;
    grid-template-columns: 1fr 1fr;
  }

  .div-block {
    width: 100%;
  }

  .three-grid {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
  }

  .image {
    height: 250px;
  }

  .div-block-5 {
    width: 95%;
  }

  .heading-3 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .two-grid {
    grid-row-gap: 21px;
    grid-template-columns: 1fr;
  }

  .three-grid {
    grid-template-columns: 1fr;
  }

  .image {
    width: 100%;
  }

  .large-padding {
    margin-top: 50px;
  }

  .first {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 28px;
    line-height: 32px;
  }

  h3 {
    margin-top: 15px;
    font-size: 20px;
    line-height: 24px;
  }

  .sized-block {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-insert.no-padding, .two-grid {
    width: 95%;
  }

  .three-grid {
    justify-items: center;
    margin-top: 15px;
  }

  .grid-box {
    flex-flow: column;
    align-items: flex-start;
    width: 95%;
    display: flex;
  }

  .section-four {
    justify-content: center;
    display: flex;
  }

  .table-row-inserted-grid {
    grid-column-gap: 7px;
    grid-template-columns: 2.75fr 1fr 1fr;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .center {
    text-align: center;
  }
}

#w-node-_05d143ca-f7b0-3e33-75d2-467facc675a1-8a47e28f, #w-node-bd598ba0-421b-283f-e3b8-4b31b5eb9da9-8a47e28f, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c3-8a47e28f, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c4-8a47e28f, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcb-8a47e28f, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcc-8a47e28f, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef3-8a47e28f, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef4-8a47e28f {
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_0db0520e-1d3d-966b-d06f-cf98f17b1b1c-8a47e28f {
    order: 9999;
  }
}


@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/fbcd9479e388dc3e-s.p.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/9b57e661e8b11ba2-s.p.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/af479473f89d8bc9-s.p.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.text-bold{
  font-weight: 600;
}

#w-node-_05d143ca-f7b0-3e33-75d2-467facc675a1-03770ab2, #w-node-bd598ba0-421b-283f-e3b8-4b31b5eb9da9-03770ab2, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c3-03770ab2, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c4-03770ab2, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcb-03770ab2, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcc-03770ab2, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef3-03770ab2, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef4-03770ab2 {
    justify-self: center;
}


.form-control {
  width: 400px;
  height: 35px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #D2DCDF;
  background: #fff;
  padding: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555B5F;
  font-weight: 400;
  line-height: 130%;
  max-width: 400px;
}

.danger{
  color: red;
}

.dealer-table {
  flex-flow: column;
  width: 1400px;
  max-height: 600px;
  display: block;
  overflow: scroll;
}

.dealer-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.dealer-row.inactive {
  opacity: 1;
  color: #adadad;
}

.dealer-column {
  background-color: #a6b7be;
  border: 1px solid #e4e4e4;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 15px;
  font-weight: 700;
  display: flex;
}

.dealer-data-column {
  color: #000;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 15px;
  font-weight: 400;
  display: flex;
}

.name {
  max-width: 300px;
}

.email {
  max-width: 350px;
}

.reg {
  max-width: 150px;
}

.small-column {
  text-align: center;
  justify-content: center;
  max-width: 120px;
  display: flex;
}

.resend {
  justify-content: center;
  max-width: 220px;
  display: flex;
}

.resend-button {
  color: #333;
  cursor: pointer;
  justify-content: space-around;
  width: 90%;
  text-decoration: none;
  display: flex;
}

.inactive {
  opacity: .4;
}



.container {
  flex-flow: column;
  align-items: center;
  display: flex;
}



.login-image {
    object-fit: cover;
    border-radius: 25px;
    width: 100%;
    height: 625px;
    overflow: hidden;
}

.section-login {
    flex-flow: column;
    justify-content: normal;
    align-items: flex-start;
    display: flex;
}


input[type='checkbox'] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: calc(50% - 13px);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border-radius: 3px;
  border: 1px solid #D2DCDF;
  background: #fff;
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.quote-invalid {
  color: #C00101;
  font-family:"source-sans-pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.dealer-hero {
  background-image: url('../images/jaecoo-dealer.jpg');
  background-position: 50%;
  background-size: cover;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 50vh;
  display: flex;
}


.flex-container {
  display: flex;
}

.form-control-sm {
  width: 200px;
  height: 35px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #D2DCDF;
  background: #fff;
  padding: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555B5F;
  font-weight: 400;
  line-height: 130%;
  max-width: 200px;
}

.hide {
  display: none;
}



.form-select {
    -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  width: 400px;
  height: 35px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #D2DCDF;
  background: #fff;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555B5F;
  font-weight: 400;
  line-height: 130%;
  max-width: 400px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
}


.form-select-sm {
    -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  width: 200px;
  height: 35px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #D2DCDF;
  background: #fff;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555B5F;
  font-weight: 400;
  line-height: 130%;
  max-width: 200px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
}







.modal-box {
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
  width: 95%;
  max-width: 1000px;
  padding: 40px;
    background-color: #fff;
}

.modal-box-lg {
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
  width: 95%;
  max-width: 1000px;
  padding: 40px;
  background-color: #fff;
  margin-top: 50vh;
  margin-bottom: 50px;
}

.modal-head-image {
  height: 150px;
}

.moda-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 150px;
}

.modal-form-box {
  margin-top: 40px;
}

.heading-text {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 34px;
}

.para-text {
  font-size: 16px;
  line-height: 140%;
}

.para-text.small {
  font-size: 16px;
  font-weight: 400;
}

.input {
  color: #555b5f;
  background-color: #fff;
  border: 1px solid #d2dcdf;
  border-radius: 5px;
  height: 45px;
  font-size: 16px;
}

.input-title {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.form-devider {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form {
  margin-top: 40px;
  margin-bottom: 40px;
}


.red {
  color: #d52929;
}

.notification-holder {
  background-color: #e9e9e9;
  margin-bottom: 30px;
  padding: 30px;
}

.body-2 {
  max-width: 1000px;
}

.close {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-top: -10px;
  margin-right: -10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.radios {
  display: flex;
}

.radio-button-field {
  margin-right: 30px;
}

.radio-button {
  border: .5px solid #000;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.radio-button:active {
  background-color: #000;
}

.radio-button.w--redirected-checked {
  background-color: #000;
  background-image: radial-gradient(circle, #000 52%, #fff 64%);
  border: 1px solid #000;
}

.radio-button-field-2 {
  justify-content: flex-start;
  align-items: center;
  margin-right: 30px;
  display: flex;
}

.second {
  margin-top: 30px;
}

.check-button {
  border: .5px solid #000;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.check-button:active {
  background-color: #000;
}

.check-button.w--redirected-checked {
  background-color: #000;
  border: 1px solid #000;
  padding-left: 3px;
  padding-right: 3px;
}

.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
      -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: #00000096;
  z-index: 999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

@media screen and (max-width: 991px) {
  .modal-bg {

  }
}

@media screen and (max-width: 479px) {
  .modal-bg {

  }

  .modal-box {
    padding: 20px;
  }

  .form-devider {
    grid-template-columns: 1fr;
  }
}





button:disabled, button[disabled] { 
  cursor: not-allowed; 
  opacity: 0.5; 
}