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

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

body {
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 13px;
  width: 100%;
  min-height: 100dvh;
  background-color: #111111;
}

/* START CUSTOM SCROLL BAR */

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

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

*::-webkit-scrollbar-thumb {
  background: rgb(219, 188, 108);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(219, 188, 108) rgb(47, 80, 111);
}

/* END CUSTOM SCROLLBAR */

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

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

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

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

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 {
  min-width: 1200px;
}

main {
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 8;
}

a:hover {
  color: #dbbc6c;
}

#menu-btn {
  display: none;
}

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

form .half {
  width: 50%;
  padding: 0 5px;
  border-radius: 4px;
}

form .third {
  width: 33.33%;
  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: #dbbc6c;
}

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: #fff;
}

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: #fff;
}

form .fullwidth {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
}

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%;
  min-height: 100px;
  align-self: flex-start;
  padding: 0;
}

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: "Poppins", sans-serif;
  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: "Poppins", 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: #232323;
}

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

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

.white-txt {
  color: #fff;
}

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

.input-bg {
  background-color: #3d3d3d;
}

.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: #dbbc6c;
}

.yellow-txt {
  color: #dbbc6c;
}

.gold-bg {
  background-color: #bb8b10;
}

.blue-bg {
  background-color: #2f506f;
}

.blue-txt {
  color: #2f506f;
}

.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: 5px 2%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #000000;
  box-shadow: 0 8px 16px -4px #2f506f;

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

    .menu-btns {
      display: none;
      align-items: center;
      column-gap: 10px;
      color: #fff;
    }

    /* 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: "Poppins", sans-serif;

      a {
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1em;
        font-weight: 700;
      }

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

      /* Submenu container */
      .menu-item {
        position: relative;
        display: flex;
        align-items: center;

        a {
          display: inline-block;
        }

        .submenu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          background: #232323;
          border-radius: 0 0 6px 6px;
          min-width: 180px;
          padding: 10px 0;
          flex-direction: column;
          z-index: 20;

          a {
            padding: 8px 20px;
            text-transform: none;
            white-space: nowrap;
            text-transform: uppercase;
          }

          a:hover {
            background: rgba(219, 188, 108, 0.1);
            color: #dbbc6c;
          }
        }

        &:hover .submenu {
          display: flex;
        }
      }
    }

    /* Weather Bar */
    #weather-bar {
      color: #fff;
      font-size: 0.9em;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 8px 15px;
      text-transform: capitalize;
      white-space: nowrap;
      overflow: hidden;
      min-width: 365px;
      height: 36px;
      border-radius: 20px;
      opacity: 0;
      transition: .3s;
    }

    #weather-bar img {
      width: 20px;
      height: 20px;
      vertical-align: middle;
    }


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

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

.visible {
  opacity: 1 !important;
}

/* Desktop Menu */
.desktop-menu {
  display: none;
}

.search {
  position: fixed;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  opacity: 0;
  filter: blur(10px);
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  transition: top 0.5s ease, opacity 0.5s ease, filter 0.5s ease;

  &.show-search {
    top: 73px;
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
  }

  form {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: #fff;

    input {
      width: 800px;
      border: 2px #fff solid;
      border-radius: 50px;
      padding: 14px 30px;
      color: #fff;
      background-color: #232323;
    }

    button {
      min-width: 0;
      border: none;
      background: transparent;
      padding: 0;
      margin-left: -60px;

      img {
        height: 22px;
      }
    }
  }

  #close-search {
    position: absolute;
    right: 5%;
    top: 30px;
    height: 22px;
    cursor: pointer;
  }
}

/* Search Page */
.search-page {

  .result {
    z-index: 4;
    padding: 0 5%;
    text-align: center;
    overflow: hidden;

    h2 {
      font-weight: 700;
    }
  }

  .sec1 {
    min-height: 400px;
  }
}

/* Show state */
.search.show-search {
  top: 73px;
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}


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

#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: 2px;
  position: relative;
  transition: all .3s;
  width: 100%;
}

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

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

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

.desktop-menu a:hover {
  color: #dbbc6c !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);
}

