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


@font-face {
  font-family: 'oktaBold';
  src: url('../fonts/OktaNeue-BlackItalic.eot');
  src: url('../fonts/OktaNeue-BlackItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/oktaneue-blackitalic.otf') format('opentype'),
    url('../fonts/OktaNeue-BlackItalic.woff2') format('woff2'),
    url('../fonts/OktaNeue-BlackItalic.woff') format('woff'),
    url('../fonts/OktaNeue-BlackItalic.ttf') format('truetype'),
    url('../fonts/OktaNeue-BlackItalic.svg#OktaNeue-BlackItalic') format('svg');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Okta Neue';
  src: url('../fonts/OktaNeue-UltraLight.eot');
  src: url('..//fonts/OktaNeue-UltraLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/oktaneue-ultralight.otf') format('opentype'),
    url('../fonts/OktaNeue-UltraLight.woff2') format('woff2'),
    url('../fonts/OktaNeue-UltraLight.woff') format('woff'),
    url('../fonts/OktaNeue-UltraLight.ttf') format('truetype'),
    url('../fonts/OktaNeue-UltraLight.svg#OktaNeue-UltraLight') format('svg');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rowdies:wght@300;400;700&display=swap');


html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: 500;
  width: 100%;
  min-height: 100dvh;
}

/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}

*::-webkit-scrollbar-thumb {
  background: rgb(249, 192, 0);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(249, 192, 0) rgb(80, 80, 80);
}

/* END CUSTOM SCROLLBAR */

div,
section,
footer,
main {
  position: relative;
}

input,
textarea,
select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}

button,
.button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'oktaBold', 'Montserrat', sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  border-radius: 5px;
}

button:hover,
.button:hover {
  cursor: pointer;
  background-color: #fdbc28;
}

a {
  transition: .2s;
}

button:active,
.button:active,
a:active {
  transform: scale(0.95);
}

button:active,
.button:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}

body,
section,
header,
footer,
main {
  min-width: 1200px;
}

main {
  padding: 0;
  margin: 0;
  width: 100%;
}

a:hover,
.active {
  color: #fdbc28;
}

#menu-btn {
  display: none;
}

menu {
  display: none;
}

form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

form .half {
  width: 50%;
  border-bottom: 1px #eee solid;
  padding: 0;
}

form .third {
  width: 33.33%;
  border-bottom: 1px #eee solid;
  padding: 0;
}

form .half,
form .fullwidth,
form .third {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  transition: .3s;
}

form .half:focus-within,
form .fullwidth:focus-within,
form .third:focus-within {
  border-color: #fdbc28;
}

form .half:focus-within input,
form .fullwidth:focus-within input,
form .third:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea,
form .third:focus-within textarea {
  color: #000;
}

form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .third:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder,
form .third:focus-within textarea::placeholder {
  color: #333;
}

form .fullwidth {
  width: 100%;
  border-bottom: 1px #eee solid;
  padding: 0;
}

form input,
form textarea,
form select {
  border: none;
  width: 82%;
  padding: 10px;
  background: transparent;
}

form .half img,
form .fullwidth img,
form .third img {
  height: 26px;
}

form textarea {
  width: 90%;
  align-self: flex-start;
}

form .special img {
  align-self: flex-start;
}

.thin-txt {
  font-weight: 300;
}

.m-right {
  margin-right: 5%;
}

.m-left {
  margin-left: 5%;
}

.m-bottom {
  margin-bottom: 5%;
}

.m-top {
  margin-top: 5%;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}


.img-bg {
  background-position: center;
  background-size: cover;
}

.img-bg-top {
  background-position: center top;
  background-size: cover;
}

.img-bg-bottom {
  background-position: center bottom;
  background-size: cover;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'oktaBold', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 900;
}

p {
  line-height: 150%;
  position: relative;
}

li {
  line-height: 150%;
}

.modal {
  display: none;
  padding: 30px;
  min-width: 1000px;
}

.modal h3 {
  font-size: 1.8em;
}

.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

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

.center-align {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.bold-txt {
  font-family: 'oktaBold', 'Montserrat', sans-serif;
  ;
}

.thin-txt {
  font-weight: 300;
}

.f-button {
  min-width: 0;
}

.blur {
  filter: blur(10px);
}

.scaleDown {
  transform: scale(.8);
}

.max-txt {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}

.gray-txt {
  color: #f2f2f2;
}

.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}

.dark-gray-txt {
  color: #636363;
}

.dark-gray-bg {
  background-color: #bcbcbc;
}

.white-bg {
  background-color: #fff;
}

.white-txt {
  color: #fff;
}

.black-bg {
  background-color: #000;
}

.black-txt {
  color: #000;
}

.green-bg {
  background-color: #808d82;
}

.green-txt {
  color: #808d82;
}

.red-bg {
  background-color: #c62307;
}

.red-txt {
  color: #c62307;
}

.yellow-bg {
  background-color: #fdbc28;
}

.yellow-txt {
  color: #fdbc28;
}

.white-gray-bg-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(242, 242, 242, 1));
}

