@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
:root {
  --header-background: #231f20;
  --header-text-color: #f0f6f7;
  --header-text-color-hover: #ffcd00;
  --primary-footer-background: #e9e9e9;
  --primary-footer-text-color: #131313;
  --secondary-footer-background: #131313;
  --secondary-footer-text-color: #EFEDF2;
  --body-background: #f2f1f0;
  --product-border-color: #e1e3ee;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--body-background);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.content {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.content-welcome {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: rgba(var(--header-background), 1);
}

.content-welcome .video {
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.content-welcome .slogan {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 2rem;
  text-align: center;
  color: var(--header-text-color);
  background: rgba(19, 19, 19, 0.65);
}

.content-welcome .action-explore {
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: bottom;
      align-content: bottom;
  color: var(--header-background);
  background: var(--header-text-color-hover);
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 25px;
  text-decoration: none;
  border: 1px solid var(--header-text-color-hover);
}

.content-welcome .action-explore:hover {
  background: var(--header-background);
  color: var(--header-text-color-hover);
  border: 1px solid var(--header-text-color-hover);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.content-explore {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

.content-explore img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 130%;
  height: 100%;
}

.products {
  width: 50vh;
  min-height: 50vh;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
}

.products .card-product {
  background: #fff;
  overflow: hidden;
  padding: 10px;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: 20px;
  position: relative;
  /*&:hover{
        border-top: 1px solid var(--header-background);
        border-left: 1px solid var(--header-background);
        border-right: 1px solid var(--header-background);
        transition: border-color 500ms ease-in-out;        
        }*/
}

.products .card-product img {
  z-index: -1;
  width: 100%;
  height: 100%;
}

.products .card-product .card-info {
  z-index: 2;
  color: var(--header-text-color);
  background: rgba(35, 31, 32, 0.65);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
      grid-template-columns: 1.5fr 1fr;
}

.products .card-product .card-info h3 {
  padding-left: 15px;
  text-align: left;
}

.products .card-product .card-info a {
  background: var(--header-text-color-hover);
  color: var(--header-background);
  padding: 20px 25px;
  border-top-left-radius: 25px;
  text-decoration: none;
  text-align: center;
  border-top: 1px solid var(--header-text-color-hover);
  border-left: 1px solid var(--header-text-color-hover);
}

.products .card-product .card-info a:hover {
  background: var(--header-background);
  color: var(--header-text-color-hover);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.action-products {
  background: var(--header-background);
  color: var(--header-text-color-hover);
  -ms-grid-column-align: center;
      justify-self: center;
  padding: 15px 50px;
  margin-bottom: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  text-decoration: none;
  border-top: 1px solid var(--header-background);
}

.action-products:hover {
  border-top: 1px solid var(--header-background);
  background: var(--header-text-color-hover);
  color: var(--header-background);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.sitemap {
  margin-top: 13vh;
  width: 75%;
  color: var(--header-background);
}

.sitemap h2 {
  margin-bottom: 0;
}

.sitemap a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--header-background);
}

/* Quality */
.quality {
  width: 75%;
  min-height: 50vh;
  display: -ms-grid;
  display: grid;
}

.quality .quality-info {
  width: 100%;
  text-align: justify;
}

.quality .quality-badge {
  text-align: center;
}

/* Corporate */
.corporate {
  padding: 20px 0;
  width: 85%;
}

.corporate .corp-head {
  margin: 0;
}

.corporate .corp-head:first-of-type {
  margin-top: 20px;
}

.corporate .corp-head:last-of-type {
  margin-bottom: 20px;
}

.corporate .left-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.corporate .left-nav .corp-nav {
  width: 50%;
  padding: 10px 20px;
  text-align: center;
  background: var(--header-background);
  border-bottom: 2px solid var(--header-background);
  text-decoration: none;
  color: var(--header-text-color);
}

.corporate .left-nav .corp-nav:hover {
  color: var(--header-text-color-hover);
  border-bottom-color: var(--header-text-color-hover);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.corporate .right {
  width: 100%;
}

.corporate .right .about-us {
  width: 100%;
  padding: 20px 0;
}

.corporate .right .culture {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.corporate .right .culture .line .culture-card {
  width: 100%;
  margin-bottom: 20px;
  background: var(--header-background);
  border: 2px solid var(--header-background);
}

.corporate .right .culture .line .culture-card:last-of-type {
  margin-bottom: 0;
}

.corporate .right .culture .line .culture-card:hover {
  border-color: var(--header-text-color-hover);
  -webkit-transition: border-color 250ms ease-in-out;
  transition: border-color 250ms ease-in-out;
}

.corporate .right .culture .line .culture-card .culture-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.corporate .right .culture .line .culture-card .culture-img img {
  width: 100%;
  height: 100%;
}

.corporate .right .culture .line .culture-card .culture-img .effect {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.35);
}

.corporate .right .culture .line .culture-card .culture-info {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  color: var(--header-text-color);
}

.corporate .right .culture .line .culture-card .culture-info h3 {
  padding: 10px 0;
  margin: 0;
  color: var(--header-text-color-hover);
}

.corporate .right .culture .line .culture-card .culture-info p {
  padding-bottom: 20px;
}

.corporate .right .culture .line:last-of-type {
  margin-top: 20px;
}

/* Product Detail */
.product-detail {
  margin-top: 20px;
  width: 75%;
  display: -ms-grid;
  display: grid;
}

.product-detail .left {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-areas: 'show-img show-img show-img' 'mini-img-1 mini-img-2 mini-img-3';
}

.product-detail .left .show-img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: show-img;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
}

.product-detail .left .mini-1 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: mini-img-1;
  border-left: 1px solid var(--product-border-color);
  border-bottom: 1px solid var(--product-border-color);
}

.product-detail .left .mini-2 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: mini-img-2;
  border-bottom: 1px solid var(--product-border-color);
}

