body {
  font-size: 14px;
}

body,
section,
header,
footer,
main {
  min-width: 0;
  width: 100%;
  overflow-x: hidden;
}

form .row {
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
}

form .half,
form .third {
  width: 100%;
}

input,
textarea,
select {
  font-size: .9em;
}

.is-compact .fancybox__content>.f-button.is-close-btn {
  width: 50px;
  min-width: 0;
  max-width: 50px;
  height: 50px;
  overflow: hidden;
}

form button {
  width: 100%;
  margin-bottom: 10px;
}

input,
textarea,
select {
  font-size: .9em;
}

.modal {
  min-width: 100%;
}

/* Menu */
/* Header */
#main-header {
  position: sticky;

  /* navigation */
  nav {

    /* Logo */
    .logo-wrap {

      .logo {
        height: 50px;
      }
    }

    /* Main Menu */
    menu {
      display: none;

    }

    .form {
      display: none;
    }

    /* Store Buttons */
    .shop-items {
      column-gap: 20px;

      a {

        .icon {
          height: 32px;
        }
      }

      #chk-btn {
        display: none;
      }

    }
  }
}

/* Desktop Menu */
.desktop-menu {
  position: fixed;
  left: -40%;
  filter: opacity(0);
  top: 0;
  width: 35%;
  padding: 5%;
  z-index: 100;
  height: 100vh;
  overflow: hidden;
  transition: left 1s, filter 1s;
  display: block;
}

.desktop-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 50px;
  font-size: 1.3em;
  position: relative;
  z-index: 2;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#desktop-menu-btn {
  width: 35px;
  position: relative;
  cursor: pointer;
  transition: all .3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

#desktop-menu-btn>div {
  height: 3px;
  position: relative;
  transition: all .3s;
  width: 100%;
}

#desktop-menu-btn:hover>div {
  background-color: #e1694e !important;
}

#desktop-menu-btn:hover>div.l2 {
  width: 60%;
}

#desktop-menu-btn:hover>div.l3 {
  width: 35%;
}

.desktop-menu a:hover {
  color: #e1694e !important;
}

#desktop-menu-btn:active {
  transform: scale(.9);
}

#desk-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  cursor: pointer;
  transition: all .5s;
  z-index: 2;
}

.desktop-menu .overlay {
  filter: opacity(.85);
}

.slide-left {
  left: 0 !important;
  filter: opacity(1);
}

.desktop-menu {
  left: -100%;
}

#desktop-menu-btn {
  width: 40px;
}

#desktop-menu-btn>div {
  height: 4px;
}

.desktop-menu {
  width: 100%;
  padding-top: 60px;
}


.hero {
  height: 60vh;

  .content {
    padding-top: 30px;

    h1 {
      font-size: 2.2em;

      span {
        display: flex;
        flex-direction: column;
      }
    }
  }
}

.home {

  .hero {
    height: fit-content;
    min-height: 60vh;

    .content {

      img.desktop-title {
        display: none;
      }

      img.mobile-title {
        display: block;
        width: 100%;
      }
    }

    h1.desktop {
      display: none;
    }

    h1.mobile {
      display: flex;
      font-size: 2.2em;
      display: flex;
      flex-direction: column;
    }

    .slider {
      .slide {
        background-position: center;
        background: transparent;

        .text {
          max-width: 100%;
          margin-left: auto;
          margin-right: auto;
          padding-left: 5%;
          padding-right: 5%;

          h2 {
            font-size: 2.5em;
          }
        }
      }

    }
  }

  .tagline {
    font-size: 1.2em;
  }

  .sec1 {
    flex-direction: column;
    row-gap: 20px;
    min-height: 0;
    height: fit-content;
    overflow: hidden;
    font-size: .9em;

    .products {
      grid-template-columns: repeat(2, 1fr);

      .product {

        .img {
          height: 280px;
        }
      }
    }

    h2 {
      font-size: 2em;
      margin-bottom: 0;
    }
  }

  .sec2 {
    margin-top: 40px;
  }

  .promos {
    font-size: .9em;

    h3 {
      font-size: 2em;
    }

    .grid {
      grid-template-columns: repeat(1, 1fr);

      .item {
        height: 280px;
      }
    }
  }
}