.transparent-gray-bg-gradient {
  background: linear-gradient(to right, transparent 50%, #dedede);
}

.black-gradient-bg {
  background: linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
  background: -moz-linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
}

.black-gradient-right {
  background: linear-gradient(to right, #000 50%, transparent 50%);
  background: -moz-linear-gradient(to right, #000 50%, transparent 50%);
}


/* Animations */
.scale-down {
  transform: scale(.9);
  filter: opacity(0) blur(5px);
  transition: transform 1.2s, filter 1.2s;
}

.scale-up {
  transform: scale(1.05);
  filter: opacity(0) blur(5px);
  transition: transform 1.2s, filter 1.2s;
}

.scale-normal {
  transform: scale(1) !important;
  filter: opacity(1) blur(0) !important;
}

.invisible {
  filter: opacity(0) blur(5px);
  transition: filter 1s;
}

.visible {
  filter: opacity(1) blur(0) !important;
}

.hide-left {
  transition: left 1.2s, filter 1.2s;
  left: -10vw;
  filter: opacity(0) blur(5px);
}

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

.hide-right {
  transition: right 1.2s, filter 1.2s;
  right: -10vw;
  filter: opacity(0) blur(5px);
}

.reveal-right {
  right: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.hide-bottom {
  transition: top 1.2s, filter 1.2s;
  top: 70px;
  filter: opacity(0) blur(5px);
}

.reveal-bottom {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.rotateOut {
  transform: rotate(360deg) scale(0);
}

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

.parallax {
  will-change: transform;
}

.showMenu {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.zoom {
  will-change: transform;
  transition: transform 0.1s ease-out;
  /* Smooth transition */
}

.slideIn {
  right: 0 !important;
  filter: blur(0) opacity(1) !important;
}

.fadeIn {
  filter: blur(0) opacity(1) !important;
  z-index: 6 !important;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(240, 161, 112, 0.5);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(240, 161, 112, 0.5);
  }

  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* Header */
#main-header {
  width: 100%;
  padding: 10px 5%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;

  /* navigation */
  nav {
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Logo */
    .logo-wrap {

      .logo {
        height: 60px;
        position: relative;
        cursor: pointer;
      }
    }

    /* Main Menu */
    menu {
      padding: 0;
      margin: 0;
      position: relative;
      display: flex;
      align-items: center;
      column-gap: 50px;
      font-family: 'oktaBold', 'Montserrat', sans-serif;

      a {
        color: #fff;
        text-decoration: none;
      }

      a:hover,
      a.active {
        color: #f9c000;
      }

      .dropdown {
        position: relative;
        display: inline-block;
      }

      .dropbtn {
        cursor: pointer;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: -15px;
        background: #000;
        min-width: 160px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
      }

      .dropdown-content a {
        display: block;
        padding: 10px 15px;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
      }

      .dropdown-content a:hover {
        background-color: #f0f0f0;
        color: #000;
      }

      .dropdown:hover .dropdown-content {
        display: block;
      }
    }

    /* Store Buttons */
    .shop-items {
      display: flex;
      align-items: center;
      column-gap: 15px;

      a {
        position: relative;
        display: flex;
        overflow: hidden;


        .icon {
          height: 22px;
        }

        .notify {
          width: 8px;
          height: 8px;
          position: absolute;
          bottom: 0px;
          right: 0px;
          border-radius: 50%;
          background-color: red;
          display: none;
        }
      }

    }
  }
}

.desktop-menu,
#desktop-menu-btn {
  display: none;
}

/* Hero Section */
.hero {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;

  img.bg {
    position: absolute;
    top: 0;
    height: 100vh;
    width: auto;
    left: 7%;
    z-index: 0;
  }

  .overlay {
    filter: opacity(.2);
    z-index: 1;
  }

  .content {
    width: 100%;
    z-index: 2;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    img.desktop-title {
      display: block;
      width: 100%;
      max-width: 750px;
    }

    img.mobile-title {
      display: none;
    }

    h1 {
      display: flex;
      flex-direction: column;
      margin-top: 0;
      margin-bottom: 0;
      line-height: 100%;
      font-size: 4em;
      color: #fff;
      row-gap: 15px;
      text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.5);

      span {
        position: relative;
        text-align: center;
      }
    }

    h1.mobile {
      display: none;
    }

    p {
      text-align: center;
      color: #fff;
      position: relative;
      text-transform: uppercase;
      font-size: 2em;
      text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.5);
    }
  }

  margin-top: 83px;
}

/* Home Page Section 1 */
.home .sec1 {
  padding: 60px 5%;
  min-height: fit-content;
  display: flex;
  align-items: center;
  column-gap: 5%;
  overflow: hidden;
}

.home .sec1 .left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.home .sec1 .left .top,
.home .sec1 .left .bottom {
  text-align: right;
}

.home .sec1 .left .bottom p {
  font-family: 'Okta Neue';
  font-weight: 200;
  font-style: normal;
  font-size: 1.4em;
}

.home .sec1 .left .bottom button {
  margin-left: auto;
}

.home .sec1 .left .bottom button img {
  height: 24px;
}

.home .sec1 .left .top h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.4em;
  line-height: 110%;
}

.home .sec1 .right {
  width: auto;
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  height: 400px;
}

.home .sec2 {
  padding: 5%;

  .sec-title {
    font-size: 1.8em;
    margin-top: 0;
    line-height: 100%;
    margin-bottom: 10px;
    font-family: 'oktaBold', 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 900;
  }

  .wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 60px;
    overflow-x: hidden;
    padding: 30px 0;
    padding-top: 20px;

    .swiper-slide {

      .img {
        padding: 40px 30px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        height: 400px;

        @media screen and (min-width: 1600px) {
          height: 450px;
        }

        .title {
          font-size: 1.8em;
          position: relative;
          font-family: 'oktaBold', 'Montserrat', sans-serif;
          font-style: italic;
          font-weight: 900;
          line-height: 100%;
        }

        button {
          min-width: 0;
        }

        .bottom {
          display: flex;
          flex-direction: column;
          row-gap: 15px;
        }
      }
    }
  }
}

.home .sec3 {
  padding: 0 5% 5%;
  width: 100%;

  h3 {
    font-size: 1.8em;
    margin-top: 0;
    line-height: 100%;
  }

  .product-grid-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2%;

    .product {
      display: flex;
      flex-direction: column;
      row-gap: 10px;
      transition: top .3s;
      top: 0;

      .img {
        height: 250px;
        overflow: hidden;
        border-radius: 5px;
      }

      @media screen and (min-width: 1600px) {
        .img {
          height: 350px;
        }
      }

      .title {
        font-family: 'oktaBold', 'Montserrat', sans-serif;
        font-style: italic;
      }

      .price {
        font-size: 1.2em;
        display: flex;
        align-items: center;
        column-gap: 5px;

        span {
          color: #cf9f04;
        }
      }
    }

    .product:hover {
      top: -10px;
      cursor: pointer;
    }
  }
}

.home {

  .call-to-action {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;

    img {
      margin-bottom: -4px;
    }

    @media screen and (max-width: 768px) {
      margin-bottom: 20px;
      margin-top: 40px;
    }
  }
}

.home .sec4 {
  width: 100%;
  padding: 0 5% 5%;

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2%;

    .product {
      display: flex;
      flex-direction: column;
      row-gap: 10px;
      transition: top .3s;
      top: 0;

      .img {
        height: 350px;
        overflow: hidden;
        border-radius: 5px;
      }

      @media screen and (min-width: 1600px) {
        .img {
          height: 350px;
        }
      }

      .title {
        font-family: 'oktaBold', 'Montserrat', sans-serif;
        font-style: italic;
      }

      button {
        min-width: 0 !important;
        border: 1px #000 solid;
        color: #000;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 10px;
        border-radius: 3px;
        font-size: 1em;
        padding: 10px 15px;
        width: 200px;

        img.icon {
          height: 16px;
        }
      }

      button:hover {
        border-color: #f9c000;
        color: #f9c000;
      }
    }

    .product:hover {
      top: -10px;
    }
  }
}