/* 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: 3em;
      color: #fff;
      text-transform: uppercase;
      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);
    }
  }
}

/* Home Page Section 1 */
.home {
  .hero {
    height: 100vh;
    width: 100%;

    video {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      object-fit: cover;
      z-index: 0;
    }

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

    .content {
      flex-direction: column;
      width: 60%;
      align-items: flex-start;
      padding-left: 5%;
      row-gap: 60px;
      z-index: 2;

      h1 {
        text-transform: none;
        font-size: 5.5em;
        margin-top: 40px;
        font-weight: 900;
        line-height: 90%;
        text-wrap: balance;

        @media screen and (min-width: 1600px) {
          font-size: 7em;
        }
      }

      button {
        font-size: 1.2em;
      }
    }

    .a-map {
      position: absolute;
      height: 80%;
      right: 15%;
      bottom: 0;
      z-index: 7;
    }
  }

  .channel-cards {
    padding: 5% 5% 40px;

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

    .grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;

      .card {
        padding: 20px;
        height: 400px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        row-gap: 20px;
        color: #fff;
        background-color: #232323;
        border-radius: 5px;

        .overlay {
          filter: opacity(.5);
          width: 105%;
        }

        .title {
          font-weight: 700;
          font-size: 2em;
          text-wrap: balance;
          text-align: center;
          line-height: 100%;
        }

        .desc {
          text-align: center;
          text-wrap: balance;
          font-size: 1.1em;
        }
      }
    }
  }

  .archive-cards {
    padding: 3% 5% 0;

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

    .wrapper {
      display: flex;
      width: 100%;
      flex-direction: column;
      gap: 60px;
      overflow: hidden;
      padding: 40px 20px;
      margin-left: auto;
      margin-right: auto;
      margin-top: -40px;

      .swiper-slide {

        .img {
          height: 180px;

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

          @media screen and (max-width: 758px) {}
        }

        .title {
          font-size: 1.2em;
          font-weight: 700;
          margin-bottom: 5px;

        }

        .info {
          display: flex;
          align-items: center;
          column-gap: 10px;
          text-transform: capitalize;
        }
      }
    }
  }

  .story-cards {
    padding: 3% 5% 5%;

    .mobile-news-slider {
      display: none;
    }

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

    .wrap {
      height: 80vh;
    }

    .news-slider {
      display: flex;
      gap: 32px;
      height: 100%;
      align-items: stretch;

      .main-article {
        flex: 2;
        background: #232323;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;

        .hero {
          width: 100%;
          height: 60%;
          object-fit: cover;
          display: block;
        }

        .main-content {
          padding: 20px;
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;

          h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            line-height: 120%;
            font-weight: 700;
          }

          .meta {
            font-size: 0.9rem;
            color: #bfbfbf;
            margin-bottom: 12px;
          }

          p {
            color: #cfcfcf;
            line-height: 1.45;
            margin-bottom: 18px;
            max-height: 6.6rem;
            overflow: hidden;
          }

          .read-more {
            align-self: flex-start;
            padding: 10px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;

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

      .article-list {
        flex: 1;
        min-width: 45%;
        background: #232323;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;

        .viewport {
          flex: 1;
          overflow: hidden;
          position: relative;

          .articles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            transition: transform 700ms cubic-bezier(.2, .9, .2, 1);

            .article {
              display: flex;
              gap: 12px;
              align-items: center;
              padding: 10px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.04);
              background: transparent;

              img.thumb {
                width: 140px;
                height: 110px;
                object-fit: cover;
                border-radius: 8px;
                flex-shrink: 0;
              }

              .article-info {
                overflow: hidden;

                h3 {
                  font-size: 1.4em;
                  line-height: 1.05;
                  margin-bottom: 6px;
                  text-wrap: balance;
                  font-weight: 700;
                }

                .date {
                  font-size: 0.82rem;
                  color: #a8a8a8;
                }
              }
            }
          }
        }

        .controls {
          position: absolute;
          right: 8px;
          top: 8px;
          display: flex;
          flex-direction: column;
          gap: 8px;
          z-index: 4;

          .btn {
            all: unset;
            width: 36px;
            height: 36px;
            min-width: 0;
            border-radius: 50%;
            border: none;
            background: #2f506f;
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            display: grid;
            place-items: center;

            &:hover {
              background-color: #dbbc6c;
            }
          }
        }
      }
    }
  }


  .call-to-action {
    display: flex;
    align-items: center;
    column-gap: 5%;
    padding: 5%;
    margin-bottom: 2rem;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 20px;
    overflow: hidden;
    min-width: 0;

    .left {
      width: 70%;

      .title {
        font-weight: 900;
        font-size: 4em;
        margin-bottom: 20px;
      }

      button {
        font-size: 1.2em;
      }
    }

    .right {
      width: 25%;

      img {
        height: 200px;
        padding: 10px;
        background-color: #fff;
      }
    }
  }
}