.product-detail .left .mini-3 {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: mini-img-3;
  border-right: 1px solid var(--product-border-color);
  border-bottom: 1px solid var(--product-border-color);
}

.product-detail .left .mini-img {
  margin-top: 2px;
  width: 100%;
  height: 100%;
}

.product-detail .left img {
  width: 100%;
  height: 100%;
}

.product-detail .middle {
  margin-top: 10px;
  width: 100%;
  display: -ms-grid;
  display: grid;
}

.product-detail .middle .product-prop {
  z-index: 2;
  width: 41%;
  padding: 10px 20px;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
  background: var(--body-background);
  font-weight: 800;
}

.product-detail .middle .product-prop-detail {
  margin-top: -1px;
  padding: 10px 20px;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
  border-bottom: 1px solid var(--product-border-color);
}

.product-detail .right {
  margin-top: 10px;
  width: 100%;
  display: -ms-grid;
  display: grid;
}

.product-detail .right .product-prop {
  z-index: 2;
  width: 43%;
  padding: 10px 20px;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
  background: var(--body-background);
  font-weight: 800;
}

.product-detail .right .product-prop-detail {
  margin-top: -1px;
  padding: 10px 20px;
  border-top: 1px solid var(--product-border-color);
  border-left: 1px solid var(--product-border-color);
  border-right: 1px solid var(--product-border-color);
  border-bottom: 1px solid var(--product-border-color);
}

.contact {
  width: 75%;
  display: -ms-grid;
  display: grid;
}

.contact .left {
  width: 100%;
}

.contact .left a {
  text-decoration: none;
  color: var(--header-background);
}

.contact .left a:hover {
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration 250ms ease-in-out;
  transition: -webkit-text-decoration 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
}

.contact .right {
  margin-top: 30px;
  width: 100%;
  border: 1px solid var(--product-border-color);
}

.contact .right .map {
  width: 100%;
}

/* navigation styles start here */
header {
  text-align: center;
  position: fixed;
  z-index: 999;
  width: 100%;
}

header .logo {
  color: var(--header-text-color);
}

header .logo img {
  padding-top: 10px;
  width: 180px;
  height: 30%;
}

.dark-nav {
  background: var(--header-background);
}

/* changed this from the tutorial video to
   allow it to gain focus, making it tabbable */
