@media (max-width: 991.98px) {
   header.hide-nav {
      transform: translateY(0) !important;
   }

   .navigation-container {
      flex-direction: row-reverse;
      gap: 10px;
      justify-content: flex-start;
   }

   .navigation {
      display: flex;
      align-items: center;
   }

   /* Toggle Nav */

   .ToggleButton {
      background: transparent;
      border: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: center;
      transition: all 0.3s ease-in-out;
      padding: 10px;
      position: relative;
      z-index: 2;
   }

   .ToggleButton:focus {
      box-shadow: none;
   }

   .ToggleButton span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--clr-white);
      transition: all 0.3s ease-in-out;
   }

   .sticky-header .ToggleButton span {
      background: var(--clr-primary);
   }

   .ToggleButton span:nth-child(2) {
      width: 16px;
   }

   .ToggleButton[aria-expanded="true"] span {
      background: var(--clr-white);
   }

   .ToggleButton[aria-expanded="true"]+#SideNav {
      transform: translateX(0);
   }

   .ToggleButton[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
   }

   .ToggleButton[aria-expanded="true"] span:first-child {
      transform: rotate(-45deg);
      top: 6px;
      position: relative;
   }

   .ToggleButton[aria-expanded="true"] span:last-child {
      transform: rotate(45deg);
      top: -8px;
      position: relative;
   }

   #sideaNav {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      background: #fff;
      width: 60%;
      box-shadow: 0 0 10px rgb(0 0 0 / 15%);
      display: block;
      z-index: 99;
      transform: translateX(-101%);
      transition: all 0.3s ease-in-out;
   }

   .ToggleButton[aria-expanded="true"]+#sideaNav {
      transform: translateX(0);
   }

   .nav-overlay {
      position: fixed;
      top: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1;
      width: 100%;
      height: 100vh;
      transition: all 0.3s ease-in-out;
      opacity: 0;
      visibility: hidden;
   }

   .navbar-collapse.show+.nav-overlay {
      opacity: 1;
      visibility: visible;
   }

   .sidenav-logo {
      display: flex;
      padding: 20px;
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
   }

   .sidenav-logo img {
      width: 70px;
   }

   #sideaNav .navbar-nav {
      margin: 0 !important;
      height: 100%;
      gap: 15px;
      overflow: auto;
   }

   #sideaNav .navbar-nav .nav-item {
      padding: 0 20px;
   }

   .navbar-nav .nav-link {
      color: var(--clr-dark);
   }

   /* Toggle Nav */

   .verifyProduct-wrapper .img-box img {
      margin-bottom: 0px;
   }

   .verifyInput-box {
      max-width: 100%;
   }

   .verifyProduct-wrapper .img-box {
      text-align: center;
   }

   .ProTitles {
      display: none;
   }

   .aboutUsSection .SecHead-Title {
      text-align: center;
   }

   .aboutUsSection .TitleDivider {
      left: 230px;
   }

   .ProductSwiper {
      position: relative;
      left: 0;
   }

   .ProductRow.right .ProductSwiper {
      position: relative;
      left: 120px;
   }

   .OurProducts.mobile {
      display: flex !important;
      right: auto;
      left: -10px;
      z-index: 99;
      background: #0c7047;
      padding: 20px 10px;
      box-shadow: 0px 0px 9px 3px rgb(0 0 0 / 3%);
      color: #fff;
   }

   .OurProducts.mobile img {
      filter: invert(1);
   }


   .aboutUsBox {
      max-width: calc(50% - 50px);
   }

   .aboutUsBox.margin-down {
      margin-bottom: 0px;
   }

   img.insta-img {
      width: 100%;
   }

   .mobile-video {
      margin-top: 120px;
   }

   .PosterNav {
      flex-wrap: wrap;
      justify-content: center;
      padding: 15px;
      gap: 30px;
      flex-direction: column;
      align-items: center;
   }

   .PosterNav .videoPoster {
      width: 130px;
      height: 130px;
      border-radius: 100%;
   }
}

@media (max-width: 767.98px) {

   p {
      font-weight: 400;
   }

   #scrollTotop.showscroll {
      right: 16px;
   }

   .banner-details h1 {
      font-size: 40px;
   }

   .banner-details {
      color: var(--clr-white);
      margin-bottom: 280px;
   }

   .top-banner .bannerCard-block {
      flex-wrap: wrap;
   }

   .bannerCard {
      width: 50%;
   }

   .SecHead-Title h2 {
      font-size: 30px;
   }

   .SecHead h4 {
      font-size: 20px;
   }

   .SecHead {
      margin: 0 0 30px;
   }

   .ProductSwiper {
      left: 20px;
   }

   .custom-space {
      padding: 50px 0;
   }

   .aboutUsBox {
      max-width: calc(100% - 0px);
      align-items: center;
   }

   .aboutUsText {
      align-items: center;
      text-align: center;
   }

   .right .ProductSwiper {
      left: 20px;
      right: auto;
   }

   .TitleDivider {
      left: 0px;
      top: -20px;
      opacity: 0.5;
   }

   .copyright {
      margin-top: 30px;
   }

   section.insta-div-video {
      padding: 50px 0;
   }

   .text-modal {
      padding: 50px 0;
   }

   img.product-mobile-img {
      display: block;
      width: 100%;
      margin-bottom: 30px !important;
      animation: colorRotate 3s linear infinite;
   }

   @keyframes colorRotate {
      100% {
         -webkit-filter: hue-rotate(360deg);
      }
   }

   .btn-row {
      margin-top: 10px;
   }

   .ProductRow.right .ProductSwiper {
      left: 40px !important;
   }

   .videoGallery {
      flex-wrap: wrap;
      justify-content: center;
      flex-direction: column-reverse;
   }

   .VideoFrame {
      order: 1;
      margin-bottom: 50px;
   }

   .PosterNav {
      flex-wrap: unset;
      flex-direction: row;
   }

   .PosterNav .videoPoster {
      width: 60px;
      height: 60px;
   }

   .videoPoster:after {
      width: 24px;
      height: 24px;
      font-size: 16px;
   }

}

@media (max-width:376px) {
   .banner-details {
      margin-bottom: 320px;
      margin-top: 40px;
   }

   .ProductSwiper {
      left: 10px;
   }

   .right .ProductSwiper {
      left: 10px;
      right: auto;
   }

   .SecHead-Title h2 {
      font-size: 26px;
   }

   .SecHead h4 {
      font-size: 18px;
   }


}

@media (max-width: 320px) {

   .ThemeBtn {
      font-size: 12px;
   }

   .banner-details h6 {
      font-size: 20px;
   }

   .banner-details h1 {
      font-size: 30px;
   }

   .banner-details p {
      font-size: 14px;
   }

   .SecHead-Title h2 {
      font-size: 24px;
   }

   .SecHead h4 {
      font-size: 16px;
   }
}