/* live stream page */

.live {

  .livestream {
    padding: 100px 0 2%;
    margin-bottom: 100px;

    .g-logo {
      position: absolute;
      bottom: 40px;
      right: 40px;
      width: 80px;
      height: auto;
    }

    .nnatv-logo {
      position: absolute;
      top: 40px;
      right: 40px;
      width: 80px;
      height: auto;
    }

    .frame-wrap {
      width: 100%;
      height: fit-content;
      overflow: hidden;
      width: 100%;
    }

    iframe {
      pointer-events: all !important;
      height: 90vh;
      overflow: hidden;
    }

    .info {
      padding: 40px 5%;
      display: flex;
      column-gap: 40px;

      .left {
        width: 20%;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
      }

      .right {
        width: 55%;

        h1 {
          margin-top: 0;
          font-size: 2.5em;
        }

        p {
          font-size: 1.1em;
          text-wrap: balance;
        }
      }
    }

    .schedule-wrap {
      padding: 20px 0;

      .channel-header {
        padding-left: 5%;
        padding-right: 5%;

        .live-icon {
          background-color: red;
          color: #fff;
          padding: 3px 8px;
          font-size: .9em;
          border-radius: 4px;
          font-weight: 500;
          display: inline-block;

          strong {
            margin-top: 5px;
          }
        }

        h2 {
          margin-top: 10px;
          margin-bottom: 10px;
        }
      }
    }
  }
}

.watch-live {
  .sec1 {
    padding: 0 5% 5%;
    margin-bottom: 100px;


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

      .channel {
        height: 50vh;

        .description {
          max-width: 50%;
        }
      }
    }

    .grid2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;

      .channel {
        height: 45vh;
      }
    }

    .channel {
      position: relative;
      padding: 20px;
      color: #fff;
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      justify-content: flex-end;

      .title {
        font-size: 1.6em;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .description {
        text-wrap: balance;
        margin-bottom: 10px;
      }

      &::before {
        content: '';
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: none;
      }

      >* {
        position: relative;
        z-index: 1;
      }
    }
  }
}


.page .hero {
  height: 100px;
  margin-top: 95px;
}