.home .insta {
  padding: 0 5% 5%;
}

.home .insta h4 {
  padding: 20px;
  font-size: 1.8em;
  line-height: 100%;
  margin-top: 0;
  color: #f9c000;
}

.home .insta p {
  margin-top: 0px;
}

.home .insta p a {
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: 1.2em;
}

.home .insta p a:hover {
  color: #bd0505;
}

.home .insta .images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.home .insta .images .img {
  width: 100%;
  height: 250px;
  transition: transform .3s, filter .3s, top .3s;
  top: 0;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

  @media screen and (min-width: 1600px) {
    height: 300px;
  }
}

.home .insta .images .img:hover {
  cursor: pointer;
  top: -10px;
}

.home .insta .images .img:active {
  transform: scale(.95);
}

.home .insta .images .img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.brand-promise {
  background-color: #E7E6E6;
  padding: 30px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-attachment: fixed;

  .item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    z-index: 1;
  }

  .item:last-of-type .left {
    border-radius: 50%;
    border: 2px #fff solid;
  }

  .item .left img {
    height: 80px;
    width: 80px;
    position: relative;

  }

  .item:last-of-type .left img {
    margin: -8px;
  }

  .item .right .title {
    font-size: 1.1em;
    line-height: 100%;
    margin-bottom: 10px;
  }

  .item .right .desc {
    max-width: 200px;
  }

  .bg-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    backdrop-filter: blur(20px);
    z-index: 0;
    background-color: rgb(0, 0, 0, 0.7);
  }
}

.page .hero {
  height: 40dvh;
}

/* Contact */

.contact .sec1 {
  padding: 70px 5%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  column-gap: 5%;
}

.contact .sec1 form {
  width: 47.5%;
  position: relative;
  text-align: left;
  align-items: flex-start;
}

.contact .sec1 .wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 47.5%;
  align-items: flex-start;

  h2 {
    margin-bottom: 0;
  }
}

.contact .sec1 .wrap>div {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 1.05em;
  font-weight: bold;
}

.contact .sec1 .wrap>div span {
  text-align: left;
  font-weight: 500;
}

.contact .sec1 .wrap>div .icon {
  height: 24px;
}

.contact .sec1 .wrap .main-title {
  font-size: 1.3em;
  margin-top: 30px;
}

.contact .sec1 h2 {
  margin-top: 0;
  font-size: 2em;
  text-transform: uppercase;
}

.contact .sec1 form h3 {
  font-size: 1.6em;
  margin-top: 0;
  font-weight: 500;
}

/* About Page */
.about .sec1 {
  padding: 5%;
  display: flex;
  flex-direction: column;
  row-gap: 80px;

  .top-sec {

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

    p {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    p.subtitle {
      font-size: 1.1em;
      margin-top: 0;
    }
  }

  .flex-standard {
    display: flex;
    align-items: center;
    column-gap: 10%;

    .left {
      width: 47.5%;
      text-align: left;

      h2 {
        font-size: 2.5em;
        text-transform: uppercase;
      }

      .subtitle {
        font-size: 1.2em;
        font-weight: 600;
      }

      button {
        display: flex;
        justify-content: center;
        margin-top: 30px;
      }
    }

    .right {
      max-width: 42.5%;
      width: 42.5%;
      background-position: center -80px;
      border-radius: 10px;
      min-height: 550px;
    }
  }


}

.moreInfo {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100dvh;
  z-index: 100;
  overflow-x: hidden;
  right: -50vw;
  filter: blur(10px) opacity(0);
  transition: filter .8s, right .8s;
  background-color: #000;
  padding: 5%;
  overflow-y: auto;

  #closeModal {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
    z-index: 8;
    height: 32px;
  }
}

/* Schools Page */
.schools,
.collection {

  .sec1 {

    .products {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      row-gap: 60px;
      width: 100%;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        transition: top .3s;

        .img {
          height: 300px;
          border-radius: 5px;
          overflow: hidden;
          top: 0;
          transition: top .3s;
          width: 100%;

          @media screen and (max-width: 568px) {
            height: 25vh;
            min-height: 220px;
          }

          @media screen and (min-width: 1600px) {
            height: 340px;
          }

          a {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
          }
        }

        .img:hover {
          top: -10px;
        }

        .title {
          font-size: 1em;
          font-weight: 700;
          text-align: left;
          font-family: 'oktaBold', 'Montserrat', sans-serif;
          font-style: italic;
          text-transform: capitalize;
        }

        .price {
          display: flex;
          font-weight: 600;
          justify-content: space-between;
          align-items: center;
          color: #cf9f04;
          font-size: 1.3em;
        }

        .size {
          display: flex;
          justify-content: flex-start;
          column-gap: 10px;
          align-items: center;
          font-size: .9em;
          font-weight: 500;

          span {
            position: relative;
            width: 50%;
            text-align: left;

            select {
              background: none;
              border: 1px #ddd solid;
              padding: 5px;
              width: 100%;
            }

          }
        }


        button {
          padding: 10px 15px;
          background-color: transparent;
          border: 1px #000 solid;
        }
      }

      .product:hover {
        cursor: pointer;
      }

    }
  }

}

.soweto {

  .sec1 {

    .products {
      display: flex;
      justify-content: center;
      gap: 20px;

      .product {
        .img {
          width: 205px;
        }
      }
    }
  }
}

