@import url("https://gistcdn.githack.com/mfd/09b70eb47474836f25a21660282ce0fd/raw/e06a670afcb2b861ed2ac4a1ef752d062ef6b46b/Gilroy.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");
@import url("https://api.fontshare.com/css?f[]=general-sans@500&display=swap");
@import url("https://api.fontshare.com/css?f[]=satoshi@500&display=swap");

@font-face {
  font-family: "trapbold";
  src: url("../Fonts/trap-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "trapmedium";
  src: url("../Fonts/trap-medium-webfont.woff") format("woff");
  font-weight: medium;
  font-style: normal;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: #909090;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

body {
  text-rendering: auto;
  image-rendering: auto;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

th {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  padding: 1rem;
  font-size: 1.25rem;
}

.tableTH {
  padding-left: 0rem;
  padding-right: 3rem;
}

td {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 1rem;
  font-size: 1.25rem;
}

.l-heading {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
}

.m-heading {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.overflow {
  overflow: hidden;
}

header {
  position: relative;
  width: 100%;
  height: auto;
}

header .navwrap {
  position: absolute;
  width: 100%;
  z-index: 6;
  -webkit-transition: background-color 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: background-color 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90%;
  padding: 0.5rem;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header nav h2 {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

header nav .hamwrap {
  display: none;
}

header .logo {
  display: inline-block;
  left: 0;
  padding: 1rem 0;
  color: white;
}

header ul {
  display: block;
  text-align: center;
  right: 0;
}

header ul:hover .current::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

header li {
  display: inline-block;
  text-align: center;
  padding: 0rem 0.5rem;
}

header li:last-child {
  padding-right: 0rem;
}

header a {
  position: relative;
  display: inline-block;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-family: "General Sans", sans-serif;
}

header a::before {
  content: "";
  position: absolute;
  display: block;
  height: 1.5px;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: white;
  left: 0;
  bottom: 0px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

header a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

header a.current::before {
  content: "";
  position: absolute;
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: white;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  left: 0;
  bottom: 0px;
}

header .homepage {
  position: relative;
  background: url("../Resources/Main/Showcase_M4.jpg") no-repeat center bottom 40% / cover;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-attachment: fixed;
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
}

header .homepage .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(20%, rgba(226, 39, 24, 0.3)),
      to(rgba(0, 102, 177, 0.3))) no-repeat center center/cover;
  background: linear-gradient(180deg,
      rgba(226, 39, 24, 0.3) 20%,
      rgba(0, 102, 177, 0.3) 100%) no-repeat center center/cover;
  background: -webkit-linear-gradient(270deg,
      rgba(226, 39, 24, 0.3) 20%,
      rgba(0, 102, 177, 0.3) 100%) no-repeat center center/cover;
  z-index: 2;
  mix-blend-mode: color;
}

header .homepage .showcase-info {
  padding: 0rem 5rem;
  color: white;
  z-index: 4;
}

header .homepage .showcase-info h1 {
  font-size: 5rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
}

header .homepage .showcase-info h3 {
  font-size: 2rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  margin-top: 0.5rem;
}

header .homepage .showcase-info .focus {
  font-size: 6rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  margin-top: 1rem;
}

header .msports {
  position: absolute;
  display: inline-block;
  right: 1rem;
  bottom: 0;
  z-index: 4;
  padding: 1rem;
}

header .msports .mlogo {
  background: url("../Resources/Main/M_perf.png") no-repeat center center/contain;
  width: 215px;
  height: 35px;
}

header .msports p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
}

.nav2 {
  padding: 0.5rem 0rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: black;
  z-index: 15;
}

.nav2 ul {
  display: block;
  text-align: center;
  right: 0;
}

.nav2 li {
  display: inline-block;
  text-align: center;
  padding: 0rem 0.5rem;
}

.nav2 a {
  display: inline-block;
  position: relative;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-family: "General Sans", sans-serif;
}

.nav2 a::before {
  content: "";
  position: absolute;
  display: block;
  height: 1.5px;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: white;
  left: 0;
  bottom: 0px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.nav2 a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.modelstitle .m-heading,
.performanceinfo .m-heading,
.designinfo .m-heading {
  font-size: 2rem;
}

.performanceinfo .l-heading,
.designinfo .l-heading {
  font-family: "trapbold";
  letter-spacing: 0.25rem;
}

.models {
  background: url("../Resources/Main/M4_models.jpg") no-repeat center center/cover;
  width: 100%;
  height: 90vh;
}

.modelinfo {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4rem 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modelinfo .infoA {
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 2px solid black;
}

.modelinfo .infoB {
  padding: 1rem;
  display: block;
  margin: auto;
}

.performanceinfo {
  background-color: black;
  text-align: center;
  padding: 2rem;
  color: white;
}

.performanceinfo h2,
.performanceinfo p {
  padding: 0.75rem 0rem;
}

.performance {
  background: url("../Resources/Main/Performance_M4.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100vh;
}

.gridlines {
  background-color: white;
  background-repeat: repeat;
  padding: 2.5rem;
}

.gridlines>div {
  margin-bottom: 2.5rem;
}

.gridlines>div:last-child {
  margin-bottom: 0rem;
}

.gridlines>div>div:nth-child(2) {
  padding-right: 4rem;
}

.gridlines>div>div:first-child>div:first-child {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: -webkit-transform 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: transform 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: transform 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86),
    -webkit-transform 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

.gridlines>div>div:first-child>div:first-child:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.gridlines .container h2 {
  font-family: "trapmedium";
  font-size: 2.6rem;
}

.gridlines .container p {
  font-size: 1.1rem;
}

.gridlines .container br {
  display: none;
}

.MPowerwrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}

.MPower {
  background: url("../Resources/Main/Performance_MPower.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 60vh;
  position: relative;
}

.MPower .gradient {
  position: absolute;
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(25%, black),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, black 25%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, black 25%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
}

.MPowerinfo {
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.MPowerinfo h2 {
  padding-bottom: 0.75rem;
}

.TransmissionWrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}

.Transmission {
  background: url("../Resources/Main/Performance_Transmission.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 60vh;
}

.Transmission .gradient {
  position: absolute;
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(25%, black),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, black 25%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, black 25%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
}

.Transmissioninfo {
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Transmissioninfo h2 {
  padding-bottom: 0.75rem;
}

.SuspensionWrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}

.Suspension {
  background: url("../Resources/Main/Performance_Suspension.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 60vh;
}

.Suspension .gradient {
  position: absolute;
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(14%, black),
      color-stop(70%, rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, black 14%, rgba(0, 0, 0, 0) 70%);
  background: -webkit-linear-gradient(180deg, black 14%, rgba(0, 0, 0, 0) 70%);
  width: 100%;
  height: 100%;
}

.Suspensioninfo {
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Suspensioninfo h2 {
  padding-bottom: 0.75rem;
}

.BrakesWrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}

.Brakes {
  background: url("../Resources/Main/Performance_Brakes.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 60vh;
}

.Brakes .gradient {
  position: absolute;
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(20%, black),
      color-stop(80%, rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, black 20%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-linear-gradient(180deg, black 20%, rgba(0, 0, 0, 0) 80%);
  width: 100%;
  height: 100%;
}

.Brakesinfo {
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Brakesinfo h2 {
  padding-bottom: 0.75rem;
}

.Designwrap p {
  width: 75%;
  margin: auto;
}

.designinfo {
  background-color: black;
  text-align: center;
  padding: 2rem;
  color: white;
}

.designinfo h2,
.designinfo p {
  padding: 0.75rem 0rem;
}

.design {
  background: url("../Resources/Main/Design_M4.jpg") no-repeat center center/cover;
  width: 100%;
  height: 60vh;
}

.Evolvewrap {
  background-color: #000;
  color: white;
}

.Evolve {
  background: url("../Resources/Main/Design_Evolve.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 80vh;
}

.Evolveinfo {
  padding: 2rem !important;
  text-align: center;
}

.Evolveinfo h2 {
  margin-bottom: 1rem;
}

.Aerowrap {
  background-color: #000;
  color: white;
}

.Aero {
  background: url("../Resources/Main/Design_Aero.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 80vh;
}

.Aeroinfo {
  padding: 2rem !important;
  text-align: center;
}

.Aeroinfo h2 {
  margin-bottom: 1rem;
}

.Stylewrap {
  background-color: #000;
  color: white;
}

.Style {
  background: url("../Resources/Main/Design_Style.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 80vh;
}

.Styleinfo {
  padding: 2rem !important;
  text-align: center;
}

.Styleinfo h2 {
  margin-bottom: 1rem;
}

.Seatswrap {
  background-color: #000;
  color: white;
}

.Seats {
  background: url("../Resources/Main/Design_Seats.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 80vh;
}

.Seatsinfo {
  padding: 2rem !important;
  text-align: center;
}

.Seatsinfo h2 {
  margin-bottom: 1rem;
}

footer {
  width: 100%;
  min-height: 160px;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
  height: 80%;
  margin: 2rem auto;
}

footer .btn a {
  display: inline-block;
  padding: 1rem 2rem;
  color: white;
  background-color: #1c69d3;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  width: 164px;
}

footer .footerwrap {
  height: 100%;
  width: 100%;
}

footer p {
  color: white;
}

footer .BMW {
  width: 100%;
  height: auto;
  padding: 1.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

footer .social-links a {
  padding: 1rem;
  color: white;
  font-size: 1.25rem;
}

footer .social-links a:last-child {
  padding-right: 0rem;
}

.FeaturesShowcase {
  background: url("../Resources/Main/Features_Showcase.jpg") no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
}

.options {
  height: 80px;
  width: 60%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  margin-top: 4rem;
  -webkit-box-shadow: 0px 0px 10rem 10rem rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10rem 10rem rgba(0, 0, 0, 0.1);
}

.options>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.options>div h2 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
}

.options .featuresinfo {
  height: 100%;
  color: white;
  background-color: black;
  -webkit-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
}

.options .featuresinfo_active {
  color: black;
  background-color: white;
}

.options .featuresinfo_active:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.options .specifications {
  height: 100%;
  color: #000;
  background-color: white;
  -webkit-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
}

.options .specifications:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.options .specifications_active {
  color: white;
  background-color: black;
}

.options .specifications_active:hover {
  background-color: black;
}

.Features {
  margin-top: 4rem;
  padding: 4rem;
}

.Features-Title {
  text-align: center;
  font-size: 3rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
}

.Features-Grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  padding: 4rem;
}

.FeatureTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.FeatureTitle h2 {
  font-size: 2rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
}

.borderbottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0rem;
}

.borderbottom:hover {
  cursor: pointer;
}

.borderbottom .arrow,
.borderbottom .arrowsecond,
.borderbottom .arrowthird,
.borderbottom .arrowfourth,
.borderbottom .arrowfifth,
.borderbottom .arrowsixth,
.borderbottom .arrowseventh,
.borderbottom .arroweight,
.borderbottom .arrownine,
.borderbottom .arrowten {
  position: absolute;
  width: 50px;
  height: 30px;
  top: 30px;
  right: 10px;
}

.borderbottom .lineone {
  position: absolute;
  top: 14px;
  right: 5px;
  width: 50%;
  height: 4px;
  background-color: black;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.25s cubic-bezier(0.77, 0, 0.18, 1),
    -webkit-transform 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.borderbottom .linetwo {
  position: absolute;
  top: 14px;
  left: 5px;
  width: 50%;
  height: 4px;
  background-color: black;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.18, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.2s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.2s cubic-bezier(0.77, 0, 0.18, 1),
    -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.18, 1);
}

.borderbottom .arrowexpanded .lineone {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.borderbottom .arrowexpanded .linetwo {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.borderbottom h2 {
  font-size: 2.5rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
}

.details p {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.details p:last-child,
.details p:nth-last-child(2) {
  margin-bottom: 0rem;
  border-bottom: none;
}

.expandperf {
  position: relative;
}

.FeatureOneA {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureOneA-expanded {
  height: auto;
  margin-top: 3rem;
}

.handling {
  margin-top: 2rem;
}

.expandhandling {
  position: relative;
}

.FeatureOneB {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureOneB-expanded {
  height: auto;
  margin-top: 3rem;
}

.expandexterior {
  position: relative;
}

.FeatureTwoA {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureTwoA-expanded {
  height: auto;
  margin-top: 3rem;
}

.interior {
  margin-top: 2rem;
}

.expandinterior {
  position: relative;
}

.FeatureTwoB {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureTwoB-expanded {
  height: auto;
  margin-top: 3rem;
}

.expandconnectivity {
  position: relative;
}

.FeatureThreeA {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureThreeA-expanded {
  height: auto;
  margin-top: 3rem;
}

.Audio {
  margin-top: 2rem;
}

.expandaudio {
  position: relative;
}

.FeatureThreeB {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureThreeB-expanded {
  height: auto;
  margin-top: 3rem;
}

.Instrument {
  margin-top: 2rem;
}

.expandinstrument {
  position: relative;
}

.FeatureThreeC {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureThreeC-expanded {
  height: auto;
  margin-top: 3rem;
}

.Comfort {
  margin-top: 2rem;
}

.expandcomfort {
  position: relative;
}

.FeatureThreeD {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureThreeD-expanded {
  height: auto;
  margin-top: 3rem;
}

.expandsafety {
  position: relative;
}

.FeatureFourA {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureFourA-expanded {
  height: auto;
  margin-top: 3rem;
}

.warranty {
  margin-top: 2rem;
}

.expandwarranty {
  position: relative;
}

.FeatureFourB {
  height: 0rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.FeatureFourB-expanded {
  height: auto;
  margin-top: 3rem;
}

.Specs {
  margin-top: 8rem;
  display: none;
}

.Specs h2 {
  font-size: 3rem;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
}

.Specs h4 {
  margin-bottom: 2rem;
}

.Specs h3 {
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.Specs p {
  font-size: 1.15rem;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  margin-bottom: 4rem;
}

.Specs .box1 {
  padding: 4rem 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.Specs .box2 {
  padding: 4rem 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.Specs .box3 {
  padding: 4rem 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 5rem;
  padding-bottom: 0rem;
  image-rendering: -webkit-optimize-contrast;
}

.Specs .ExteriorShowcase {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "ext1 ext1"
    "ext2 ext3";
  gap: 2rem 0rem;
  align-self: flex-start;
}

.Specs .ExteriorShowcase .ext1 {
  background: url("../Resources/Main/M4_Ex1.webp") no-repeat center center/cover;
  width: auto;
  height: 18vw;
  margin: auto;
}

.Specs .ExteriorShowcase .ext1-wrap {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: ext1;
}

.Specs .ExteriorShowcase .ext2 {
  background: url("../Resources/Main/M4_Ex2.webp") no-repeat center center/cover;
  width: auto;
  height: 18vw;
  margin: auto;
}

.Specs .ExteriorShowcase .ext2-wrap {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: ext2;
}

.Specs .ExteriorShowcase .ext3 {
  background: url("../Resources/Main/M4_Ex3.webp") no-repeat center center/cover;
  width: auto;
  height: 18vw;
  margin: auto;
}

.Specs .ExteriorShowcase .ext3-wrap {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: ext3;
}

.Specs .InteriorShowcase {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.Specs .int {
  background: url("../Resources/Main/M4_interior.webp") no-repeat center center/cover;
  width: auto;
  height: 18vw;
}

.gallery {
  background: url("../Resources/Gallery/Gallery_Showcase.jpg") no-repeat center top/cover;
  height: 70vh;
  width: 100%;
  background-attachment: fixed;
  -webkit-filter: saturate(60%) brightness(120%);
  filter: saturate(60%) brightness(120%);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery h1 {
  font-size: 4rem;
  color: white;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  letter-spacing: 0.45rem;
  line-height: 1.5;
  text-shadow: 6px 2px 0.2rem #1a1a1a;
  z-index: 5;
}

.gallery .spacing {
  letter-spacing: 1.2rem;
}

.gallery .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(10%, rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0.7))) no-repeat center center/cover;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 10%,
      rgba(0, 0, 0, 0.7) 100%) no-repeat center center/cover;
  background: -webkit-linear-gradient(270deg,
      rgba(0, 0, 0, 0.5) 10%,
      rgba(0, 0, 0, 0.7) 100%) no-repeat center center/cover;
  z-index: 2;
  mix-blend-mode: luminosity;
}

.GalleryWrap {
  padding: 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  image-rendering: auto;
}

.GalleryWrap .zoom {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1),
    -webkit-transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.GalleryWrap .zoom:hover {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.GalleryWrap .box1 {
  background: url("../Resources/Gallery/box1.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box2 {
  background: url("../Resources/Gallery/box2.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box3 {
  background: url("../Resources/Gallery/box3.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box4 {
  background: url("../Resources/Gallery/box4.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box5 {
  background: url("../Resources/Gallery/box5.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box6 {
  background: url("../Resources/Gallery/box6.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box7 {
  background: url("../Resources/Gallery/box7.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box8 {
  background: url("../Resources/Gallery/box8.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box9 {
  background: url("../Resources/Gallery/box9.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box10 {
  background: url("../Resources/Gallery/box10.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box11 {
  background: url("../Resources/Gallery/box11.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box12 {
  background: url("../Resources/Gallery/box12.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box13 {
  background: url("../Resources/Gallery/box13.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box14 {
  background: url("../Resources/Gallery/box14.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box15 {
  background: url("../Resources/Gallery/box15.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box16 {
  background: url("../Resources/Gallery/box16.jpg") no-repeat center center/cover;
  width: 100%;
  height: 25vw;
}

.GalleryWrap .box17 {
  background: url("../Resources/Gallery/box17.jpg") no-repeat center center/cover;
  width: 100%;
  height: 22vw;
}

.GalleryWrap .box18 {
  background: url("../Resources/Gallery/box18.jpg") no-repeat center center/cover;
  width: 100%;
  height: 22vw;
}

.GalleryWrap .box19 {
  background: url("../Resources/Gallery/box19.jpg") no-repeat center center/cover;
  width: 100%;
  height: 22vw;
}

.GalleryWrap .box20 {
  background: url("../Resources/Gallery/box20.jpg") no-repeat center center/cover;
  width: 100%;
  height: 22vw;
}