.text-page {
  .sec1 {
    padding: 5%;
    text-align: center;
    margin-bottom: 100px;

    p {
      text-wrap: balance;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    ul li::before {
      content: "• ";
      color: #fff;
    }

    a {
      color: #2f506f;

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

/* Contact Page */
.contact {

  .sec1 {
    padding: 5% 10%;

    .grid {
      display: flex;
      align-items: flex-start;
      column-gap: 100px;
      justify-content: center;
      margin-bottom: 90px;

      .item {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        column-gap: 20px;
        width: 250px;

        .righ {

          .title {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 10px;
          }

          .info {
            font-size: 1em;
          }
        }
      }
    }

    .legal {
      text-align: center;
      text-wrap: balance;
      max-width: 800px;
      margin: 0 auto 90px;

      p {
        font-size: 1.4em;
      }
    }

    .flex {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      column-gap: 5%;

      .left {
        width: 47.5%;

        .title {
          font-size: 4em;
          font-weight: 700;
          margin-bottom: 30px;
          text-align: center;
        }

        .img-wrap {
          width: 100%;
          max-width: 450px;
          margin-right: auto;
          margin-left: auto;
          padding-bottom: 80px;

          .left-pic {
            position: absolute;
            left: 0;
            top: 0;
            width: 70%;
            height: 350px;
            border-radius: 10px;
          }

          .img {
            width: 70%;
            top: 60px;
            margin-left: 30%;
            margin-right: auto;
            height: 350px;
            border-radius: 10px;
          }
        }
      }

      .right {
        width: 47.5%;
        z-index: 0;
        text-align: left;

        p {
          font-size: 1.2em;

          b {
            font-size: 1.2em;
          }
        }

        form {
          margin-top: 40px;

          .fullwidth,
          .half {
            background-color: #232323;
            color: #fff;

            input,
            select,
            textarea {
              color: #fff;
            }

            textarea {
              padding-left: 10px;
            }
          }
        }
      }
    }

    .partner {
      padding: 10px 5% 0;
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 80px;
    }
  }
}

/* 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 {

  .breadcrumb {
    justify-content: center;
  }

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

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

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

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

        .title {
          font-size: 1em;
          text-align: left;
          font-family: "Poppins", sans-serif;
          text-transform: uppercase;
        }

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

    }
  }

}

/* Collection page */
.collection {

  .hero {
    height: 150px;
    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% 0;
    text-align: center;
    width: 100%;

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

  .sec1 {

    .products {

      .product {

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

  .sec1 {
    padding: 5%;
  }
}


.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: "Poppins", 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: "Poppins", sans-serif;
}

.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 {

  .filter {
    padding: 0 5% 3%;
    color: #fff;

    p {
      text-align: center;
    }

    form {
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;

      .inputs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        justify-content: center;

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

          input,
          select {
            width: 100%;
            background-color: #232323;
            border-radius: 5px;
            color: #fff;
          }

          label {
            font-weight: 500;
            font-size: 1.2em;
          }
        }
      }

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

  .sec1 {
    padding: 20px 5% 5%;
    margin-bottom: 100px;

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

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

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

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

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

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

        .title {
          font-size: 1em;
          text-align: left;
          font-family: "Poppins", sans-serif;
          margin-bottom: 5px;
          text-transform: capitalize;
          font-weight: 700;
          line-height: 120%;
        }

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

          }
        }

        .info {
          display: flex;
          align-items: center;
          column-gap: 10px;
          text-transform: capitalize;
          font-size: .9em;
        }

        .topic {
          text-align: left;
          font-size: .9em;
          line-height: 120%;
        }


        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: #fff;

      &:hover {
        color: #dbbc6c;
      }
    }

    span {
      text-transform: capitalize;
    }
  }
}

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

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

    margin-top: 75px;
    font-weight: 500;

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

  .sec1 {
    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;
        border-radius: 5px;
      }

      video {
        width: 100%;
        height: fit-content;

      }
    }

    .right {
      width: 55%;
      padding-left: 5%;
      text-align: left;
      top: 0;
      position: relative;

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

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

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

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

        p {
          text-wrap: balance;

          strong {
            font-weight: 700;
          }
        }
      }

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

        b {
          font-weight: 700;
        }
      }

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

      .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 {
        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: capitalize;
    }

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

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

        .img {
          height: 120px;
          overflow: hidden;
          border-radius: 5px;
          margin-bottom: 10px;
        }

        .info {
          display: flex;
          align-items: center;
          column-gap: 10px;
          text-transform: capitalize;
          font-size: .9em;
        }

        .topic {
          text-align: left;
          font-size: .9em;
          line-height: 120%;
        }

        .title {
          font-size: 1em;
          text-align: left;
          font-family: "Poppins", sans-serif;
          margin-bottom: 5px;
          text-transform: capitalize;
          font-weight: 700;
          line-height: 120%;
        }

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

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

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

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

            img {
              position: relative;
            }

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

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

/* News Page */
.news-page {

  .filter {
    padding: 0 5% 3%;
    color: #fff;

    p {
      text-align: center;
    }

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

      .inputs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: center;

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

          input,
          select {
            width: 100%;
            background-color: #232323;
            border-radius: 5px;
            color: #fff;
          }

          label {
            font-weight: 500;
            font-size: 1.2em;
          }
        }
      }

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

  .sec1 {
    padding: 20px 5% 5%;
    display: block;
    margin-bottom: 100px;

    .posts-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;

      .post {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        padding: 15px;
        border-radius: 5px;
        background-color: #232323;

        .img {
          height: 100%;
          min-height: 200px;
          border-radius: 5px;
          object-fit: cover;
          width: 100%;

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

        .right {
          text-align: left;
          height: 100%;

          .category {
            background-color: #cf9f04;
            color: #000;
            padding: 5px;
            display: inline-block;
            border-radius: 2px;
          }

          .title {
            font-size: 1.6em;
            font-weight: 700;
            line-height: 100%;
            margin-top: 15px;
          }

          .excerpt {
            font-size: 1em;
            margin-top: 10px;
            margin-bottom: 20px;
          }

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

        .post {
          display: grid;
          grid-template-columns: 1fr 1fr;
          align-items: stretch;
          min-height: 250px;
        }

        @media screen and (max-width: 900px) {
          .post {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
          }

          .img {
            height: 250px;
            min-height: 150px;
            width: 100%;
          }
        }
      }
    }
  }
}

/* Single News Post Page */
.single-post {

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

    margin-top: 75px;
    font-weight: 500;

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

  .sec1 {
    display: flex;
    align-items: flex-start;
    padding: 15px 5% 5%;
    column-gap: 5%;

    .side-ad {
      width: 25%;
      height: fit-content;
    }

    .article {
      width: 100%;

      h2 {
        font-size: 2.5em;
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        font-style: normal;
        text-wrap: balance;
        max-width: 1000px;
        margin-bottom: 10px;
        line-height: 100%;
        text-align: left;
      }

      >p {
        text-align: left;
      }

      .left,
      .gallery {
        width: 100%;
        max-width: 900px;
        height: fit-content;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        row-gap: 10px;


        img {
          position: relative;
          border-radius: 5px;
        }

        video {
          width: 100%;
          height: fit-content;

        }
      }

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

      .gallery {
        margin-top: 60px;
      }

      .right {
        width: 100%;
        max-width: 900px;
        text-align: left;
        margin-top: 20px;

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

          p {
            text-wrap: balance;
            margin-top: 20px;
            margin-bottom: 20px;
            text-align: left;

            strong {
              font-weight: 700;
              font-size: 1.2em;
            }
          }


          figure {
            max-width: 100%;
            width: 100%;
            margin-left: 0;
            margin-right: 0;

            img {
              width: 100%;
              display: flex;
              padding: 0;
              margin: 20px 0 !important;
            }
          }
        }

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

          b {
            font-weight: 700;
          }
        }

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

        .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 {
          font-family: 'Montserrat', sans-serif !important;
          font-style: normal;

        }
      }
    }
  }

  .related {
    padding: 0 5% 5%;
    margin-bottom: 0;

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

    .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: 25vh;
          overflow: hidden;
          border-radius: 5px;
        }

        .info {
          display: flex;
          align-items: center;
          column-gap: 10px;
          text-transform: capitalize;
        }

        .title {
          text-transform: capitalize;
          font-size: 1em;
          font-weight: 700;
          line-height: 120%;
        }

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

          .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 {

  .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: "Poppins", sans-serif;
        text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.5);
        line-height: 100%;
        font-weight: 900;
      }

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

      .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: #dbbc6c;
  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: #000;
  border-color: #000;
  background-color: #000;
}

