body {
  margin: 0;
  padding: 0;
}
.showcase {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #050505;
}

.showcase-image {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #38383b;
  opacity: 0;
  z-index: 1;
}

.showcase-content {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: grid;
justify-content: center;
  align-content: center;
  text-align: left;
  padding: 30px 8%;
  background: #050505;
}

.showcase h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3em;
  color: white;
  font-weight: 700;
}
h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
}
h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
}
h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
}
h6 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}
p,
ul,
li {
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
}

.section {
  min-height: 80vh;
}

.section-grid {
  min-height: 50vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* removed-to verify */
  /* padding: 100px 0; */
}
.section-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
}
.section-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
}
.section-grid-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: flex-start;
}
.grid-row-1-2 {
  grid-column: 2 / span 2;
}

.section-duo-image {
  min-height: 50vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.section-content {
  padding: 30px 18%;
}

.section-bg,
.section-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-ukiyo {
  min-height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* footer */
.footer {
  padding: 100px;
  text-align: center;
  background-color: black;
  color: white;

  display: grid;
  /* grid-template-columns: 1fr 1fr; */
}
.footer-bottom {
  background-color: black;
  color: white;
  text-align: center;
  padding: 30px;
}
.footer-bottom p {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #6f6f6f;
  text-decoration: none;
}

.logo-footer-mgd {
  height: 30px;
  width: auto;

  margin-bottom: 22px;
}

.section-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section-duo-content {
  display: grid;
  align-content: center;
  padding: 80px;
}

.section-img {
}

/* buttons */

.jbtn {
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 9px;

  padding: 9px 30px 8px 30px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  text-decoration: none;

  width: fit-content;
  transition: all 0.3s;
}

.jbtn:hover {
  background-color: white;
  color: black;
  text-decoration: none;
}
/* jbtn icon */
.jbtn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 9px;

  background-color: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  text-decoration: none;
}

.jbtn-icon-lg {
  width: 60px;
  height: 60px;
}
.jbtn-icon-xl {
  width: 80px;
  height: 80px;
}
.jbtn-icon-xxl {
  width: 90px;
  height: 90px;
}

/* jbtn dark */
.jbtn-dark {
  background-color: #5d5d5d;
  border: 1px solid #5d5d5d;
}
.jbtn-dark:hover {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}
/* jbtn black */
.jbtn-black {
  background-color: #000000;
  border: 1px solid #000000;
}
.jbtn-black:hover {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

/* jbtn white */
.jbtn-white {
  background-color: white;
  border: 1px solid white;
  color: black;
}
.jbtn-white:hover {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

/* download */
.dl-btn-container{
  display: grid;
  gap: 8px;
  grid-template-columns: auto auto;
  justify-content: flex-start;
}

/* _________________________________________________________________________________________ */

/* new for mgd.watch */
.separator {
  min-height: 30vh;
  padding: 100px 20%;
  text-align: center;
  display: grid;
  align-items: center;
}

.models-container{
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 0px;
  /* padding: 50px 50px; */
}

.model img{
  width: min(550px, 100%);
  height: auto;
}
.pre-container{
  padding: 30px 100px;
  display: grid; 
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.pre-container img{
  width: 170px;
  height: auto;
}

.white{
  color: white;
}
.grey{
  color: #CCCCCC;
}

.faq-section {
  background: #fff;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(11,14,20,.52);
  font-weight: 600;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.section-intro {
  color: rgba(11,14,20,.65);
  line-height: 1.8;
  max-width: 760px;
}

.faq-card {
  border: 0;
  border-bottom: 1px solid rgba(11,14,20,.14);
  border-radius: 0;
  background: transparent;
}

.faq-card:first-child {
  border-top: 1px solid rgba(11,14,20,.14);
}

.faq-card .card-header {
  padding: 0;
  background: transparent;
  border: 0;
}

.faq-toggle {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: #0b0e14;
  text-decoration: none;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq-toggle:hover,
.faq-toggle:focus {
  color: #0b0e14;
  text-decoration: none;
  box-shadow: none;
}

.faq-toggle i {
  font-size: 13px;
  transition: transform .25s ease;
  color: rgba(11,14,20,.48);
}

.faq-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-card .card-body {
  padding: 0 0 24px;
  max-width: 860px;
  color: rgba(11,14,20,.66);
  line-height: 1.8;
  font-size: 15px;
}

/* faq font */
.faq-toggle span {
  font-family: "Red Hat Display", sans-serif;
}

.faq-card .card-body {
  font-family: "Red Hat Display", sans-serif;
}

/* MEDIA QUERIES */

@media (max-width: 1400px) {
  .section-content {
    padding: 30px 15%;
  }
}

@media (max-width: 1200px) {
  .section-content {
    padding: 30px 12%;
  }

  .separator {
    padding: 90px 16%;
  }

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

  .logo-footer-mgd-swiss {
    margin-top: 80px;
  }
}

@media (max-width: 900px) {
  .section-content {
    padding: 30px 9%;
  }

  .separator {
    padding: 80px 10%;
  }
}

@media (max-width: 700px) {
  .showcase {
    min-height: 100vh;
    grid-template-columns: 1fr;
  }

  .showcase-content {
    grid-column: 1;
    grid-row: 1;
    min-height: 100vh;
    background: transparent;
    z-index: 2;
    text-align: left;
    justify-content: start;
    padding: 30px;
  }

  .showcase-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 100vh;
    z-index: 0;
  }

  .showcase-overlay {
    opacity: 0.45;
  }

  .section-content {
    padding: 30px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .section-grid > .parallax-ukiyo {
    order: -1;
  }

  .section-duo-image {
    grid-template-columns: 1fr;
  }

  .section-grid-3,
  .section-grid-4,
  .section-grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-row-1-2 {
    grid-column: auto;
  }

  .separator {
    min-height: auto;
    padding: 70px 24px;
  }

  .models-container {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .pre-container {
    padding: 30px 24px;
  }

  .parallax-ukiyo {
    min-height: 55vh;
  }
}
@media (max-width: 450px) {
  .section-content {
    padding: 30px 15px;
  }

  .separator {
    padding: 60px 15px;
  }

  /* fonts */
  .showcase h1 {
    font-family: "Raleway", sans-serif;
    font-size: 2.2em;
    color: white;
    font-weight: 700;
  }
  h2 {
    font-family: "Raleway", sans-serif;
    font-size: 2.1em;
    font-weight: 700;
  }
  h3 {
    font-family: "Raleway", sans-serif;
    font-size: 1.8em;
    font-weight: 700;
  }
  p,
  ul,
  li {
    font-family: "Lato", sans-serif;
    font-size: 14px;
  }

  /* footer */
  .footer {
    padding: 100px 30px;
  }
  .logo-footer-mgd {
    height: 20px;
  }
  h4 {
    font-family: "Raleway", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 16px;
  }
}
@media (max-width: 400px) {
/* download */
.dl-btn-container{
  grid-template-columns: auto;
}
}