/* Top Banner */

.top-banner {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 110px;
}

.top-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 72, 43, 0.4);
}

.top-banner .bannerVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-banner .container {
  position: relative;
  z-index: 1;
}

.banner-details {
  color: var(--clr-white);
  margin-bottom: 150px;
}

.banner-details h6 {
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 15px;
}

.banner-details h1 {
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 50px;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 300;
}

.banner-details h1 b {
  font-weight: 700;
}

.banner-details p {
  font-size: 16px;
  line-height: 28px;
}

.top-banner .bannerCard-block {
  position: absolute;
  bottom: 0;
  display: flex;
  padding: 20px 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.bannerCard {
  padding: 15px;
  background: linear-gradient(90deg,
      rgba(161, 161, 161, 0.3) 0%,
      rgba(171, 171, 171, 0.3) 100%);
  backdrop-filter: blur(7.5px);
  transition: all 0.3s ease-in-out;
  color: var(--clr-white);
}

.bannerCard:hover {
  background: linear-gradient(90deg,
      rgba(161, 161, 161, 0.6) 0%,
      rgba(171, 171, 171, 0.6) 100%);
  box-shadow: 0 3px 0 inset #fff;
}

.bannerCard h6 {
  font-size: 14px;
  text-transform: uppercase;
}

.bannerCard p {
  font-size: 12px;
  margin: 0;
}

/* Verify Product */

.verifyProduct-wrapper {
  padding-bottom: 0;
}

.verifyProduct-wrapper .img-box {
  overflow: hidden;
}

.verifyProduct-wrapper .img-box img {
  margin-bottom: -30px;
}

.verifyInput-box {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 450px;
}

/* Disposables Products */

.SectionBg {
  background-color: var(--clr-lightGray);
}

.ProductSwiper {
  position: relative;
  left: 50px;
}

.ProductSwiper .swiper.mySwiper {
  width: 100%;
  max-width: 100vw;
}

.productCard {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: var(--clr-light-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 45px 15px;
  overflow: hidden;
}

.Product-Details {
  position: absolute;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: start;
  left: -100%;
  bottom: 0;
  padding: 20px;
  background: #fff;
  transition: all 0.8s ease-in-out;
  overflow: hidden;
}

.ProductSwiper .swiper-slide:hover .Product-Details {
  left: 0px;
}

.ProductSwiper .swiper-slide.Product-Details h6,
.ProductSwiper .swiper-slide .Product-Details p {
  position: relative;
  right: -100%;
  transition: all 1s ease-in-out;
}

.ProductSwiper .swiper-slide .Product-Details p {
  opacity: 0.8;
}


.ProductSwiper .swiper-slide:hover .Product-Details h6,
.ProductSwiper .swiper-slide:hover .Product-Details p {
  right: 0px;
}



.Product-Details p {
  font-size: 11px;
  text-align: left;
  width: 100%;
  max-width: 200px;
  margin: 0;
}




.ProductInner img {
  width: 100%;
  transition: all 0.7s ease-in-out;
  opacity: 0.2;
  max-width: 180px;
  padding: 20px 10px 80px;
}

.ProductSwiper .swiper-slide:hover .ProductInner img {
  filter: saturate(0);
}

.OurProducts {
  position: absolute;
  right: -30px;
  top: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  writing-mode: tb;
}

.OurProducts p {
  margin: 0;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.ProductRow {
  position: relative;
  display: flex;
  margin-top: 50px;
}

.ProTitles {
  display: flex;
  max-width: 250px;
  min-width: 250px;
  position: relative;
}

.ProductTitle h2 {
  margin: 0;
  font-size: 50px;
  color: rgba(17, 17, 17, 0.10);
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 6px;
  transform: rotate(180deg);
  text-align: end;
}

.ProductTitle {
  writing-mode: tb;
  text-transform: uppercase;
  min-width: 170px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ArrowControl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-direction: column;
  margin-top: 30px;
}

.ArrowControl img {
  width: 100%;
  max-width: 30px !important;
}


/* ABout-Section-CSS */

.aboutUsContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0px auto;
  flex-wrap: wrap;
  padding: 50px 0;
  width: 100%;
}

.aboutUsBox.margin-down {
  margin-bottom: -180px;
}

.aboutUsBox {
  width: 100%;
  max-width: calc(33% - 50px);
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.aboutUsimg img {
  width: 100%;
}

.aboutUsimg {
  max-width: 60px;
}

.aboutUsText h6,
.aboutUsText p {
  font-family: 'Roboto', sans-serif;
  margin: 0px;
}

.aboutUsText h6 {
  font-weight: bold;
}

/* .aboutUsText p {
  font-size: 13px;
} */

.aboutUsText {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.aboutUsBox:hover .gelatine {
  animation: gelatine 1s ease-in-out;
}


@keyframes gelatine {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) rotateY(170deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) rotateY(190deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) rotateY(360deg);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}


/* Right-Section-slider */


.ProductRow.right {
  flex-direction: row-reverse;
}

.ProductRow.right .ProductSwiper {
  position: relative;
  left: -50px;
}

.right-side .OurProducts {
  left: -30px;
  right: auto;
}


.right-side .OurProducts p {
  transform: rotate(0deg);
}

.right-side .ProductTitle h2 {
  transform: rotate(0deg);
}

.ProTitles.right-side {
  justify-content: end;
}

.swiper-button-disabled img {
  opacity: 0.5;
}


/* Insta-Div */

section.insta-div-video {
  padding: 100px 0;
}

.insta-div {
  margin-top: 20px;
  max-height: 480px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* width */
.insta-div::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.insta-div::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Handle */
.insta-div::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
}

/* Handle on hover */
.insta-div::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary-hover);
}




/* Mobile-Video */
.mobile-video {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
}

.mobile-video:before {
  content: "";
  width: 100%;
  max-width: 280px;
  height: 420px;
  position: absolute;
  top: -30px;
  border-radius: 40px 40px 0 0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #127834 0%, #105527 26%, #0E1912 51.5%, rgba(18, 120, 52, 0.00) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

img.mobile-frame {
  position: relative;
  z-index: 99;
}

video#mobile-video {
  position: absolute;
  max-width: 220px;
  max-height: 443px;
  top: 0;
  border-radius: 40px;
}



/* Modal-css */

.text-modal .auth-img {
  max-width: 160px;
  margin-bottom: 20px;
}


.text-modal.error h2 {
  font-size: 40px;
  font-weight: 800;
  background: -webkit-linear-gradient(#ff0000, #b57373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-dialog {
  max-width: 700px;
}

.modal-content {
  border-radius: 0px;
}

.text-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.text-modal h2,
.text-modal h6 {
  margin: 0px;
}

.text-modal h2 {
  font-size: 40px;
  font-weight: 800;
  background: -webkit-linear-gradient(#0c7047, #0b3e29);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.text-modal h6 {
  font-size: 20px;
}

.btn-row .ThemeBtn {
  min-width: 120px;
}

.modal-body {
  padding: 0px;
}

.img-modal img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-modal {
  background: #0c7047;
  height: 400px;
}

.OurProducts.mobile {
  display: none;
}

img.product-mobile-img {
  display: none;
}

.eapps-instagram-feed-title {
  display: none !important;
}


/* video gallery */

.videoGallery {
  display: flex;
  align-items: center;
}

.PosterNav {
  width: 100%;
  display: flex;
}

.videoPoster {
  border: 0;
  padding: 0;
  outline: none;
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.videoPoster:after {
  content: "\e037";
  position: absolute;
  font-family: 'Material Icons';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 2;
}

.videoPoster:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-dark);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  opacity: 0;
}

.videoPoster:hover:before,
.videoPoster.active:before {
  opacity: 0.7;
}

.videoPoster:hover:after {
  opacity: 1;
}

.videoPoster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  backface-visibility: none;
}

.videoPoster:hover img {
  transform: scale(1.1);
}

.VideoFrame {
  position: relative;
  width: 250px;
  min-width: 250px;
  background: #000;
  border-radius: 25px;
  margin: 0 -10px;
  z-index: 2;
}

.VideoFrame:after {
  content: '';
  width: 100%;
  height: 10px;
  left: 0;
  bottom: -40px;
  display: block;
  border-radius: 100%;
  position: absolute;
  filter: blur(8px);
  background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
}

.VideoFrame img {
  width: 100%;
}

.VideoFrame .nouch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 80px;
}

.VideoFrame video {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 25px;
}

.playButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  outline: none;
  background: var(--clr-primary);
  z-index: 2;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.playButton i {
  font-size: 28px;
  color: var(--clr-white);
}

.VideoFrame:hover .playButton {
  opacity: 1;
}