.ad {
  margin-bottom: 30px;
  width: 100%;
  min-height: 10s0px;
  display: none !important;
  padding: 20px 5%;
}

/* Curve Above Footer */
.curve-wrap {
  position: relative;
  height: 6.25rem;
  /* controls curve depth */
  overflow-x: hidden;
  z-index: 1;
  margin-top: 0;
}

/* Holds the oversized curve */
.curve-container {
  position: absolute;
  inset: 0;
}

/* The actual curved shape */
.curve-shape {
  position: absolute;
  top: 0;
  height: 100%;

  display: flex;
  align-items: center;

  border: .25rem solid transparent;
  border-bottom: none;

  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;

  background:
    radial-gradient(50% 500% at 50% -420%,
      rgba(64, 97, 231, 0.4) 80%,
      rgba(0, 0, 0, 0.1) 100%),
    #000000;

  background-clip: padding-box;
  box-sizing: border-box;
}

/* Gradient edge glow */
.curve-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  margin-top: -.25rem;
  border-radius: inherit;

  background: linear-gradient(to right,
      rgba(18, 34, 48, 1) 16%,
      /* darker edge */
      rgba(47, 80, 111, 1),
      /* base blue */
      rgba(78, 130, 180, 1),
      /* highlight peak */
      rgba(47, 80, 111, 1),
      rgba(18, 34, 48, 1) 84%);

}

