body {
  margin: 0;
  padding: 0;
}
.showcase {
  height: 100vh;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  position: relative;
}
.showcase-overlay {
  height: 100vh;
  width: 100%;
  position: absolute;
  background-color: #38383b;
  opacity: 0.35;
}
.showcase-content {
  height: 100vh;
  position: relative;
  z-index: 2;

  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.showcase h1 {
  font-family: "Raleway", sans-serif;
  font-size: 3em;
  color: white;
  font-weight: 700;
}
h2 {
  font-family: "Raleway", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
}
h3 {
  font-family: "Raleway", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
}
h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
}
p,
ul,
li {
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

.section {
  min-height: 80vh;
}

.section-grid {
  min-height: 50vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0;
}
.section-grid-3 {
  grid-template-columns: 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;
}

.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;
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
  /* footer */
  .footer {
    grid-template-columns: 1fr;
  }
  .logo-footer-mgd-swiss {
    margin-top: 80px;
  }
}
@media (max-width: 700px) {
  .section-grid {
    grid-template-columns: 1fr;
    padding: 100px 30px;
  }
  .section-duo-image {
    grid-template-columns: 1fr;
  }
  .section-grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-row-1-2 {
    grid-column: auto;
  }
}
@media (max-width: 450px) {
  /* 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;
}
}