/* Collection page */
.collection {

  .hero {
    height: fit-content;
    min-height: 0;
    overflow: hidden;

    .content {
      position: absolute;
      top: 0;
      width: 100%;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    img {
      width: 100%;
    }
  }

  .writeup {
    padding: 3% 5%;
    text-align: center;
    width: 100%;

    p {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1.05em;
    }

    background-color: #000;
    color: #fff;
  }

  .sec1 {

    .products {

      .product {

        .price {
          font-weight: 600;
          font-size: 1.3em;
        }
      }
    }
  }

  .sec1 {
    padding: 5%;
  }
}

/* Faith In Fashion page */
.faith-fashion {
  font-family: 'Montserrat', sans-serif;

  #main-header {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    nav {

      menu {

        a {
          color: #000;
          font-family: 'Montserrat', sans-serif;
          font-size: .9em;
        }

        .dropdown {
          position: relative;
          display: inline-block;
        }

        .dropbtn {
          cursor: pointer;
        }

        .dropdown-content {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          background: #fff;
          min-width: 160px;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          z-index: 1000;
        }

        .dropdown-content a {
          display: block;
          padding: 10px 15px;
          color: #000;
          text-decoration: none;
          white-space: nowrap;
        }

        .dropdown-content a:hover {
          background-color: #f0f0f0d8;
          color: #000;
        }

        .dropdown:hover .dropdown-content {
          display: block;
        }
      }
    }
  }

  #main-footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);

    .grid {

      .item {

        h5 {
          font-family: 'Montserrat', sans-serif;
          text-decoration: none;
          font-style: normal;
          font-weight: 700;
          text-transform: uppercase;
        }

        .page-links {

          a {
            color: #000;
          }
        }
      }
    }

    .legal {
      color: #000;

      a {
        color: #000;
      }
    }
  }

  .hero {
    padding: 3% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    margin-top: 0;

    .content {
      text-shadow: none !important;
      color: #000;
      display: block;
      position: relative;

      .image {
        width: 100%;
        height: fit-content;
        margin-top: 40px;

        img {
          display: flex;
        }
      }

      .logo-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;

        img {
          height: 100px;
          display: flex;
        }
      }

      h1 {
        text-shadow: none;
        text-align: center;
        color: #000;
        font-style: normal;
        font-family: 'Montserrat', sans-serif;
      }

      .subtitle {
        font-weight: 100;
        font-size: 1.4rem;
        text-align: center;
        margin-top: 10px;
      }

      .text {
        margin-top: 50px;

        p {
          text-wrap: balance;
          text-shadow: none;
          color: #000;
          font-size: 1rem;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
          text-transform: none;
        }

        p.bigger-title {
          font-size: 1.4rem;
          font-weight: 100;
          margin-top: 40px;
        }
      }
    }
  }


  .sec1 {
    padding: 0 5% 5%;

    .products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      row-gap: 60px;
      width: 100%;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        transition: top .3s;
        height: fit-content !important;
        overflow: hidden;

        .img {
          height: 50vh;
          overflow: hidden;
          top: 0;
          transition: top .3s, filter .3s ease;
          width: 100%;
          border: 1px #eee solid;

          a {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
          }
        }

        .img:hover {
          top: -10px;
        }

        .title {
          font-size: 1em;
          font-weight: 500;
          text-align: left;
          font-family: 'Montserrat', sans-serif;
          text-transform: uppercase;
        }

        .price {
          display: flex;
          font-weight: 600;
          justify-content: space-between;
          align-items: center;
          color: #000;
          font-size: 1.rem;
          font-weight: 100;

          .tag {
            display: flex;
            align-items: center;
            column-gap: 5px;
          }
        }

        .size {
          display: flex;
          justify-content: flex-start;
          column-gap: 10px;
          align-items: center;
          font-size: .9em;
          font-weight: 500;

          span {
            position: relative;
            width: 50%;
            text-align: left;

            select {
              background: none;
              border: 1px #ddd solid;
              padding: 5px;
              width: 100%;
            }

          }
        }
      }

      .product:hover {
        cursor: pointer;
      }

    }
  }

}

.city-of-tshwane {

  .hero {
    .content {
      h1 {
        font-size: 3em;
      }
    }
  }
  
  .sec1 {

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

/* Faith In Fashion page */
.hlogi {
  font-family: 'Montserrat', sans-serif;

  #main-header {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    nav {

      menu {

        a {
          color: #000;
          font-family: 'Montserrat', sans-serif;
          font-size: .9em;
        }

        .dropdown {
          .dropdown-content {
            background: #fff;
          }
        }
      }
    }
  }

  #main-footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);

    .grid {

      .item {

        h5 {
          font-family: 'Montserrat', sans-serif;
          text-decoration: none;
          font-style: normal;
          font-weight: 700;
          text-transform: uppercase;
        }

        .page-links {

          a {
            color: #000;
          }
        }
      }
    }

    .legal {
      color: #000;

      a {
        color: #000;
      }
    }
  }

  .hero {
    padding: 3% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    margin-top: 0;

    .content {
      text-shadow: none !important;
      color: #000;
      display: block;
      position: relative;

      .image {
        width: 100%;
        height: auto;
        margin-top: 40px;
      }

      h1 {
        text-shadow: none;
        text-align: center;
        color: #000;
        font-style: normal;
        font-family: 'Montserrat', sans-serif;
      }

      .subtitle {
        font-weight: 100;
        font-size: 1.4rem;
        text-align: center;
        margin-top: 10px;
      }

      .video-wrapper {
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 40px;

        video {
          height: 80vh;
          width: auto;
          max-width: 100%;
          background-color: #000;
          display: block;
        }
      }

      .text {
        margin-top: 50px;

        p {
          text-wrap: balance;
          text-shadow: none;
          color: #000;
          font-size: 1rem;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
          text-transform: none;
        }

        p.bigger-title {
          font-size: 1.4rem;
          font-weight: 100;
          margin-top: 40px;
        }

        .buttons {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 20px;
          margin-top: 30px;

          button {
            background-color: #fdbc28;
            color: #000;

            &:hover {
              background-color: #000;
              color: #fff;
            }
          }
        }
      }
    }
  }


  .sec1 {
    padding: 0 5% 5%;
  }

  button {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
  }

}