/* Responsive width trick — THIS creates the arch */
@media all {
  .curve-shape {
    width: 200%;
    left: -50%;
  }
}

@media (min-width: 600px) {
  .curve-shape {
    width: 180%;
    left: -40%;
  }
}

@media (min-width: 960px) {
  .curve-shape {
    width: 150%;
    left: -25%;
  }
}

@media (min-width: 1280px) {
  .curve-shape {
    width: 130%;
    left: -15%;
  }
}

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


  .grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;

    img.logo {
      max-width: 200px;
    }

    .item {}

    .socials {
      display: flex;
      align-items: center;
      column-gap: 30px;
      justify-content: center;

      img {
        height: 24px;
      }
    }

    .links {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 40px;
      margin-top: 20px;
      margin-bottom: 20px;

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

  .legal {
    text-align: center;
    font-size: .85em;
    color: #fff;
    padding: 40px 0 20px;

    span {

      a {
        color: #fff;

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

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

.swiper-slide {
  transition: all 300ms ease-in-out;
}

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

.slider1 .swiper-slide .img {
  height: 200px;
}

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

.slider2 .swiper-slide .img {
  height: 130px;
}

.horizontal .swiper-slide .img {
  height: 150px;
}

.slider3 .swiper-slide .img {
  height: 180px;
}

.swiper-slide .img img {
  position: relative;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-color: rgb(0, 0, 0, 0.4);
  transition: transform .3s;
}

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

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

.swiper-slide:hover {
  transform: translateY(-10px);
  transition: all .3s;
  transition-delay: .1s;
  z-index: 1;
}

.swiper-slide:hover img {
  transform: rotate(360deg);
}

.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: #bb8b10;
  border-radius: 5px;
  transition: background .3s, transform .2s, filter .3s;
  filter: opacity(1);
  background: rgb(0, 0, 0, 0.8);
}

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

#cart-btn {
  display: none !important;
}

.ultra-stream {

  /* Hero */
  .hero-ultra {
    height: 95vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right,
        rgba(18, 34, 48, 1),
        rgba(47, 80, 111, 1),
        rgba(78, 130, 180, 1),
        rgba(47, 80, 111, 1),
        rgba(18, 34, 48, 1)) 1;
  }

  .hero-ultra .overlay {
    filter: opacity(0.7);
  }

  .hero-content {
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
  }

  .hero-ultra h1 {
    font-size: 64px;
    margin-bottom: 10px;
  }

  .hero-ultra p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .hero-ultra .btn {
    padding: 14px 26px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
  }

  /* ---------- ROWS ---------- */
  .content {
    padding: 80px 2% 50px;
  }

  .row {
    position: relative;
    margin-bottom: 70px;
  }

  .row-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 60px 15px;
  }

  .slider {
    display: flex;
    gap: 16px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  .card {
    flex: 0 0 auto;
    width: 320px;
    transition: .25s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
  }

  .card .title {
    margin-top: 8px;
    font-weight: 600;
  }

  /* ---------- ARROWS ---------- */
  .slider-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .7);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    min-width: 0;
    padding: 10px;
    line-height: 100%;
    border-radius: 50%;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  /* ---------- MODAL ---------- */
  .us-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 200;
  }

  .us-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .us-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
  }

  .us-modal-box {
    position: relative;
    max-width: 900px;
    margin: 5vh 0;
    background: #0b0e14;
    border-radius: 8px;
    overflow: hidden;
    animation: usPop .25s ease;
    width: 100%;
  }

  .us-modal-meta {
    margin: 6px 0 14px;
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .us-modal-meta span {
    white-space: nowrap;
  }

  .us-modal-meta span::after {
    content: "•";
    margin: 0 6px;
    opacity: 0.5;
  }

  .us-modal-meta span:last-child::after {
    content: "";
    margin: 0;
  }

  /* Play, Close, Mute icons */
  .play-btn svg,
  .close-btn svg,
  .us-modal-mute svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  .us-modal-mute svg {
    vertical-align: middle;
  }

  .close-btn svg {
    width: 24px;
    height: 24px;
  }


  .play-btn svg {
    margin-right: 0;
  }

  .us-modal-mute svg {
    margin: 0;
    /* Remove extra spacing for mute button */
  }



  @keyframes usPop {
    from {
      transform: scale(.95);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .us-modal-bg {
    height: 360px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .us-modal-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
    z-index: 1;
  }

  .us-modal-bg.video-playing video {
    opacity: 1;
    visibility: visible;
  }

  .us-modal-mute {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    min-width: 0;
  }

  .us-modal-content {
    padding: 30px;
  }

  .us-modal-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .us-modal-content p {
    line-height: 1.6;
    max-width: 700px;
  }

  .us-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
  }

  .play-btn {
    background: #bb8b10;
    padding: 8px 28px;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
  }

  .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 10px;
    min-width: 0;
  }

  /* Stream Page Featured Video Hero */

  /* -----------------------
    HERO SLIDER
------------------------ */
  .us-hero-slider {
    position: relative;
    overflow: hidden;
    height: 95vh;
  }

  /* Hero Items */
  .us-hero-slider .us-hero-items {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Individual Hero */
  .us-hero-slider .us-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .us-hero-slider .us-hero.active {
    opacity: 1;
    z-index: 2;
  }

  /* Hero Background Image */
  .us-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 4rem 5%;
    box-sizing: border-box;
    border-bottom: 4px solid;
    overflow: hidden;
    border-image: linear-gradient(to right,
        rgba(18, 34, 48, 1),
        rgba(47, 80, 111, 1),
        rgba(78, 130, 180, 1),
        rgba(47, 80, 111, 1),
        rgba(18, 34, 48, 1)) 1;
  }

  /* Hero Video */
  .us-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  .us-hero.video-playing video {
    opacity: 1;
    visibility: visible;
  }

  /* Overlay */
  .us-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%);
  }

  /* Hero Content */
  .us-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  .us-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .us-hero-meta,
  .us-hero-description,
  .us-hero-cast {
    margin-bottom: 1rem;
    opacity: 0.85;
  }

  .us-hero-actions {
    margin-top: 20px;
    display: flex;
  }

  .us-hero-actions .us-btn-play {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;

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

  /* Mute Button */
  .us-hero-mute {
    position: absolute;
    top: 90px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    line-height: 0;
    min-width: 0;
  }

  .us-hero-mute svg {
    width: 32px;
    height: 32px;
    pointer-events: none;
  }

  /* Round Arrows */
  .us-hero-prev,
  .us-hero-next {
    position: absolute;
    top: 100px;
    width: 44px;
    height: 44px;
    background: #fff;
    color: #000;
    font-size: 28px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    font-weight: 500;
  }

  .us-hero-prev {
    left: 2%;
  }

  .us-hero-next {
    left: 6%;
  }

  /* Responsive */
  @media screen and (max-width: 768px) {
    .us-hero-slider {
      height: 60vh;
    }

    .us-hero-title {
      font-size: 2rem;
    }

    .us-hero-content {
      font-size: 0.9em;
    }

    .us-hero {
      padding: 40px 5%;
    }

    .us-hero-mute {
      top: 20px;
      right: 5%;
      padding: 0;
    }

    .us-hero-mute svg {
      width: 22px;
      height: 22px;
    }

    .us-hero-prev {
      top: 20px;
      left: 5%;
    }

    .us-hero-next {
      top: 20px;
      left: 16%;
    }

    .us-hero-next,
    .us-hero-prev {
      font-size: 1.8em;
      padding: 10px;
      width: 32px;
      height: 32px;
      font-weight: 500;
    }
  }


}

.stream-watch {
  .video-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    h2 {
      font-weight: 700;
    }
  }
}