/*=====Reset CSS======*/
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input:focus,
input[type="buttton"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  min-height: 100%;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  background-color: #050123;
  position: relative;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

::-moz-selection {
  background-color: #1f40cb;
  color: #fff;
}

::selection {
  background-color: #1f40cb;
  color: #fff;
}

/*=====Reset CSS======*/

/*===== Global CSS ======*/
:root {
  --theme-color: #FF1E84;
  --bs-gutter-x: 15px;
}

h1 {
  background: linear-gradient(180deg, #FFE079 0%, #B945FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 170px;
  font-style: normal;
  font-weight: 800;
  line-height: 190px;
  text-transform: capitalize;
  position: relative;
}

h2 {
  background: linear-gradient(180deg, #FFD23B 0%, #FF2B8B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: 'Orbitron', sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 82px;
  text-transform: uppercase;
}

h3 {}

h4 {}

h5 {}

.glb_btn {
  border-radius: 50px;
  background: linear-gradient(275deg, #FF1E84 0%, #FDC714 100%);
  min-width: 190px;
  height: 60px;
  padding: 5px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  position: relative;
  transition: all .4s ease-in-out;
  z-index: 1;
}

.glb_btn:hover {
  background: linear-gradient(90deg, #FF1E84 0%, #FDC714 100%);
  color: #FFF;
  transition: all .4s ease-in-out;
}

.glb_btn::after {
  content: '';
  width: 175px;
  height: 45px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(275deg, #FF1E84 0%, #FDC714 100%);
  filter: blur(19px);
  transition: all .3s ease-in-out;
  z-index: -1;
}

.glb_btn:hover::after {
  top: 5px;
  transition: all .3s ease-in-out;
}

/*===== Global CSS ======*/

/***** header start *************/
.hedr.home_hedr {
  background: #020011;
}
.hedr {
  transition: all 600ms ease-in-out;
  background: #050123;
  width: 100%;
  z-index: 1;
  position: relative;
}

.nav_menu {
  display: flex;
  align-items: center;
}

.navbar .nav_link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.navbar .nav_link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 0px;
  height: 1px;
  display: block;
  background-color: #fff;
  transition: all 300ms ease;
}

.navbar .nav_link:hover:after {
  width: 100%;
}

.navbar .nav_link:hover {
  color: #FF1E84;
}

.navbar .nav_item+.nav_item {
  margin-left: 50px;
}

.navbar_brand {
  color: #FFF;
  font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 37px;
}

.navbar_brand:hover {
  color: #fff;
}

.nav_function {
  margin-left: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav_function a {
  position: relative;
}

.hedr .navbar {
  position: relative;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 30px 0px;
}

.nav_togge_btn {
  display: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

/* mobile nav toggle buttom  ********/
.nav_togge_btn {
  background-color: transparent;
  padding: 0;
  position: relative;
  /* z-index: 99; */
  /* top: -7px; */
  border: none;
}

.nav_togge_btn.opened {
  position: fixed;
  right: 0;
  top: 7px;
  right: 7px;
  z-index: 99;
}

.line {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 5;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 5;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}

/***** header end *************/

/* start bannersect */
.bannersect {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../images/home_bnr_bg.png) no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.productban>img,
.bannersect>img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.banncontmainbox {
  width: 100%;
  height: 100%;
  /* position: absolute; */
  top: 0;
  left: 0;
  text-align: center;
  padding-top: 70px;
  z-index: 1;
}

.banncontmainbox .home_bnr_img {
  width: 100%;
  padding-top: 60px;
}


@keyframes gelatine {
  0% {
    transform: translate(0, 0);
    filter: hue-rotate(-0deg);
  }

  1.78571% {
    transform: translate(5px, 0);
  }

  3.57143% {
    transform: translate(0, 0);
  }

  5.35714% {
    transform: translate(5px, 0);
    filter: hue-rotate(-75deg);
  }

  7.14286% {
    transform: translate(0, 0);
    filter: hue-rotate(-90deg);
  }

  8.92857% {
    transform: translate(5px, 0);
  }

  10.71429% {
    transform: translate(0, 0);
    filter: hue-rotate(-0deg);
  }

  100% {
    transform: translate(0, 0);

  }
}

.banncontmainbox h6 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  text-transform: capitalize;
}

.bnr_btn_wrp {
  margin-top: 40px;
  text-align: center;
}

.banbttn {
  width: 210px;
  height: 60px;
  display: inline-flex;
  padding: 20px 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: url(../images/btnbg.svg);
  background-position: center center;
  background-size: 100% 100%;
  color: #FFF;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  position: relative;
}

.banbttn:hover {
  background: linear-gradient(275deg, #FF1E84 0%, #FDC714 100%);
  color: #fff;
}


/* end bannersect */

/* start benefitsect */
.benefitsect {
  width: 100%;
  position: relative;
  background: url(../images/benibigi.png);
  background-position: center center;
  background-size: 100% 100%;
  padding: 100px 0px 70px;
  text-align: center;
}

.benefitsect h2 {
  width: 90%;
  margin: 0 auto;
}

.benifitminflex {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: self-start;
  flex-wrap: wrap;
  margin-top: 100px;
}

.benefitbox {
  flex: 0 0 auto;
  width: 22%;
  min-height: 258px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  padding: 0px 23px 30px;
  margin: 0px 15px;
}

.bniconbox {
  max-width: 123px;
  position: relative;
  margin: -60px auto 40px;
}

.benefitbox h5 {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 28px;
}

.benefitbox p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.benefitbox:nth-child(even) {
  margin-top: 80px;
}

.smallicon {
  width: 41px;
  position: relative;
  top: -8px;
}

/* end benefitsect */

/* start faqsection */
.faqsection {
  width: 100%;
  position: relative;
  background: url(../images/faqbg.png);
  background-position: center center;
  background-size: 100% 100%;
  padding: 100px 0px;
  z-index: 1;
}

.faqsection .accordion {
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.faqsection .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
  box-shadow: none;
}

.faqsection .accordion-item {
  background-color: transparent;
  border: 0px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(235, 30, 124, 0.40) inset;
  backdrop-filter: blur(31.5px);
  margin-bottom: 20px;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.faqsection p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.faqsection .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  content: "";
  background-image: url(../images/pls.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
  transition: transform .2s ease-in-out;
}

.faqsection .accordion-button:not(.collapsed)::after {
  background-image: url(../images/mai.png);
  transform: rotate(-180deg);
}

/* end faqsection */

/* our product start */
.our_product {
  overflow-x: hidden;
  padding: 30px 0px 80px;
  background: url(../images/ourproduct_bg.png) no-repeat center / cover;
}

.section_hdng {
  padding-bottom: 50px;
}

.section_txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_wrap .row {
  align-items: center;
}

.products_right_img {
  margin-right: -105px;
  position: relative;
  animation: flote 4s linear 0s infinite;
}

.products_right_img::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(6, 1, 37, 0.00) 0%, #060125 42.86%);
  z-index: 1;
}

@keyframes flote {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.products_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -50px -15px 0px -15px;
}

.products_grid .product_box {
  flex: 0 0 auto;
  width: 50%;
  padding: 165px 15px 0px 15px;
  display: block;
}

.product_box_inner {
  border-radius: 30px;
  border: 1px solid #ffffff47;
  background: rgba(185, 69, 255, 0.05);
  backdrop-filter: blur(7.5px);
  padding: 40px;
  text-align: center;
}

.product_box_inner .product_img {
  margin: -134px auto 0px;
  width: fit-content;
  position: relative;
}

.product_box_inner .product_name h3 {
  color: #FFF;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  text-transform: capitalize;
  margin: 20px 0px;
}

.product_box_inner .product_desc p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 26px;
  max-width: 248px;
  margin: 0 auto;
}

.product_box_inner .product_price {
  margin-top: 20px;
  text-align: center;
}

.product_box_inner .product_price span {
  background: linear-gradient(180deg, #FDBB1C 0%, #FF2C7B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: "Orbitron", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 65px;
  text-transform: capitalize;
}

.product_box_inner .offer {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -19px;
  right: -35px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.product_box_inner .offer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* about us section */
.fadeinout {
  animation: fadeinout 4s infinite;
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.about_us {
  padding: 30px 0px 40px;
  background-image: url(../images/about_us_bg.png);
  background-color: #050123;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

#starContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 13%;
  overflow: hidden;
}

.star {
  --size: 10vmin;
  --holes: calc(var(--size) * 0.495);
  width: var(--size);
  height: var(--size);
  position: absolute;
  background: white;
  --mask: radial-gradient(var(--holes) at var(--holes) var(--holes),
      #0000 99%,
      #000) calc(var(--holes) * -1) calc(var(--holes) * -1);
  -webkit-mask: var(--mask);
  mask: var(--mask);
  border-radius: 50%;
  animation: sparkle 1s linear forwards;
}

@keyframes sparkle {
  0% {
    transform: scale(0);
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.about_us .row {
  align-items: center;
}

.about_cont p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 26px;
  text-transform: capitalize;
  margin: 35px 0px 40px;
  max-width: 510px;
}

.about_img {
  margin: 0px 0px 0px -160px;
  position: relative;
}

.about_img img {
  width: 100%;
  object-fit: cover;
  max-width: 600px;
}

.imgopct {
  opacity: 0.6;
}

.imgfad2 {
  position: absolute;
  left: 0;
  top: 0;
}

/* footer start */
.prim_footer {
  padding: 100px 0px 577px;
  /* background-image: url(../images/footer_bg.png); */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  border-top: 1px solid #ffffff2e;
  z-index: 1;
}

.prim_footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  animation: colorChange 6s linear infinite alternate;
}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg) opacity(1) blur(0);
  }

  25% {
    filter: hue-rotate(-50deg) opacity(1) blur(1px);
  }

  50% {
    filter: hue-rotate(-75deg) opacity(1) blur(2px);
  }

  75% {
    filter: hue-rotate(-360deg) opacity(1) blur(1px);
  }

  100% {
    filter: hue-rotate(0deg) opacity(1) blur(0);
  }
}

.container {
  position: relative;
  z-index: 1;
}

.foot_dtls p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.foot_dtls p:not(.copyright) {
  max-width: 255px;
}

.foot_dtls .footer_icon {
  display: flex;
  margin: 25px -15px 0px -15px;
}

.foot_dtls .footer_icon li {
  padding: 0px 15px;
}

.foot_nav_menu h5 {
  color: #FFF;
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.menu_link li {
  padding-bottom: 20px;
}

.menu_link li a {
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  position: relative;
}

.menu_link li a:hover {
  color: #fff;
}

.menu_link li a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 0px;
  height: 1px;
  display: block;
  background-color: #fff;
  transition: all 300ms ease;
}

.menu_link li a:hover::after {
  width: 100%;
}

.contact_option .menu_link a {
  padding-left: 30px;
}

.contact_option {
  margin-left: 65px;
}

.contact_option .menu_link li:nth-child(1) a {
  background: url(../images/mail.svg) no-repeat left center / 20px 20px;
}
/* ../images/location.svg */
.contact_option .menu_link li:nth-child(2) a {
  background: url(../images/phone.svg) no-repeat left center / 20px 20px;
}

.contact_option .menu_link li:nth-child(3) a {
  background: url(../images/mail.svg) no-repeat left center / 20px 20px;
}



/* start glaxy animation */

@keyframes sf-fly-by-1 {
  from {
    transform: translateZ(-600px);
    opacity: 0.5;
  }

  to {
    transform: translateZ(0);
    opacity: 0.5;
  }
}

@keyframes sf-fly-by-2 {
  from {
    transform: translateZ(-1200px);
    opacity: 0.5;
  }

  to {
    transform: translateZ(-600px);
    opacity: 0.5;
  }
}

@keyframes sf-fly-by-3 {
  from {
    transform: translateZ(-1800px);
    opacity: 0.5;
  }

  to {
    transform: translateZ(-1200px);
    opacity: 0.5;
  }
}

.star-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 600px;
  -webkit-perspective: 600px;

}

.star-field .layer {
  box-shadow: -411px -476px #cccccc, 777px -407px #d4d4d4, -387px -477px #fcfcfc, -91px -235px #d4d4d4, 491px -460px #f7f7f7, 892px -128px #f7f7f7, 758px -277px #ededed, 596px 378px #cccccc, 647px 423px whitesmoke, 183px 389px #c7c7c7,
    524px -237px #f0f0f0, 679px -535px #e3e3e3, 158px 399px #ededed, 157px 249px #ededed, 81px -450px #ebebeb, 719px -360px #c2c2c2, -499px 473px #e8e8e8, -158px -349px #d4d4d4, 870px -134px #cfcfcf, 446px 404px #c2c2c2,
    440px 490px #d4d4d4, 414px 507px #e6e6e6, -12px 246px #fcfcfc, -384px 369px #e3e3e3, 641px -413px #fcfcfc, 822px 516px #dbdbdb, 449px 132px #c2c2c2, 727px 146px #f7f7f7, -315px -488px #e6e6e6, 952px -70px #e3e3e3,
    -869px -29px #dbdbdb, 502px 80px #dedede, 764px 342px #e0e0e0, -150px -380px #dbdbdb, 654px -426px #e3e3e3, -325px -263px #c2c2c2, 755px -447px #c7c7c7, 729px -177px #c2c2c2, -682px -391px #e6e6e6, 554px -176px #ededed,
    -85px -428px #d9d9d9, 714px 55px #e8e8e8, 359px -285px #cfcfcf, -362px -508px #dedede, 468px -265px #fcfcfc, 74px -500px #c7c7c7, -514px 383px #dbdbdb, 730px -92px #cfcfcf, -112px 287px #c9c9c9, -853px 79px #d6d6d6,
    828px 475px #d6d6d6, -681px 13px #fafafa, -176px 209px #f0f0f0, 758px 457px #fafafa, -383px -454px #ededed, 813px 179px #d1d1d1, 608px 98px whitesmoke, -860px -65px #c4c4c4, -572px 272px #f7f7f7, 459px 533px #fcfcfc,
    624px -481px #e6e6e6, 790px 477px #dedede, 731px -403px #ededed, 70px -534px #cccccc, -23px 510px #cfcfcf, -652px -237px whitesmoke, -690px 367px #d1d1d1, 810px 536px #d1d1d1, 774px 293px #c9c9c9, -362px 97px #c2c2c2,
    563px 47px #dedede, 313px 475px #e0e0e0, 839px -491px #e3e3e3, -217px 377px #d4d4d4, -581px 239px #c2c2c2, -857px 72px #cccccc, -23px 340px #dedede, -837px 246px white, 170px -502px #cfcfcf, 822px -443px #e0e0e0, 795px 497px #e0e0e0,
    -814px -337px #cfcfcf, 206px -339px #f2f2f2, -779px 108px #e6e6e6, 808px 2px #d4d4d4, 665px 41px #d4d4d4, -564px 64px #cccccc, -380px 74px #cfcfcf, -369px -60px #f7f7f7, 47px -495px #e3e3e3, -383px 368px #f7f7f7, 419px 288px #d1d1d1,
    -598px -50px #c2c2c2, -833px 187px #c4c4c4, 378px 325px whitesmoke, -703px 375px #d6d6d6, 392px 520px #d9d9d9, -492px -60px #c4c4c4, 759px 288px #ebebeb, 98px -412px #c4c4c4, -911px -277px #c9c9c9;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 4px;
  width: 4px;
  border-radius: 2px;
}

.star-field .layer:nth-child(1) {
  animation: sf-fly-by-1 5s linear infinite;
}

.star-field .layer:nth-child(2) {
  animation: sf-fly-by-2 5s linear infinite;
}

.star-field .layer:nth-child(3) {
  animation: sf-fly-by-3 5s linear infinite;
}

/* end glaxy animation */

/* start productban */
.productban {
  width: 100%;
  position: relative;
  z-index: 1;
}

.innerbancont {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 100px;
}

.innerbancont h2 {
  font-size: 100px;
  line-height: normal;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.innerbancont h2 .innertexti {
  position: relative;
  top: -25px;
  animation: gelatine 3.8s infinite ease;
  transform-origin: 50% 50%;
}

#container {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
}

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

/* end productban */

/* start gummysection */
.gummysection {
  width: 100%;
  position: relative;
  background: url(../images/inbg2.png);
  background-size: 100% 100%;
  background-position: center center;
  padding: 100px 0px 0px;
}

.productimgbox {
  max-width: 570px;
  margin-right: 65px;
  border-radius: 30px;
  border: 1px solid #ffffff47;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
  flex-direction: column;
  position: relative;
}

.productimgbox .offer {
  width: 250px;
  height: 250px;
  position: absolute;
  top: -106px;
  left: -95px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.productimgbox .offer img {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
}

.productimgbox .glb_btn {
  padding: 0px 30px;
}

.imgbox {
  max-width: 312px;
  min-width: 300px;
  text-align: center;
  margin-bottom: 35px;
}

.imgbox img {
  width: 100%;
}

.gummysection h3 {
  background: linear-gradient(180deg, #FFD23B 0%, #FF2B8B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.gummysection p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.85;
}

.retingsection {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.retingsection h5 {
  color: #FFF;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  margin-left: 12px;
}

.gummysection h4 {
  background: linear-gradient(180deg, #FFD23B 0%, #FF2B8B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 20px 0px 25px;
}

.gummylist {
  width: 100%;
  position: relative;
  margin-top: 26px;
  max-width: 420px;
}

.gummylist li {
  width: 100%;
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.85;
  background: url(../images/check.svg) no-repeat;
  background-position: top left;
  background-size: 20px 20px;
  padding-left: 40px;
}

.gummylist li+li {
  margin-top: 20px;
}

.add_to_cartsect {
  background: url(../images/cartbg.png);
  background-position: center center;
  background-size: 100% 100%;
  max-width: 285px;
  height: 55px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 0px 19px;
  margin: 30px 0px 24px;
}
.add_to_cartsect .cart{
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
.add_to_cartsect .input-group {
  width: fit-content;
}

.add_to_cartsect button[type="submit"] {
  color: #FFF;
  background-color: transparent !important;
  border-left: 1px solid #fff;
  border-radius: 0px;
  margin-left: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  font-family: 'Orbitron', sans-serif;
}

.add_to_cartsect .minus,
.add_to_cartsect .plus {
  background: transparent;
  padding: 0px;
  border: 0px;
  color: #9D9D9D;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.add_to_cartsect .quantity input {
  background: transparent;
  padding: 0px;
  text-align: center;
  min-width: 20px;
  width: 50px;
  flex: 0 0 auto;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border: 0px;
}

/* .midline {
  width: 1px;
  height: 40px;
  background: #D9D9D9;
  margin: 0px 18px;
} */

.tagsection {
  width: 100%;
  position: relative;
}

.tagsection h6 {
  color: #FFF;
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  opacity: 0.85;
}

.tagsection ul {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}

.tagsection ul li a {
  display: flex;
  padding: 16px 26px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #1E1A39;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: all 300ms ease;
}

.tagsection ul li a:hover {
  background: #464168;
}

.descriptiontab .nav-link {
  min-width: 150px;
  border-bottom: 4px solid transparent;
  padding: 20px 0px;
  border-radius: 0;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  opacity: 0.85;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.5px;
  transition: all 300ms ease;
}

.descriptiontab .nav-pills .nav-link.active,
.descriptiontab .nav-pills .show>.nav-link {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  background: linear-gradient(180deg, #FDBB1C 0%, #FF2C7B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.descriptiontab .nav {
  border-bottom: 1px solid #ffffff2e;
  gap: 10px;
}

.descriptiontab .tab-pane p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.85;
}

.descriptiontab .gummylist li {
  background: url(../images/check2.svg) no-repeat left 3px;
}

.descriptiontab .gummylist {
  margin-bottom: 40px;
  max-width: 840px;
}

.gammyviewbtn {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.max8 {
  max-width: 831px;
}

.max1 {
  max-width: 1110px;
}

.max3 {
  max-width: 399px;
}

.inbgbottom {
  position: relative;
  width: 100%;
  margin-top: -200px;
}

/* end gummysection */

/* start 27.12.23 */
#background-wrap {
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 85%;
  overflow: hidden;
  top: 0;
}

/* KEYFRAMES */

@-webkit-keyframes animateBubble {
  0% {
    margin-top: 1000px;

  }

  100% {
    margin-top: -100%;
  }
}

@-moz-keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }

  100% {
    margin-top: -100%;
  }
}

@keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }

  100% {
    margin-top: -100%;
  }
}

@-webkit-keyframes sideWays {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

@-moz-keyframes sideWays {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

@keyframes sideWays {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

/* ANIMATIONS */

.x1 {
  -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 5%;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
}

.x2 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 5%;
  top: 80%;
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  transform: scale(0.4);
}

.x3 {
  -webkit-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  transform: scale(0.7);
}

.x4 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 20%;
  top: 0;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

.x5 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}

.x6 {
  -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;

  left: 50%;
  top: 0;

  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}

.x7 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;

  left: 65%;
  top: 70%;

  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  transform: scale(0.4);
}

.x8 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;

  left: 80%;
  top: 10%;

  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

.x9 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;

  left: 90%;
  top: 50%;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
}

.x10 {
  -webkit-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

/* OBJECTS */

.bubble {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0 10px 20px #FDC714, inset 0px 5px 15px 2px #FF1E84;
  height: 80px;
  position: absolute;
  width: 80px;
}

/* start fog effects */
#myCanvas {
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  position: absolute;
  bottom: 0;
}

/* end fog effects */



/* 03.01.23 */
/* .bantextimg img {
  max-width: 136px;
  animation: gelatine 3.8s infinite ease;
} */

.banncontmainbox h1 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.bantextimg {
  top: -70px;
  line-height: 1;
  position: absolute;
  right: -78px;
  z-index: -1;
}
/* 03.01.23 */

/* 01.04.24 home bnr fog */
.fogwrapper {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
}

#foglayer_01,
#foglayer_02,
#foglayer_03 {
  height: 100%;
  position: absolute;
  width: 200%;
}

#foglayer_01 .image01,
#foglayer_01 .image02,
#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
  float: left;
  height: 100%;
  width: 50%;
}

#foglayer_01 {
  animation: foglayer_01_opacity 10s linear infinite,
    foglayer_moveme 15s linear infinite;
}

#foglayer_02,
#foglayer_03 {
  animation: foglayer_02_opacity 21s linear infinite,
    foglayer_moveme 13s linear infinite;
}

#foglayer_01 .image01,
#foglayer_01 .image02 {
  background: url("../images/fog3.png") center center no-repeat transparent;
  background-size: cover;
}

#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
  background: url("../images/fog6.png") center center no-repeat transparent;
  background-size: cover;
}

@keyframes foglayer_01_opacity {
  0% {
    opacity: 0.1;
  }

  22% {
    opacity: 0.5;
  }

  40% {
    opacity: 0.28;
  }

  58% {
    opacity: 0.4;
  }

  80% {
    opacity: 0.16;
  }

  100% {
    opacity: 0.1;
  }
}

@keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }

  25% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.1;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes foglayer_moveme {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}
/* home bnr fog */