/* Single Faith Product Page */
.faith-product {

  .breadcrumb {
    font-size: .9em;
    padding: 25px 5% 15px !important;
    text-transform: uppercase;
  }

  .sec1 {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 15px 5% 5%;

    .left {
      width: 45%;
      height: fit-content;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      row-gap: 10px;


      img {
        position: relative;
      }
    }

    .right {
      width: 55%;
      padding-left: 5%;
      text-align: left;
      top: 60px;
      position: sticky;

      h2 {
        font-size: 2.5em;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-style: normal;
        text-wrap: balance;
        margin-bottom: 10px;
      }

      .category {
        font-weight: 500;
        font-size: 1.1em;
        text-transform: uppercase;
      }

      .price {
        font-size: 1.6em;
        font-weight: 500;
        color: #000;
        display: flex;
        align-items: center;
        column-gap: 8px;
      }

      .description {
        margin-bottom: 30px;
        margin-top: 20px;

        p {
          text-wrap: balance;
        }
      }

      .grid {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .color-title {
        font-weight: 700;
      }

      .color-grid {
        display: grid;
        margin-bottom: 20px;
        grid-template-columns: repeat(8, auto);
        /* 8 boxes per row */
        gap: 10px;
        margin-bottom: 20px;
        width: max-content;
        /* Fit to content */

        .color-box {
          width: 40px;
          height: 40px;
          cursor: pointer;
          border: 1px solid #eee;
          /* Light border */
          transition: border 0.2s;
        }

        .color-box.selected {
          border: 1px solid #000;
          /* Highlight selected */
        }
      }

      .size {
        display: flex;
        align-items: center;
        column-gap: 30px;
        margin-bottom: 20px;

        span:first-of-type {
          font-weight: 700;
        }

        select,
        input {
          padding: 7px 10px;
          border: 1px #000 solid;
          min-width: 0;
          background-color: #fff;
          font-weight: 400;
          font-size: .9em;
        }

        select {
          text-transform: capitalize;
        }

        input:disabled {
          background-color: #ddd;
          border-color: #808d82;
        }
      }

      button {
        border-radius: 0px;
        font-family: 'Montserrat', sans-serif !important;
        font-style: normal;
      }
    }
  }

  .related {
    padding: 2% 5% 5%;

    h3 {
      font-size: 2em;
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      text-transform: uppercase;
    }

    .grid5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2%;
      align-items: flex-start;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        transition: top .3s;
        top: 0;

        .img {
          height: 250px;
          overflow: hidden;
          border: 1px #eee solid;
        }

        @media screen and (min-width: 1600px) {
          .img {
            height: 350px;
          }
        }

        .title {
          text-transform: uppercase;
          font-size: 1em;
        }

        .price {
          font-size: 1em;
          color: #000;
          margin-top: -7px;

          .tag {
            display: flex;
            align-content: center;
            column-gap: 8px;

            img {
              position: relative;
            }

            span {
              position: relative;
              line-height: 100%;
            }
          }
        }

        .color {
          b {
            font-style: normal;
            font-family: 'Montserrat', sans-serif;
          }
        }
      }

      .product:hover {
        top: -10px;
        cursor: pointer;
      }
    }
  }
}

/* King Kanu page */
.king-kanu {
  font-family: 'Montserrat', sans-serif;

  #main-header {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

    nav {

      menu {

        a {
          color: #000;
          font-family: 'Montserrat', sans-serif;
          font-size: .9em;
        }
      }
    }
  }

  #main-footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);

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

      .item {

        img.logo {
          width: auto;
          height: 100px;
          max-width: none;
          min-width: none;
        }

        h5 {
          font-family: 'Montserrat', sans-serif;
          text-decoration: none;
          font-style: normal;
          font-weight: 700;
          text-transform: uppercase;
        }

        .page-links {

          a {
            color: #000;
          }
        }
      }
    }

    .legal {
      color: #000;

      a {
        color: #000;
      }
    }
  }

  .hero {
    padding: 3% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    margin-top: 0;

    .content {
      text-shadow: none !important;
      color: #000;
      display: block;
      position: relative;

      .logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;

        img {
          display: flex;
          height: 100px;
        }
      }

      .image {
        width: 100%;
        height: fit-content;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;

        >div {
          height: 550px;
        }

        img {
          display: flex;
        }
      }

      h1 {
        text-shadow: none;
        text-align: center;
        color: #000;
        font-style: normal;
        font-family: 'Montserrat', sans-serif;
        padding-left: 5%;
        padding-right: 5%;
      }

      .subtitle {
        font-weight: 100;
        font-size: 1.4rem;
        text-align: center;
        margin-top: 10px;
        padding-left: 5%;
        padding-right: 5%;
      }
      
      .subtitle-two {
        font-weight: 500;
        font-size: 1.4rem;
        text-align: center;
        margin-top: 60px;
        padding-left: 5%;
        padding-right: 5%;
        color: #fdbc28;
      }

      .text {
        margin-top: 50px;
        padding-left: 5%;
        padding-right: 5%;

        p {
          text-wrap: balance;
          text-shadow: none;
          color: #000;
          font-size: 1rem;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
          text-transform: none;
        }

        p.bigger-title {
          font-size: 1.4rem;
          font-weight: 100;
          margin-top: 40px;
          line-height: 110%;
        }
      }
    }
  }


  .sec1 {
    padding: 0 5% 5%;

    .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      row-gap: 60px;
      width: 100%;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        transition: top .3s;
        height: fit-content !important;
        overflow: hidden;

        .img {
          height: 60vh;
          overflow: hidden;
          top: 0;
          transition: top .3s, filter .3s ease;
          width: 100%;
          border: 1px #eee solid;

          a {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
          }
        }

        .img:hover {
          top: -10px;
        }

        .title {
          font-size: 1em;
          font-weight: 500;
          text-align: left;
          font-family: 'Montserrat', sans-serif;
          text-transform: uppercase;
        }

        .price {
          display: flex;
          font-weight: 600;
          justify-content: space-between;
          align-items: center;
          color: #000;
          font-size: 1.rem;
          font-weight: 100;
          margin-top: -10px;

          .tag {
            display: flex;
            align-items: center;
            column-gap: 5px;
          }
        }

        .size {
          display: flex;
          justify-content: flex-start;
          column-gap: 10px;
          align-items: center;
          font-size: .9em;
          font-weight: 500;

          span {
            position: relative;
            width: 50%;
            text-align: left;

            select {
              background: none;
              border: 1px #ddd solid;
              padding: 5px;
              width: 100%;
            }

          }
        }

        .color {
          b {
            font-style: normal;
            font-family: 'Montserrat', sans-serif;
          }
        }
      }

      .product:hover {
        cursor: pointer;
      }

    }
  }

}

