@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,400;1,400;1,600;1,700;1,800&display=swap");
:root {
  --font-family: "Exo", sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #000;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #1565c0;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper {
  font-size: 14px;
}
.wrapper * > .inner {
  max-width: 1110px;
  margin: auto;
  padding: 0 20px;
}
.wrapper .d {
  display: none;
}
@media screen and (min-width: 700px) {
  .wrapper .d {
    display: block;
  }
  .wrapper .m {
    display: none;
  }
}
.wrapper section {
  background-image: linear-gradient(to bottom, #E1E3DA, #fff);
  overflow: hidden;
}
.wrapper section:nth-child(2n) {
  background-image: linear-gradient(to top, #E1E3DA, #fff);
}
.wrapper section h1, .wrapper section h2, .wrapper section h3 {
  font-weight: 800;
  font-style: italic;
  text-align: center;
}
.wrapper section p.b {
  font-weight: 700;
  font-style: italic;
}
.wrapper section .title {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 20px solid;
  -o-border-image: linear-gradient(to top, #A7343B 5px, #fff 5px, #fff 10px, #001982 10px, #001982 20px) 20;
     border-image: linear-gradient(to top, #A7343B 5px, #fff 5px, #fff 10px, #001982 10px, #001982 20px) 20;
}
.wrapper section .title h1 {
  font-size: 4em;
}
.wrapper section .title h2 {
  font-size: 3em;
}
.wrapper section .title h1, .wrapper section .title h2 {
  line-height: 1.1em;
  max-width: 700px;
  margin: 20px auto;
}
.wrapper section .title h2 {
  max-width: 550px;
}
.wrapper section .title.h1 {
  border-bottom: 0;
  position: relative;
  padding-bottom: 1px;
}
.wrapper section .title.h1:before {
  content: "";
  position: absolute;
  left: calc(-100vw - 65px);
  width: calc(100vw + 10px);
  height: 20px;
  bottom: -20px;
  background-image: linear-gradient(to top, #A7343B 5px, #fff 5px, #fff 10px, #001982 10px, #001982 20px);
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
  -webkit-animation: slideIn 2s 2s linear forwards;
          animation: slideIn 2s 2s linear forwards;
}
@-webkit-keyframes slideIn {
  from {
    left: calc(-100vw - 65px);
  }
  to {
    left: calc(0vw - 10px);
  }
}
@keyframes slideIn {
  from {
    left: calc(-100vw - 65px);
  }
  to {
    left: calc(0vw - 10px);
  }
}
.wrapper section .title.h1:after {
  content: "";
  height: 20px;
  width: 55px;
  background-image: url(../img/car_small.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -55px;
  bottom: -20px;
  margin-left: -10px;
  -webkit-animation: driveIn 2s 2s linear forwards;
          animation: driveIn 2s 2s linear forwards;
}
@-webkit-keyframes driveIn {
  from {
    left: -55px;
  }
  to {
    left: 100vw;
  }
}
@keyframes driveIn {
  from {
    left: -55px;
  }
  to {
    left: 100vw;
  }
}
.wrapper section .intro {
  max-width: 600px;
  margin: 40px auto;
}
.wrapper section .intro p {
  text-align: left;
}
.wrapper section.section1 .inner {
  text-align: center;
}
.wrapper section.section1 .cars_wrap {
  display: inline-grid;
  margin: auto;
  grid-gap: 20px;
  grid-template-columns: 250px;
}
@media screen and (min-width: 561px) {
  .wrapper section.section1 .cars_wrap {
    grid-template-columns: repeat(2, 250px);
  }
  .wrapper section.section1 .cars_wrap .car:nth-child(2n+1) {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1081px) {
  .wrapper section.section1 .cars_wrap {
    grid-template-columns: repeat(4, 250px);
  }
}
.wrapper section.section1 .cars_wrap .car {
  position: relative;
}
.wrapper section.section1 .cars_wrap .car p {
  text-align: left;
}
.wrapper section.section1 .cars_4 {
  position: relative;
}
.wrapper section.section1 .cars_4 .skid {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  top: 50px;
  text-align: center;
}
.wrapper section.section2 .chart_options {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.wrapper section.section2 .chart_options .brand {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 30px 1fr;
  margin-bottom: 10px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}
.wrapper section.section2 .chart_options .brand ul.disable li {
  opacity: 0.6;
}
.wrapper section.section2 .chart_options .brand ul.disable li.ticked {
  opacity: 1;
}
.wrapper section.section2 .chart_options .brand ul li {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 16px 1fr;
  cursor: pointer;
  opacity: 1;
  font-style: italic;
}
.wrapper section.section2 .chart_options .brand ul li .box {
  height: 16px;
  width: 16px;
  border: 1px solid;
  border-radius: 20px;
  display: flex;
  margin: auto;
}
.wrapper section.section2 .chart_options .brand ul li .box .tick {
  margin: auto;
  height: 10px;
  width: 10px;
  border-radius: 10px;
}
.wrapper section.section2 .chart_select {
  margin: 20px 0;
}
.wrapper section.section2 .chart_select #vs1__combobox {
  background-color: #fff;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span {
  color: #fff;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span:nth-child(1) {
  background-color: #a74ef4;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span:nth-child(2) {
  background-color: #4ef49b;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span:nth-child(3) {
  background-color: #f5279e;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span:nth-child(4) {
  background-color: #27b6f5;
}
.wrapper section.section2 .chart_select #vs1__combobox .vs__selected-options span .vs__deselect {
  fill: #fff;
}
.wrapper section.section2 .chart_key {
  padding: 10px 0;
}
.wrapper section.section2 .chart_key li {
  border-radius: 5px;
  display: inline-flex;
  margin-right: 5px;
  padding: 4px 5px 3px 5px;
  line-height: 1em;
  color: #fff;
  align-items: center;
  cursor: pointer;
}
.wrapper section.section2 .chart_key li .icon {
  margin-left: 5px;
}
.wrapper section.section2 .chart_key li .icon img {
  float: left;
  height: 12px;
}
.wrapper section.section2 .chart_wrap {
  background-color: #001982;
  padding: 20px 0;
  margin-bottom: 40px;
}
.wrapper section.section2 .chart_wrap canvas {
  height: 500px;
}
.wrapper section .famous_cars {
  text-align: center;
  margin: 40px 0 100px;
  position: relative;
}
.wrapper section .famous_cars .skid {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.wrapper section .famous_cars img {
  position: relative;
}
.wrapper section .famous_cars .inner img {
  margin: 20px 0;
}
@media screen and (min-width: 701px) {
  .wrapper section .famous_cars .inner {
    display: inline-grid;
    grid-gap: 40px;
    grid-template-columns: 200px 300px;
  }
  .wrapper section .famous_cars .inner img {
    margin-top: auto;
    max-width: 100%;
  }
}
.wrapper section.section4 {
  text-align: center;
}
.wrapper section.section4 .cars_wrap {
  display: inline-grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 125px);
}
@media screen and (min-width: 375px) {
  .wrapper section.section4 .cars_wrap {
    grid-template-columns: repeat(2, 150px);
  }
}
@media screen and (max-width: 529px) {
  .wrapper section.section4 .cars_wrap .car:nth-child(4n+1) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #A7343B;
    z-index: 0;
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(4n+3) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #001982;
    z-index: 0;
  }
}
@media screen and (min-width: 530px) and (max-width: 699px) {
  .wrapper section.section4 .cars_wrap {
    grid-template-columns: repeat(3, 150px);
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(6n+1) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #A7343B;
    z-index: 0;
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(6n+4) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #001982;
    z-index: 0;
  }
}
@media screen and (min-width: 700px) and (max-width: 869px) {
  .wrapper section.section4 .cars_wrap {
    grid-template-columns: repeat(4, 150px);
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(8n+1) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #A7343B;
    z-index: 0;
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(8n+5) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #001982;
    z-index: 0;
  }
}
@media screen and (min-width: 870px) {
  .wrapper section.section4 .cars_wrap {
    grid-template-columns: repeat(5, 150px);
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(10n+1) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #A7343B;
    z-index: 0;
  }
  .wrapper section.section4 .cars_wrap .car:nth-child(10n+6) .num:before {
    content: "";
    position: absolute;
    height: 20px;
    left: -100vw;
    width: 200vw;
    background-color: #001982;
    z-index: 0;
  }
}
.wrapper section.section4 .cars_wrap .car {
  margin-top: auto;
}
.wrapper section.section4 .cars_wrap .car .num {
  height: 20px;
  color: #fff;
  position: relative;
}
.wrapper section.section4 .cars_wrap .car .num span {
  position: relative;
  z-index: 1;
  font-style: italic;
}
.wrapper section.section4 .cars_wrap .car .num:before {
  left: -300vw !important;
  transition: left 1s;
}
.wrapper section.section4 .cars_wrap .car.in-view .num:before {
  left: -100vw !important;
}
.wrapper section.section5 {
  padding-top: 40px;
}
.wrapper section.section5 .flex {
  text-align: center;
}
@media screen and (min-width: 700px) {
  .wrapper section.section5 .flex {
    display: flex;
    flex-direction: column-reverse;
  }
}
.wrapper section.section5 .car_wrap {
  margin: 40px auto;
  display: inline-grid;
  grid-gap: 20px;
  text-align: center;
  max-width: 700px;
  margin: 40px auto;
}
@media screen and (min-width: 700px) {
  .wrapper section.section5 .car_wrap {
    grid-template-columns: repeat(2, 250px);
  }
}
.wrapper section.section5 .car_wrap .car {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.wrapper section.section5 .skid_wrap {
  position: relative;
}
.wrapper section.section5 .skid_wrap .skid._1 {
  top: 50px;
}
.wrapper section.section5 .skid_wrap .skid._2 {
  top: calc(50% + 20px);
}
@media screen and (max-width: 699px) {
  .wrapper section.section5 .skid_wrap .skid {
    display: none;
  }
}
.wrapper section .skid {
  position: absolute;
  height: 180px;
  width: 110%;
  left: -5%;
  z-index: 0;
}
.wrapper section .skid img {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 1s;
  transition: clip-path 1s;
  transition: clip-path 1s, -webkit-clip-path 1s;
}
.wrapper section .skid.in-view img {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.wrapper section .car img {
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  opacity: 0;
  transition: all 0.5s;
}
.wrapper section .car.in-view img {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