.nav-toggle {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.nav-toggle:focus ~ .nav-toggle-label {
  outline: 3px solid rgba(var(--header-text-color), 0.75);
}

.nav-toggle-label {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 2em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--header-text-color);
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

nav {
  z-index: -1;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  background: var(--header-background);
  width: 100%;
  height: 100vh;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

nav ul {
  margin: 0;
  padding: 120px 0;
  list-style: none;
}

nav li {
  margin-bottom: 4em;
  margin-left: 1em;
}

nav a {
  color: var(--header-text-color);
  text-decoration: none;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
}

nav a:hover {
  color: var(--header-text-color-hover);
  -webkit-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}

.nav-toggle:checked ~ nav {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  -webkit-transition: opacity 250ms ease-in-out 250ms;
  transition: opacity 250ms ease-in-out 250ms;
}

.active {
  color: var(--header-text-color-hover);
}

/* Footer */
.primary-footer {
  margin-top: 20px;
  background: var(--primary-footer-background);
  color: var(--primary-footer-text-color);
  width: 100%;
  min-height: 50px;
  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;
}

.primary-footer .left {
  text-align: center;
}

.primary-footer .left .logo img {
  width: 50%;
}

.primary-footer a {
  text-decoration: none;
  color: var(--header-background);
}

.primary-footer a:hover {
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration 250ms ease-in-out;
  transition: -webkit-text-decoration 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out;
  transition: text-decoration 250ms ease-in-out, -webkit-text-decoration 250ms ease-in-out;
}

.secondary-footer {
  width: 100%;
  height: 30px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--secondary-footer-background);
  color: var(--secondary-footer-text-color);
}

/* Media Queries */
@media screen and (min-height: 500px) {
  .content-welcome .action-explore {
    margin-bottom: 100px;
  }
  .content-explore {
    height: 35vh;
  }
  .product-header {
    width: 90%;
    text-align: center;
  }
  .products {
    font-size: 0.8rem;
    width: 90%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
  .products .card-product {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
  .products .card-product .card-info {
    height: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
  }
  .products .card-product .card-info h3 {
    line-height: 50px;
    padding: 0 10px;
    text-align: left;
    margin: 0;
  }
  .products .card-product .card-info a {
    line-height: 50px;
    padding: 0 5px;
  }
  .sitemap {
    margin-top: 20vh;
    margin-bottom: 20px;
    width: 90%;
  }
  .sitemap h2 {
    margin: 0;
  }
  .sitemap a {
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--header-background);
  }
  .product-detail {
    margin-top: 0;
    width: 90%;
  }
  .product-detail .middle .product-prop {
    width: 100%;
  }
  .product-detail .right .product-prop {
    width: 100%;
  }
  .quality {
    width: 90%;
    padding: 0;
    overflow: hidden;
  }
  .quality .quality-info {
    width: 100%;
    text-align: left;
  }
  .quality .quality-badge {
    width: 100%;
    margin-bottom: -50px;
  }
  .quality .quality-badge:last-of-type {
    margin-bottom: 0;
  }
  .quality .quality-badge img {
    width: 100%;
  }
  .contact {
    width: 90%;
  }
  .contact .right .map {
    height: 250px;
  }
  header .logo img {
    padding-top: 8px;
    width: 130px;
    height: 30%;
  }
  nav ul {
    padding: 100px 0;
  }
  nav li {
    margin-bottom: 3em;
    margin-left: 1em;
  }
  .primary-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .primary-footer .left {
    text-align: center;
    width: 90%;
  }
  .primary-footer .left .logo img {
    width: 130px;
  }
  .primary-footer .middle, .primary-footer .right {
    width: 90%;
  }
}

@media screen and (min-height: 600px) {
  .content-welcome .action-explore {
    margin-bottom: 80px;
  }
  .content-explore {
    height: 40vh;
  }
  .product-header {
    width: 85%;
  }
  .products {
    width: 85%;
    font-size: 0.9rem;
  }
  .sitemap {
    width: 85%;
    margin-top: 18vh;
  }
  .product-detail {
    width: 85%;
  }
  .quality {
    width: 85%;
  }
  .contact {
    width: 85%;
  }
  nav ul {
    padding: 120px 0;
  }
  nav li {
    margin-bottom: 3.5em;
    margin-left: 1em;
  }
  .primary-footer .left, .primary-footer .middle, .primary-footer .right {
    width: 85%;
  }
}

@media screen and (min-height: 700px) {
  .sitemap {
    margin-top: 15vh;
  }
  nav ul {
    padding: 120px 0;
  }
  nav li {
    margin-bottom: 4.5em;
    margin-left: 1em;
  }
}

@media screen and (min-height: 1024px) and (min-width: 768px) {
  .content-explore {
    height: 50vh;
  }
  .product-header {
    width: 50%;
  }
  .products {
    width: 50%;
    font-size: 1rem;
  }
  .products .card-product .card-info {
    -ms-grid-columns: 1.5fr 1fr;
        grid-template-columns: 1.5fr 1fr;
  }
  .sitemap {
    width: 85%;
    margin-top: 12vh;
  }
  .product-detail {
    width: 70%;
  }
  .product-detail .middle .product-prop {
    width: 100%;
  }
  .product-detail .right .product-prop {
    width: 100%;
  }
  .quality {
    width: 85%;
    padding-top: 100px;
    overflow: hidden;
  }
  .quality .quality-badge {
    margin-top: -100px;
  }
  .quality .quality-badge img {
    width: 45%;
  }
  .contact {
    width: 85%;
  }
  .contact .right .map {
    height: 400px;
  }
  header .logo img {
    padding-top: 12px;
    width: 180px;
    height: 30%;
  }
  nav ul {
    padding: 200px 0;
  }
  nav li {
    margin-bottom: 7em;
    margin-left: 1em;
  }
  .primary-footer .left .logo img {
    width: 180px;
  }
  .primary-footer .left, .primary-footer .middle, .primary-footer .right {
    width: 85%;
  }
}

@media screen and (min-width: 1024px) {
  .content-welcome {
    background: rgba(var(--header-background), 0.5);
  }
  .content-welcome .video {
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .content-welcome .slogan {
    font-size: 3rem;
  }
  .content-welcome .action-explore {
    margin-bottom: 30px;
  }
  .content-explore {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .content-explore img {
    position: absolute;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: unset;
  }
  .product-header {
    width: 75%;
    padding-top: 20px;
    padding-left: 0;
    text-align: left;
  }
  .products {
    width: 75%;
    min-height: unset;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .products .card-product {
    width: 95%;
    margin-right: 0;
  }
  .products .card-product .card-info {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 1fr;
        grid-template-columns: 1.5fr 1fr;
  }
  .products .card-product .card-info h3 {
    padding-left: 10px;
    text-align: left;
    font-size: 0.9rem;
  }
  .sitemap {
    width: 75%;
  }
  .sitemap h2 {
    font-size: 1rem;
  }
  .sitemap a {
    font-size: 0.8rem;
  }
  .quality {
    width: 75%;
    min-height: 40vh;
    margin-top: 100px;
    margin-bottom: 10vh;
  }
  .quality .quality-info {
    padding-left: 15px;
  }
  .quality .quality-badge {
    width: 100%;
    margin-top: -100px;
    height: 100px;
  }
  .quality .quality-badge img {
    width: 25%;
  }
  .corporate {
    padding: 20px 0;
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .corporate .corp-head:first-of-type {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .corporate .corp-head:last-of-type {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .corporate .left-nav {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .corporate .left-nav .corp-nav {
    width: 100%;
    text-align: left;
  }
  .corporate .right {
    width: 70%;
    padding: 0 20px;
  }
  .corporate .right .about-us {
    padding: 0;
  }
  .corporate .right .culture {
    width: 100%;
  }
  .corporate .right .culture .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .corporate .right .culture .line .culture-card {
    width: 50%;
    height: 50%;
    margin-top: 20px;
    margin-left: 10px;
  }
  .corporate .right .culture .line .culture-card:first-child, .corporate .right .culture .line .culture-card:nth-child(3) {
    margin-left: 0;
  }
  .corporate .right .culture .line:last-of-type {
    margin-top: 0;
  }
  /* Product Detail */
  .product-detail {
    font-size: 0.9rem;
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-detail .left {
    width: 30%;
    height: 30%;
  }
  .product-detail .middle {
    margin-top: 0;
    margin-left: 10px;
    width: 35%;
  }
  .product-detail .middle .product-prop {
    width: 60%;
    padding-bottom: 0;
  }
  .product-detail .middle .product-prop-detail {
    padding-top: 20px;
    min-height: 50vh;
  }
  .product-detail .right {
    margin-top: 0;
    margin-left: 10px;
    width: 35%;
    height: 50vh;
  }
  .product-detail .right .product-prop {
    width: 70%;
    padding-bottom: 0;
  }
  .product-detail .right .product-prop-detail {
    padding-top: 20px;
    min-height: 50vh;
  }
  .contact {
    margin-top: 30px;
    margin-bottom: 10vh;
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 40vh;
  }
  .contact .left {
    width: 50%;
    padding-top: 80px;
    padding-right: 20px;
  }
  .contact .right {
    margin-top: 0;
    width: 50%;
    border: 1px solid var(--product-border-color);
  }
  .contact .right .map {
    width: 100%;
    height: 100%;
  }
  .nav-toggle-label {
    display: none;
  }
  header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto minmax(600px, 3fr) 1fr;
        grid-template-columns: 1fr auto minmax(600px, 3fr) 1fr;
  }
  header .logo img {
    width: 150px;
    height: 100%;
  }
  .logo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  nav {
    height: auto;
    /* the following lines are not from my video, but add Edge support */
    position: relative;
    text-align: left;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background: none;
    top: initial;
    left: initial;
    /* end Edge support stuff */
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  nav li {
    margin-left: 1em;
    margin-bottom: 0;
  }
  nav a {
    opacity: 1;
    position: relative;
    font-size: 1rem;
  }
  /* Footer */
  .primary-footer {
    background: var(--primary-footer-background);
    color: var(--primary-footer-text-color);
    width: 100%;
    min-height: 50px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 125px;
  }
  .primary-footer .left {
    text-align: left;
  }
  .secondary-footer {
    height: 50px;
  }
}

@media screen and (min-width: 1440px) {
  .product-header {
    width: 70%;
    padding-left: 15px;
  }
  .products {
    width: 70%;
  }
  .sitemap {
    width: 70%;
    padding-left: 15px;
  }
  .quality {
    width: 70%;
    margin-top: 50px;
  }
  .quality .quality-badge {
    margin-top: -100px;
  }
  .quality .quality-badge img {
    width: 30%;
  }
  .corporate {
    padding-left: 15px;
    width: 70%;
  }
  /* Product Detail */
  .product-detail {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-detail .middle .product-prop {
    width: 50%;
  }
  .product-detail .right .product-prop {
    width: 50%;
  }
  .contact {
    margin-bottom: 10vh;
    width: 70%;
    min-height: 50vh;
  }
  .contact .right .map {
    width: 100%;
    height: 100%;
  }
  header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto minmax(800px, 3fr) 1fr;
        grid-template-columns: 1fr auto minmax(800px, 3fr) 1fr;
  }
}

@media screen and (min-width: 1920px) {
  .content-welcome {
    background: rgba(var(--header-background), 0.5);
  }
  .content-welcome .video {
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .content-welcome .slogan {
    font-size: 4rem;
  }
  .content-welcome .action-explore {
    margin-bottom: 30px;
  }
  .content-explore {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .content-explore img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    height: auto;
  }
  .product-header {
    width: 70%;
  }
  .products {
    width: 70%;
  }
  .sitemap {
    width: 70%;
  }
  .quality {
    width: 60%;
    margin-top: 50px;
  }
  /* Product Detail */
  .product-detail {
    width: 68%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-detail .left {
    width: 30%;
  }
  .product-detail .middle {
    margin-top: 0;
    margin-left: 10px;
    width: 35%;
  }
  .product-detail .middle .product-prop {
    width: 40%;
  }
  .product-detail .middle .product-prop-detail {
    min-height: 50vh;
  }
  .product-detail .right {
    margin-top: 0;
    margin-left: 10px;
    width: 35%;
  }
  .product-detail .right .product-prop {
    width: 40%;
  }
  .product-detail .right .product-prop-detail {
    min-height: 50vh;
  }
  .contact {
    margin-top: 30px;
    width: 68%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 50vh;
  }
  .contact .left {
    width: 50%;
    padding-top: 125px;
  }
  .contact .right {
    margin-top: 0;
    width: 50%;
    border: 1px solid var(--product-border-color);
  }
  .contact .right .map {
    width: 100%;
  }
  .nav-toggle-label {
    display: none;
  }
  header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto minmax(1100px, 3fr) 1fr;
        grid-template-columns: 1fr auto minmax(1100px, 3fr) 1fr;
  }
  header .logo img {
    width: 180px;
    height: 100%;
  }
  .logo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  nav {
    height: auto;
    /* the following lines are not from my video, but add Edge support */
    position: relative;
    text-align: left;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background: none;
    top: initial;
    left: initial;
    /* end Edge support stuff */
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  nav li {
    margin-left: 3em;
    margin-bottom: 0;
  }
  nav a {
    opacity: 1;
    position: relative;
  }
  /* Footer */
  .primary-footer {
    background: var(--primary-footer-background);
    color: var(--primary-footer-text-color);
    width: 100%;
    min-height: 50px;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 300px;
  }
  .primary-footer .left {
    text-align: left;
  }
  .secondary-footer {
    height: 50px;
  }
}
/*# sourceMappingURL=main.css.map */