/* Hlogi Mash Page */
.hlogi-product {

  .breadcrumb {
    font-size: .9em;
    padding: 25px 5% 15px !important;
    text-transform: uppercase;
  }

  .sec1 {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 15px 5% 5%;

    .left {
      width: 45%;
      height: fit-content;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      row-gap: 10px;


      img {
        position: relative;
      }
    }

    .right {
      width: 55%;
      padding-left: 5%;
      text-align: left;
      top: 60px;
      position: sticky;

      h2 {
        font-size: 2.5em;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-style: normal;
        text-wrap: balance;
        margin-bottom: 10px;
      }

      .category {
        font-weight: 500;
        font-size: 1.1em;
        text-transform: uppercase;
      }

      .price {
        font-size: 1.6em;
        font-weight: 500;
        color: #000;
        display: flex;
        align-items: center;
        column-gap: 8px;
      }

      .description {
        margin-bottom: 30px;
        margin-top: 20px;

        p {
          text-wrap: balance;
        }
      }

      .grid {
        display: flex;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
      }

      .color-title {
        font-weight: 700;
      }

      .color-grid {
        display: grid;
        margin-bottom: 20px;
        grid-template-columns: repeat(8, auto);
        /* 8 boxes per row */
        gap: 10px;
        margin-bottom: 20px;
        width: max-content;
        /* Fit to content */

        .color-box {
          width: 40px;
          height: 40px;
          cursor: pointer;
          border: 1px solid #eee;
          /* Light border */
          transition: border 0.2s;
        }

        .color-box.selected {
          border: 1px solid #000;
          /* Highlight selected */
        }
      }

      .size {
        display: flex;
        align-items: center;
        column-gap: 30px;
        margin-bottom: 20px;

        span:first-of-type {
          font-weight: 700;
        }

        select,
        input {
          padding: 7px 10px;
          border: 1px #000 solid;
          min-width: 0;
          background-color: #fff;
          font-weight: 400;
          font-size: .9em;
        }

        select {
          text-transform: capitalize;
        }

        input:disabled {
          background-color: #ddd;
          border-color: #808d82;
        }
      }

      button {
        border-radius: 0px;
        font-family: 'Montserrat', sans-serif !important;
        font-style: normal;
      }
    }
  }

  .related {
    padding: 2% 5% 5%;

    h3 {
      font-size: 2em;
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      text-transform: uppercase;
    }

    .grid5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2%;
      align-items: flex-start;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        transition: top .3s;
        top: 0;

        .img {
          height: 250px;
          overflow: hidden;
          filter: grayscale(1);
          transition: filter .3s ease;

          &:hover {
            filter: grayscale(0);
          }
        }

        @media screen and (min-width: 1600px) {
          .img {
            height: 350px;
          }
        }

        .title {
          text-transform: uppercase;
          font-size: 1em;
        }

        .price {
          font-size: 1em;
          color: #000;

          .tag {
            display: flex;
            align-content: center;
            column-gap: 8px;

            img {
              position: relative;
            }

            span {
              position: relative;
              line-height: 100%;
            }
          }
        }
      }

      .product:hover {
        top: -10px;
        cursor: pointer;
      }
    }
  }
}

/* Single School Page */
.single-school {

  .sec1 {
    padding: 5%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;

    .product {
      display: flex;
      align-items: flex-start;
      column-gap: 5%;

      .left {
        width: 60%;
        overflow: hidden;
        height: 70dvh;
        min-height: 500px;
        border-radius: 10px;
      }

      .right {
        width: 35%;

        .price {
          font-size: 2em;
        }

        .size {
          display: flex;
          align-items: center;
          column-gap: 50px;
          margin-bottom: 40px;

          span:first-of-type {
            min-width: 150px;
            font-weight: bold;
          }

          select,
          input {
            padding: 10px;
            border-radius: 3px;
            border: 1px #000 solid;
            min-width: 0;
            background-color: #fff;
            font-weight: 400;
          }

          .disabled {
            background-color: #f0f0f0 !important;
            cursor: not-allowed;
          }
        }
      }
    }
  }
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.grid5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.5%, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

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

.flex-standard {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
  flex-wrap: nowrap;
}

.flex-standard>.left,
.flex-standard>.right {
  width: 47.5%;
}

.box-title {
  text-align: center;
  padding: 15px 30px;
  font-size: 2em;
  margin-top: 0;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
}

/* Manufacturing Page */
.manufacturing {
  .sec1 {
    padding: 50px 5%;

    .flex3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;

      div {

        h3 {
          margin-top: 20px;
          font-size: 1.6em;
        }

      }
    }

    .grid3 {
      align-items: center;
      justify-content: center;
      gap: 30px;
      display: flex;
      flex-direction: column;
      row-gap: 10px;

      .item {
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 20px;
        width: 700px;
        padding: 10px;
        border: 1px #E7E6E6 solid;

        .right {
          width: 85%;

          .h2 {
            font-size: 1.4em;
            margin-top: 10px;
            font-weight: 500 !important;
            text-align: left;
          }

          p {
            font-size: 1.05em;
          }
        }

        .left {

          .number {
            font-size: 2em;
            font-weight: 900;
            margin-top: 0;
            position: relative;
            color: #fff;
            padding: 15px;
            background-color: #000;
            line-height: 100%;
            width: 54px;
            height: 54px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
          }
        }

      }
    }

    h2 {
      margin-top: 0px;
    }

    p.max-txt {
      font-size: 1.1em;
    }

    .grid5 {

      .item {
        height: 350px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        color: #fff;
        border-radius: 10px;
        overflow: hidden;

        .number {
          padding: 5px 10px;
          font-size: 2em;
          line-height: 100%;
          font-weight: 900;
          background-color: #000;
          color: #fff;
        }

        .text {
          font-size: 1.4em;
          font-weight: 700;
          text-align: left;
        }
      }
    }

    h3 {
      margin-top: 80px;
    }
  }

  .sec2 {
    padding: 20px 5% 50px;
    text-align: center;

    .flex3 {
      display: flex;
      flex-wrap: nowrap;
      column-gap: 20px;

      .item {
        overflow: hidden;
        width: 33%;
        height: 250px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 20px 30px;
        background-color: #eee;
        cursor: pointer;
        color: #fff;
        flex-direction: column;
        border-radius: 5px;

        @media screen and (min-width: 1600px) {
          height: 300px;
        }

        img {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          z-index: 0;
          object-fit: cover;
          transition: transform .3s;
        }

        .overlay {
          z-index: 1;
          filter: opacity(.85);
        }

        .desc,
        .title {
          z-index: 2;
        }

        .title {
          font-size: 1.6em;
          font-weight: 900;
          text-transform: uppercase;
          font-family: 'oktaBold', 'Montserrat', sans-serif;
          font-style: italic;
        }

        .desc {
          height: 40px;
          text-align: right;
          width: 90%;
        }

        .link-layer {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          z-index: 3;
          cursor: pointer;
        }
      }

      .item:active {
        transition: transform .3s;
        transform: scale(.95);
      }

      .item:hover img {
        transform: scale(1.05);
      }

      .item:hover {
        transition: box-shadow .3s;
        cursor: pointer;
        box-shadow: 4px 4px 8px 1px rgb(51, 51, 51, 0.5);
      }
    }

    p {
      font-size: 1.05em;
    }

  }

  .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

div.txt {
  display: none;
  text-align: left;
}

.rv-btn {
  font-size: 2.5em;
  cursor: pointer;
  padding-top: 5px;
}

.rv-btn .minus {
  display: none;
}

.button-flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
}


