@font-face {
  font-family: 'Montserrat-semi';
  src: url('/assets/cms/ccp/byd/fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Montserrat Regular */
@font-face {
  font-family: 'Montserrat-reg';
  src: url('/assets/cms/ccp/byd/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Montserrat Bold */
@font-face {
  font-family: 'Montserrat-bold';
  src: url('/assets/cms/ccp/byd/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --header: 'Montserrat-bold', sans-serif;
  --white: white;
  --black: #000;
  --body: 'Montserrat-reg', sans-serif;
  --dark-blue: #252728;
  --light-gray: #f8f8f8;
  --dark-gray: #30363a;
}

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);
  letter-spacing: normal;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}

h2 {
  font-family: var(--header);
  color: var(--black);
  letter-spacing: normal;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
}

h3 {
  font-family: var(--header);
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
}

p {
  font-family: var(--body);
  color: var(--black);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

a {
  text-decoration: underline;
}

.paragraph {
  font-family: Din;
  font-weight: 400;
}

.heading, .heading-2 {
  font-weight: 500;
}

.button {
  background-color: var(--black);
  font-family: var(--body);
  color: var(--white);
  letter-spacing: normal;
  text-transform: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  margin-top: 15px;
  padding: 12px 50px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .5s;
  display: inline-flex;
}

.button:hover {
  color: var(--black);
  background-color: #fff;
  border-style: solid;
  border-color: #000;
}

.button.secondary {
  background-color: var(--black);
  color: var(--white);
  border-style: solid;
  border-color: #000;
  align-items: center;
  transition-property: all;
}

.button.secondary:hover {
  color: var(--black);
  background-color: #fff;
  border-style: solid;
}

.button.secondary._50-top {
  margin-top: 35px;
}

.button.secondary.last {
  background-color: var(--black);
  border-style: solid;
}

.button.secondary.last:hover {
  color: var(--black);
  background-color: #fff;
  border-style: solid;
}

.button.secondary.black {
  background-color: var(--black);
  color: var(--white);
  border-style: solid;
}

.button.secondary.black:hover {
  color: var(--black);
  background-color: #fff;
}

.button.less-padding {
  margin-top: 5px;
}

.button-arrow {
  margin-left: 10px;
}

.navigation {
  z-index: 0;
  background-color: var(--dark-blue);
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.hero {
  background-image: url('/assets/cms/ccp/byd/images/hero.avif');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 50vh;
  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;
  padding-bottom: 300px;
  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: 0;
  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-radius: 0;
}

.div-block-3 {
  background-image: url('/assets/cms/ccp/byd/images/block_banner.avif');
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 0;
  height: 400px;
  margin-top: 50px;
}

.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: 15px;
  font-weight: 400;
  display: grid;
}

._2-3-col {
  text-align: center;
  font-weight: 600;
  line-height: 24px;
}

.bold {
  font-weight: 600;
  line-height: 24px;
}

.section-five-full {
  border: 1px #000;
  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: 0;
  width: 100%;
  height: 825px;
  overflow: hidden;
}

.first {
  margin-top: 50px;
}

.footer {
  background-color: var(--dark-blue);
  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;
  text-transform: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.footer-link.hide {
  display: none;
}

.footer-header {
  font-family: var(--header);
  color: var(--white);
  text-transform: none;
  font-size: 20px;
  font-weight: 500;
}

.footer-link-block {
  flex-flow: column;
  padding-bottom: 50px;
  display: flex;
}

.footer-logo {
  width: 160px;
}

.div-block-7 {
  padding-top: 30px;
}

.small {
  font-size: 12px;
}

.small.white {
  color: #fff;
  font-weight: 300;
  display: block;
}

.naviagtion-spacer-block {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 95%;
  display: flex;
}

.header-logo {
  width: 75px;
}

.navigation-links {
  align-items: center;
  display: flex;
}

.navigation-header-link {
  font-family: var(--body);
  color: var(--white);
  text-transform: none;
  margin-right: 50px;
  font-size: 16px;
  font-weight: 400;
  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;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #00000096;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-8 {
  background-color: var(--dark-blue);
  width: 400px;
  height: 100vh;
  padding: 0 2.5% 50px 50px;
  position: relative;
  right: 0;
}

.nav-link {
  font-family: var(--body);
  color: var(--white);
  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: 50px;
}

.blue-line {
  background-color: var(--white);
  width: 100%;
  height: 2px;
}

.blue-line.crossa {
  background-color: var(--white);
  width: 32px;
  display: block;
  position: absolute;
  transform: rotate(-45deg);
}

.blue-line.crossb {
  background-color: var(--white);
  width: 30px;
  position: absolute;
  transform: rotate(45deg);
}

.center {
  text-align: center;
  margin-top: 30px;
}

.inline-link {
  color: var(--white);
  flex: none;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.inline-link.black {
  color: var(--black);
}

.text-span {
  font-weight: 600;
}

.heading-4 {
  text-transform: none;
  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;
}

.heading-5 {
  font-weight: 700;
}

.heading-6 {
  font-weight: 400;
}

.bold-copy {
  font-weight: 600;
  line-height: 24px;
}

.lowercase-header {
  text-transform: none;
  margin-bottom: 30px;
}

.body {
  background-color: #fff;
}

@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) {
  .hero {
    height: 60vh;
  }

  .two-grid {
    grid-row-gap: 21px;
    grid-template-columns: 1fr;
  }

  .three-grid {
    grid-template-columns: 1fr;
  }

  .image {
    width: 100%;
  }

  .table-row-inserted-grid {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }

  .large-padding {
    margin-top: 50px;
  }

  .first {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navigation-header-link {
    font-weight: 400;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    text-align: center;
    text-transform: none;
  }

  h2 {
    font-size: 28px;
    line-height: 32px;
  }

  h3 {
    margin-top: 15px;
    font-size: 20px;
    line-height: 24px;
  }

  .hero {
    height: 60vh;
  }

  .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;
  }

  .div-block-3 {
    width: 100%;
  }

  .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;
  }

  .large-image {
    height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .navigation-header-link {
    display: none;
  }

  .center {
    text-align: center;
  }
}

#w-node-_05d143ca-f7b0-3e33-75d2-467facc675a1-d20382c0, #w-node-bd598ba0-421b-283f-e3b8-4b31b5eb9da9-d20382c0, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c3-d20382c0, #w-node-_2bf51031-cb8b-ff5f-0f15-ad55c369e5c4-d20382c0, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcb-d20382c0, #w-node-_2ac0e7d5-f3e0-25b1-dd7d-99a072db2fcc-d20382c0, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef3-d20382c0, #w-node-_66a93866-4abb-0d65-fc86-1d0876db0ef4-d20382c0 {
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_0db0520e-1d3d-966b-d06f-cf98f17b1b1c-d20382c0 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Mazdatype';
  src: url('../fonts/MazdaType-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mazdatype';
  src: url('../fonts/MazdaType-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mazdatype';
  src: url('../fonts/MazdaType-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.collapsible {
  background-color: inherit;
  cursor: pointer;
  border: none;
  text-align: left;
}

.active, .collapsible:hover {
}

.content {
  display: none;
  overflow: hidden;
}