/* Footer */
#main-footer {
  padding: 60px 5% 20px;
  font-size: .9em;

  .grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 60px;

    .item {
      text-align: center;

      .social-links {
        justify-content: center;
      }
    }

    img.logo {
      max-width: 80%;
      height: 80px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .social-media {
    flex-direction: column;
    row-gap: 20px;

    .right {
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
      }
    }
  }
}

.page {

  .hero {
    height: 150px;

    .content {
      padding-top: 0;

      h1 {
        font-size: 1.6em;
      }
    }
  }

  .breadcrumb {
    font-size: .9em;
    padding: 20px 5%;
  }
}

/* Shop */
.shop {

  .filter {
    font-size: .9em;

    form {
      .inputs {
        grid-template-columns: repeat(2, 1fr);

        .item {

          label {
            font-size: 1em;
          }
        }
      }

      .buttons {
        button {
          width: 100%;
          min-width: 0;
          font-size: .9em;
        }
      }
    }
  }

  .sec1 {
    font-size: .9em;
    flex-direction: column;
    row-gap: 40px;
    overflow-y: visible;
    height: fit-content;
    overflow: hidden;

    .sidebar {
      position: relative;
      min-height: 0;
      width: 100%;

      .list {}
    }

    .products {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
      column-gap: 10px;

      .product {

        .img {
          height: 280px;
        }

        .size {
          flex-direction: column;
          row-gap: 10px;

          span {
            width: 100%;
          }
        }

        button {
          min-width: 0;
          font-size: .8em;
        }
      }
    }
  }
}

/* Single product page */
.single-product {
  #main-header {
    position: fixed;
    left: 0;
    top: 0;
  }

  .sec1 {
    flex-direction: column;
    row-gap: 40px;
    font-size: .9em;

    .left {
      width: 100%;
      height: auto;
      min-height: 400px;
      padding: 20px;

      .thumbnails {
        position: relative;
        z-index: 1;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
      }
    }

    .right {
      width: 100%;
      padding-left: 0;

      h2 {
        line-height: 120%;
        font-size: 1.8em;
      }

      .category {
        font-size: .9em;
      }

      .size {
        flex-direction: column;
        row-gap: 5px;

        span {
          width: 100%;

          select {
            width: 100%;
          }
        }
      }

      button {
        width: 100%;
      }
    }
  }

  .related {
    font-size: .9em;
    padding-bottom: 40px;

    h3 {
      font-size: 1.8em;
    }

    .grid5 {
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 40px;

      .product:hover {
        top: 0;
      }
    }
  }
}

.payments {
  .sec1 {
    flex-direction: column;
    row-gap: 40px;

    .left {
      width: 100%;

      h2 {
        font-size: 1.6em;
      }

      p {
        font-size: 1.1em;
      }
    }

    .right {
      width: 100%;
    }
  }
}

/* About Us Page */
.about {

  .sec1 {
    padding: 5%;
    flex-direction: column;
    row-gap: 40px;
    font-size: .9em;

    .left {
      width: 100%;
      height: 350px;
    }

    .right {
      width: 100%;

      h2 {
        font-size: 2em;
      }

      p {
        font-size: 1.1em;
      }
    }

  }
}

/* Contact Page */
.contact {

  .sec1 {
    padding: 60px 5%;
    width: 100%;
    flex-direction: column;
    row-gap: 60px;
    text-align: center;
    font-size: .9em;

    .left {
      width: 100%;

      h2 {
        font-size: 2em;
      }
    }

    .right {
      width: 100%;

      h2 {
        font-size: 2em;
      }
    }

    form {
      width: 100%;
    }
  }
}

/* Custom Designs Page */
.manufacturing {

  .sec1 {

    h2,
    h3 {
      font-size: 1.8em;
      line-height: 120%;
    }

    .flex3 {
      grid-template-columns: repeat(1, 1fr);
    }

    .grid3 {

      .item {
        width: 100%;

        .left {

          .number {
            font-size: 1.6em;
          }
        }

        .right {

          .h2 {
            font-size: 1.2em;
          }
        }
      }
    }
  }

  .sec2 {

    .box-title {
      font-size: 1.8em;
    }

    .flex3 {
      flex-direction: column;
      row-gap: 20px;

      .item {
        width: 100%;
      }
    }
  }
}

/* Sponsorship Page */
.sponsorships {

  .sec1 {

    .grid3 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
}

/* resellers Page */
.resellers {

  .sec1 {

    .flex-standard {
      flex-direction: column;
      row-gap: 20px;

      .left {
        width: 100%;
      }

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