/* Sponsorships Page */
.flex-standard {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
  flex-wrap: nowrap;
}

.flex-standard>.left,
.flex-standard>.right {
  width: 47.5%;
}

.sponsorships .sec1 {
  padding: 50px 5%;
}

.sponsorships .sec1 p,
.resellers .sec1 p {
  font-size: 1.05em;
}

.sponsorships .sec1>p,
.resellers .sec1>p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sponsorships .sec1 .grid3 {
  margin-top: 40px;
  margin-bottom: 50px;
  align-items: flex-start;
  display: grid;
  justify-content: center;
  width: 100%;
  gap: 5%;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}

.sponsorships .sec1 .grid3 h3.box-title,
.resellers .sec1 .flex-standard h2 {
  font-size: 1.4em;
  display: block;
  text-align: left;
  padding: 15px 0;
  margin: 0;
  text-transform: uppercase;
}

.sponsorships .sec1 h4,
.resellers .sec1 h4 {
  font-size: 1.6em;
  text-transform: uppercase;
}

.sponsorships .sec1 .grid3 .top,
.resellers .sec1 .flex-standard .left .top,
.resellers .sec1 .flex-standard .right .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
}

.sponsorships .sec1 .grid3 .top .rv-btn,
.resellers .sec1 .flex-standard .item .top .rv-btn {
  padding-top: 0;
}


/* Resellers Page */
.resellers .sec1 {
  padding: 50px 5%;
}

.resellers .sec1 .flex-standard {
  margin-top: 60px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.resellers .sec1 .flex-standard h2 {
  display: inline-block;
}

.resellers .sec1 .flex-standard h3 {
  font-size: 1.4em;
}

b {
  font-family: 'oktaBold', 'Montserrat', sans-serif;
  font-style: italic;
}

.no-scroll {
  overflow: hidden !important;
}

/* Returns Page */
.returns .sec1 {
  padding: 60px 5%;
}

.returns .sec1 .centered {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.returns .sec1 .centered h2,
.returns .sec1 .centered h3 {
  font-size: 1.6em;
}

/* Shop Page */
.shop {
  .sec1 {
    padding: 5%;
    display: flex;
    align-items: flex-start;
    column-gap: 5%;

    .sidebar {
      width: 25%;
      position: sticky;
      min-height: 90vh;
      border: 1px #eee solid;
      top: 20px;

      .list {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        padding: 20px 30px;

        div {
          display: flex;
          align-items: center;
          column-gap: 10px;
          transition: .3s;

          img {
            height: 18px;
            display: none;
          }

        }

        div:hover {
          font-weight: 700;
          cursor: pointer;
          color: #cf9f04;
        }
      }

      h3 {
        margin-top: 0;
        margin-bottom: 0;
        padding: 20px 30px;
        border-bottom: 1px #eee solid;
        text-align: left;
        display: flex;
        align-items: center;
        column-gap: 10px;
      }
    }

    .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      row-gap: 60px;
      width: 70%;

      .product {
        display: flex;
        flex-direction: column;
        transition: top .3s;

        .img {
          height: 250px;
          border-radius: 5px;
          overflow: hidden;
          top: 0;
          transition: top .3s;
          margin-bottom: 10px;
        }

        @media screen and (min-width: 1600px) {
          .img {
            height: 350px;
          }
        }

        a {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
        }

        .img:hover {
          top: -10px;
        }

        .title {
          font-size: 1em;
          font-weight: 700;
          text-align: left;
          font-family: 'oktaBold', 'Montserrat', sans-serif;
          font-style: italic;
          margin-bottom: 5px;
          text-transform: capitalize;
        }

        .price {
          display: flex;
          font-weight: 600;
          justify-content: space-between;
          align-items: center;
          color: #cf9f04;
          font-size: 1.3em;

          .tag {
            display: flex;
            align-items: center;
            column-gap: 8px;
          }
        }

        .size {
          display: flex;
          justify-content: flex-start;
          column-gap: 10px;
          align-items: center;
          font-size: .9em;
          font-weight: 500;

          span {
            position: relative;
            width: 50%;
            text-align: left;

            select {
              background: none;
              border: 1px #ddd solid;
              padding: 5px;
              width: 100%;
            }

          }
        }


        button {
          padding: 10px 15px;
          background-color: transparent;
          border: 1px #000 solid;
        }
      }

      .product:hover {
        cursor: pointer;
      }
    }


  }
}

.page {

  .breadcrumb {
    padding: 30px 5%;
    display: flex;
    align-items: center;
    column-gap: 10px;

    a {
      text-decoration: none;
      color: #000;

      &:hover {
        color: #f9c000;
      }
    }
  }
}

/* Single Product Page */
.single-product {

  #main-header {
    position: relative;
  }

  .sec1 {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 5%;

    .left {
      width: 45%;
      height: 90vh;
      min-height: 640px;
      overflow: hidden;
      border-radius: 10px;

      .cover-link {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 0;
      }

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

        .thumbnail {
          width: 80px;
          height: 100px;
          border-radius: 4px;
          border: 1px #fff solid;
          cursor: pointer;

          a {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
          }
        }
      }
    }

    .right {
      width: 55%;
      padding-left: 5%;
      text-align: left;

      h2 {
        font-size: 2.5em;
        text-transform: capitalize;
      }

      .category {
        font-weight: 500;
        font-size: 1.1em;
        text-transform: uppercase;
      }

      .price {
        font-size: 1.8em;
        font-weight: 500;
        color: #cf9f04;
        display: flex;
        align-items: center;
        column-gap: 8px;
      }

      .description {
        margin-bottom: 40px;
        margin-top: 20px;

        p {
          text-wrap: balance;
        }
      }

      .size {
        display: flex;
        align-items: center;
        column-gap: 50px;
        margin-bottom: 20px;

        span:first-of-type {
          min-width: 200px;
          font-weight: bold;
        }

        select,
        input {
          padding: 10px;
          border-radius: 3px;
          border: 1px #000 solid;
          min-width: 0;
          background-color: #fff;
          font-weight: 400;
        }

        select {
          text-transform: capitalize;
        }

        input:disabled {
          background-color: #ddd;
          border-color: #808d82;
        }
      }
    }
  }

  .related {
    padding: 2% 5% 5%;

    h3 {
      font-size: 2em;
    }

    .grid5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2%;
      align-items: flex-start;

      .product {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        transition: top .3s;
        top: 0;

        .img {
          height: 250px;
          overflow: hidden;
          border-radius: 5px;
        }

        @media screen and (min-width: 1600px) {
          .img {
            height: 350px;
          }
        }

        .title {
          font-family: 'oktaBold', 'Montserrat', sans-serif;
          font-style: italic;
          text-transform: capitalize;
        }

        .price {
          font-size: 1.2em;
          color: #cf9f04;

          .tag {
            display: flex;
            align-content: center;
            column-gap: 8px;

            img {
              position: relative;
            }

            span {
              position: relative;
              line-height: 100%;
            }
          }
        }
      }

      .product:hover {
        top: -10px;
        cursor: pointer;
      }
    }
  }
}

.active-sidebar-link {
  font-weight: 700;
  color: #cf9f04;
}

.payment {

  #main-header {
    position: relative;
  }

  .sec1 {
    padding: 5%;

  }
}

/* Shop By Collection */
.collections {
  .sec1 {
    padding: 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;

    .left,
    .right {
      width: 100%;
      height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 10%;
      border-radius: 5px;
      overflow: hidden;

      @media screen and (min-width: 1600px) {
        height: 450px;
      }

      .title {
        font-size: 2em;
        font-family: 'oktaBold', 'Montserrat', sans-serif;
        font-style: italic;
        text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.5);
        line-height: 100%;
        text-wrap: balance;
      }

      .subtitle {
        font-size: 1.1em;
        text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.5);
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
      }

      .bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;

        .button-wrapper {

          button {
            min-width: 0;
            margin-left: auto;
            margin-right: auto;
          }
        }
      }
    }

    .left:first-of-type {
      background-position: center -120px;

      @media screen and (min-width: 1600px) {
        background-position: center -170px;
      }
    }
  }
}


.coolBeans,
.button-wrapper button {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  position: relative;
  border: none;
}

.coolBeans img,
.coolBeans span {
  position: relative;
  z-index: 2;
}

.coolBeans img.icon,
.button-wrapper button img.icon {
  height: 18px;
}

.coolBeans::after {
  background-color: #000;
  border-radius: 2rem;
  content: '';
  display: block;
  height: 140%;
  width: 140%;
  position: absolute;
  left: -10%;
  top: -10%;
  transform: translate(-100%, 0) rotate(5deg);
  transform-origin: top left;
  transition: 0.3s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.coolBeans:hover::after {
  transform: translate(0, 0);
  z-index: 0;
}

.coolBeans:hover {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

#main-footer {
  padding: 3% 5% 0;
  z-index: 4;

  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 50px;
    gap: 2%;

    img.logo {
      max-width: 80%;
    }

    .item {

      h5 {
        font-size: 1.4em;
        margin-top: 0;
      }

      .social-links {
        display: flex;
        align-items: center;
        column-gap: 10px;

        a img {
          height: 22px;
          position: relative;
          transition: .3s;
        }
      }

      .page-links {
        display: flex;
        flex-direction: column;
        row-gap: 7px;

        a {
          text-decoration: none;
          color: #fff;
        }

        a:hover {
          color: #f9c000;
        }
      }

      form .fullwidth input::placeholder {
        color: #808d82;
      }

      form .fullwidth {
        margin-bottom: 10px;

        input {
          color: #fff;
        }

        input::focus-within {
          color: #fff;
        }
      }

      form button {
        min-width: 0;
        padding: 10px;
      }

    }
  }

  .legal {
    text-align: center;
    font-size: .9em;
    padding: 20px 0;

    span {

      a {
        color: #fff;

        &:hover {
          color: #fdbc28;
        }
      }
    }
  }
}

/* Swiper Slider */
.swiper-container {
  overflow: visible;
  position: relative;
}

.swiper-slide {
  border-radius: 5px;
  background-color: #eee;
  transition: all .3s;
  transition-delay: .1s;
}

.swiper-slide .img {
  border-radius: 5px;
  max-width: 100%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider1 .swiper-slide .img {
  height: 350px;
  transition: .5s;
}

.slider1 .swiper-slide .img a,
.horizontal .swiper-slide .img a,
.slider3 .swiper-slide .img a,
.slider2 .swiper-slide .img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}

.swiper-slide .img img {
  position: relative;
  transition: .3s;
}

.swiper-slide .title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1em;
}

.swiper-slide .img:active {
  cursor: grabbing;
}

.swiper-slide:hover .img {
  margin-top: -10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  padding: 30px 10px;
  color: #fff;
  border-radius: 5px;
  transition: background .3s, transform .2s, filter .3s;
  background: rgb(0, 0, 0, 0.6);
  filter: opacity(1);
}

.swiper-container:hover .swiper-button-next::after,
.swiper-container:hover .swiper-button-prev::after {
  background: rgb(0, 0, 0, 0.6);
  filter: opacity(1);
}

@media screen and (max-width: 599px) {
  .swiper-slide img {
    max-width: 14rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .swiper-slide img {
    max-width: 10.5rem;
    border-radius: 2px;
  }
}

@media screen and (min-width: 765px) {

  html.lenis,
  html.lenis body {
    height: auto;
  }

  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }

  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }

  .lenis.lenis-stopped {
    overflow: hidden;
  }

  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }
}

.fancybox__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  overflow: visible;
}

.maragon {

  .hero {
    height: fit-content;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      display: flex;
    }
  }
}

.mzansi {
    #main-footer {
        .grid {
            align-items: flex-start;
            justify-content: space-between;
        }
    }
}