
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@400;700&display=swap');
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Basic typography style for copy text
 */
body {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Roboto Condensed', sans-serif;
  background: transparent !important;
    position: relative;
    z-index: 1;
}

.product__item {
    border: 2px solid #00f2ff; /* Borde azul */
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    transition: transform 0.3s ease;
    animation: cyberGlow 2s infinite alternate;
}

.product__item:hover {
    transform: scale(1.03);
}

/* Imagen con esquinas redondeadas */
.product__item img {
    border-radius: 10px;
}

/* Botón con borde azul */
.default-btn.border-btn {
    border: 2px solid #00f2ff;
    color: #00f2ff;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.default-btn.border-btn:hover {
    background: #00f2ff;
    color: #000;
}

/* Animación glow */
@keyframes cyberGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.4), 0 0 20px rgba(0, 242, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 242, 255, 0.9), 0 0 50px rgba(0, 242, 255, 0.7);
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Oswald' , sans-serif ;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Oswald', sans-serif;
}

h1 {
  font-size: calc(1.5625rem + 3.75vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 4.375rem;
  }
}

h2 {
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.875rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

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

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media not all and (pointer: coarse) {
  a:hover {
    color: #c62447;
  }
}

p {
  line-height: 1.7;
}

input, textarea, select {
  border-radius: 3px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

/*===== keyframes for banner img ====*/
@keyframes zoomin {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 1.1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.play-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  color: #c62447;
  border-radius: 100%;
  font-size: 1.25rem;
}
.play-btn i, .play-btn svg {
  z-index: 1;
}
.play-btn::after, .play-btn::before {
  border-radius: 100%;
  background: #fff;
  animation: zoomin 3s infinite;
}
.play-btn::before {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  left: -20px;
  top: -20px;
  opacity: 0.3;
}
.play-btn::after {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: -10px;
  top: -10px;
  opacity: 0.5;
}

.mt-15-none {
  margin-top: -15px;
}

.mt-30-none {
  margin-top: -30px;
}

.bg-tdark {
  background: #1c1d215d;
}

#confetti, #confetti2, #tsparticles3 {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}

.z-index-1 {
  z-index: 1;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}


.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}


.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.color--theme-color {
  color: #c62447;
}

.padding--top {
  padding-top: 70px;
}
@media (min-width: 992px) {
  .padding--top {
    padding-top: 100px;
  }
}

.padding--bottom {
  padding-bottom: 70px;
}
@media (min-width: 992px) {
  .padding--bottom {
    padding-bottom: 100px;
  }
}

.navbar-brand {
    font-size: 50px;
    font-weight: 900;
    color: #00f6ff;
    position: relative;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff, 0 0 40px #00f6ff;
    animation: flicker 3s infinite alternate;
    cursor: pointer;
}

/* Animación tipo flicker (efecto de pantalla hackeada) */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff, 0 0 40px #00f6ff;
    }
    20%, 24%, 55% {
        opacity: 0.8;
        text-shadow: none;
    }
}

/* Efecto glitch con pseudo-elementos */
.navbar-brand::before,
.navbar-brand::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    color: #00f6ff;
    clip: rect(0, 900px, 0, 0);
}

.navbar-brand::before {
    animation: glitchTop 2s infinite linear alternate-reverse;
    color: #ff00ff;
}

.navbar-brand::after {
    animation: glitchBottom 2s infinite linear alternate-reverse;
    color: #00ffea;
}

@keyframes glitchTop {
    0% { clip: rect(0, 9999px, 0, 0); transform: translate(-2px, -2px);}
    10% { clip: rect(10px, 9999px, 85px, 0); transform: translate(-2px, -2px);}
    20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(-2px, -2px);}
    30% { clip: rect(140px, 9999px, 180px, 0); transform: translate(-2px, -2px);}
    40% { clip: rect(0, 9999px, 0, 0); transform: translate(-2px, -2px);}
    100% { clip: rect(0, 9999px, 0, 0); transform: translate(-2px, -2px);}
}

@keyframes glitchBottom {
    0% { clip: rect(0, 9999px, 0, 0); transform: translate(2px, 2px);}
    10% { clip: rect(20px, 9999px, 85px, 0); transform: translate(2px, 2px);}
    20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(2px, 2px);}
    30% { clip: rect(140px, 9999px, 180px, 0); transform: translate(2px, 2px);}
    40% { clip: rect(0, 9999px, 0, 0); transform: translate(2px, 2px);}
    100% { clip: rect(0, 9999px, 0, 0); transform: translate(2px, 2px);}
}

.style-font{
	color: #c62447;
	font-size:50px;
}
.section-header h2 {
    font-size: 80px;
    color: #fff;
    text-transform: uppercase;

}
.contact__info--body ul li, .feature__content--content ul li, .countdown, .header-form .form-container, .header-form, .single-product-item .thumb, .single-product-item {
  display: flex;
  flex-wrap: wrap;
}

.video, .offer__item.style-2 .offer__item--thumb, .default-btn, .navbar-toggler--icon, .play-btn, .play-btn i, .play-btn svg, .z-index-1 {
  position: relative;
}

.accordion .accordion-item .accordion-header .accordion-button.collapsed::before, .offer__item.style-2 .offer__item--thumb .abs-image, .navbar-toggler--icon:after, .navbar-toggler--icon:before, .play-btn::after, .play-btn::before {
  position: absolute;
  content: "";
}

.product__item--thumb, .feature__thumb, .preloader, .default-btn, .banner-section {
  overflow: hidden;
}

form button, .search-icon, .cart-icon {
  cursor: pointer;
}

.contact__info--right, .product__item--thumb img, .navbar-toggler--icon:after, .navbar-toggler--icon:before, input, textarea, select {
  width: 100%;
}

.accordion .accordion-item .accordion-header .accordion-button, .countdown .clock-item .count-text, h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.product__item--content h6, .offer__item--content h6 {
  font-weight: 400;
}

.video__icon {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.countdown {
  justify-content: center;
}

.contact__info--body ul li, .feature__content--content ul li {
  justify-content: space-between;
}

.product__item--thumb img {
  display: block;
}

.default-btn, .navbar-toggler--icon, .play-btn {
  display: inline-block;
}

.product__item--content h6, .countdown .clock-item .count-text, .default-btn {
  text-transform: uppercase;
}

.contact__info--left, .feature__content--left, .play-btn {
  text-align: center;
}

ul li {
  list-style: none;
}

ul {
  margin: 0;
}

.form-message, footer p {
  margin-bottom: 0;
}

.offer__item--content img, .navbar-toggler {
  margin-bottom: 10px;
}

.accordion .accordion-item {
  margin-bottom: 20px;
}

.offer__item--content h6, .countdown {
  margin-bottom: 30px;
}

.form-message {
  margin-top: 30px;
}

.navbar-toggler, ul {
  padding: 0;
}

.accordion .accordion-item .accordion-header .accordion-button {
  padding: 20px;
}

.contact__form {
  padding: 30px;
}

.about__content ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.contact__info--body ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  width:33.33%;
  float:left;
  text-align:center;
}

.feature__content--content ul li {
  padding-top: 15px;
  padding-bottom: 15px;
}

footer {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* @@@@@@@@@@@@@  Extend Property padding 10 - 30 CSS Writing Now  @@@@@@@@@@@@@@ */
.navbar-toggler {
  padding: 0;
}

.rating, .social, ul,
ol {
  padding-left: 0;
}

.header {
  background-color:transparent;
  position: fixed;
  width: 100%;
}
@media screen and (max-width:1240px) {
  .header {
    background-color:#000;
  }
}
.header--fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #000;
}
.header .navbar {
  padding-block: 0.75rem;
}
@media (min-width: 992px) {
  .header .navbar {
    padding-block: 1.35rem;
  }
}
@media (min-width: 1200px) {
  .header .navbar-collapse {
    margin-top: 0;
  }
}

.nav-link {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
a.navbar-brand {font-size: 40px;font-weight: 700;color: #fff;}
@media (min-width: 1200px) {
  .nav-link {
    text-align: left;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.nav-link--active, .nav-link:hover, .nav-link:focus {
  color: #FB6468;
}

.navbar-toggler:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.navbar-toggler--icon {
  background-color: #fff;
  height: 2px;
  width: 27px;
  -webkit-transform: rotate(45deg) translateY(-5px);
  -moz-transform: rotate(45deg) translateY(-5px);
  -ms-transform: rotate(45deg) translateY(-5px);
  -o-transform: rotate(45deg) translateY(-5px);
  transform: rotate(45deg) translateY(-5px);
}
.navbar-toggler--icon:after, .navbar-toggler--icon:before {
  background-color: #fff;
  height: 2px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.navbar-toggler--icon:after {
  bottom: 7px;
  left: 0;
  -webkit-transform: rotate(-90deg) translateX(-6px);
  -moz-transform: rotate(-90deg) translateX(-6px);
  -ms-transform: rotate(-90deg) translateX(-6px);
  -o-transform: rotate(-90deg) translateX(-6px);
  transform: rotate(-90deg) translateX(-6px);
}
.navbar-toggler--icon:before {
  top: 7px;
  left: 0;
  opacity: 0;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
}
.navbar-toggler.collapsed .navbar-toggler--icon {
  transform: none;
}
.navbar-toggler.collapsed .navbar-toggler--icon:after {
  transform: none;
}
.navbar-toggler.collapsed .navbar-toggler--icon:before {
  opacity: 1;
  transform: none;
}

.social-btns {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .social-btns {
    margin-left: 20px;
    flex-direction: row;
    margin-top: 0;
  }
}
.social-btns .default-btn {
  border-radius: 99px;
}
.social-btns .default-btn:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  background: linear-gradient(0deg, #FB6567 0%, #EC008B 101.5%);
}

/*=-=-=-======< Section header start here >==========-=-=-=-*/
.section-header {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 60px;
  }
}
.section-header p {
  max-inline-size: 63ch;
  margin: auto;
}



@media (max-width: 1920px) {
  .banner-section {
    padding-top: 350px;
  }
}
@media (max-width: 1200px) {
  .banner-section {
    padding-top: 200px;
  }
}


@media (min-width: 992px) {
  .banner__content .default-btn {
    padding: 0 4rem;
    line-height: 60px;
  }
}

footer {
    background: #0a0a0a;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
    position: relative;
    border-top: 2px solid #00f6ff;
    box-shadow: 0 -4px 15px rgba(0, 246, 255, 0.2);
    overflow: hidden; /* ✅ evita scroll lateral */
}


footer p {
    margin: 0;
    color: #ccc;
    font-family: 'Roboto Condensed', sans-serif;
}

footer p a {
    color: #00f6ff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

footer p a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Línea superior animada */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f6ff, transparent);
    animation: neon-line 4s linear infinite;
}

@keyframes neon-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Botón subir */
.top-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #00f6ff;
    color: #000;
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px #00f6ff, 0 0 30px rgba(0, 246, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}

.top-btn:hover {
    background: #ff00ff;
    box-shadow: 0 0 15px #ff00ff, 0 0 30px rgba(255, 0, 255, 0.6);
    transform: scale(1.1);
}

.top-btn i {
    color: #8f8f8f;
    font-size: 18px;
}

.default-btn {
  text-decoration: none;
  color: #ff6565;
  padding: 0 2rem;
  line-height: 46px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 0.9375rem;
  transform-origin: right;
  transition: all 0.3s ease;
  background: #000;
  font-weight: bold;
  border-radius: 35px;
}
@media (min-width: 768px) {
  .default-btn {
    padding: 0 3rem;
    line-height: 50px;
  }
}
.default-btn span {
  position: inherit;
  z-index: 1;
}
.default-btn.move-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: transform 0.5s;
  transform-origin: right;
  transform: scaleX(0);
  z-index: 0;
}
.default-btn.move-right:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
}
.default-btn.move-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c62447;
  transition: transform 0.5s;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 0;
}
.default-btn.move-left:hover:before {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.5s;
}
.default-btn.move-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: transform 0.5s;
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: 0;
}
.default-btn.move-bottom:hover:before {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.5s;
}
.default-btn.move-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c62447;
  transition: transform 0.5s;
  transform-origin: top;
  transform: scaleY(0);
  z-index: 0;
}
.default-btn.move-top:hover:before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}
.default-btn:hover {
  color: #c62447;
}
.default-btn.bg-white {
  background: #fff;
  color: #c62447;
}
.default-btn.bg-white::before {
  background: #c62447;
}
.default-btn.bg-white:hover {
  color: #fff;
}
.default-btn.bg-primary {
  background: #c62447;
  color: #fff;
}
.default-btn.bg-primary::before {
  background: #c62447;
}
.default-btn.bg-primary:hover {
  color: #fff;
}
.default-btn.border-btn {
  border: 2px solid #fff;
  background: transparent;
  line-height: 46px;
}
.default-btn.border-btn:hover {
  border-color: #c62447;
  color: #fff;
}
.default-btn.border-btn.move-bottom::before {
  background: #c62447;
}
.banner-content {
    margin: 100px auto 0;
    text-align: center;
}

.comming-time ul li {
    display: inline-grid;
    margin: 25px 30px;
}

.comming-time ul li span {
    font-size: 50px;
}
.cart-sidebar-area {
  background-color: #0000006c;
  max-width: 350px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  position: fixed;
  right: 0;
  overflow-y: scroll;
  top: 0;
  z-index: 99999;
  transition: 0.7s ease;
  transform: translateX(350px);
}

.cart-sidebar-area.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}

.cart-sidebar-area .btn-wrapper {
  margin-top: 40px;
}

.cart-sidebar-area .top-content {
  position: relative;
  margin-bottom: 35px;
}

.side-sidebar-close-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.cart-products .title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  margin-bottom: 25px;
}

.single-product-item {
  min-height: 80px;
  margin-bottom: 20px;
}

.single-product-item .thumb {
  width: 100px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.single-product-item .thumb img {
  max-width: 100%;
  max-height: 100%;
}

.single-product-item .content {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.single-product-item .content .price {
  color: rgba(255, 255, 255, 0.4);
}
.single-product-item .content .price .pprice {
  color: #fff;
}

.single-product-item .content .title {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0px;
}

.single-product-item .content .remove-cart {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  background-color: #c62447;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.3s ease-in;
}

.single-product-item .content .remove-cart:hover {
  opacity: 0.8;
}

.overlay {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.header-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-form.active {
  visibility: visible;
  opacity: 1;
}
.header-form .bg-lay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}
.header-form .bg-lay .cross {
  position: absolute;
  color: #fff;
  cursor: pointer;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #c62447;
}
.header-form .form-container {
  max-width: 700px;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
}
.header-form .form-container button {
  width: 120px;
  height: 60px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #c62447;
  border: none;
  outline: none;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.header-form .form-container input {
  width: calc(100% - 120px);
  height: 60px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  outline: none;
  padding: 20px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .header-form .form-container {
    padding: 1px;
    margin: 10px;
  }
  .header-form .form-container button {
    width: 100px;
    font-size: 14px;
    font-weight: 400;
  }
  .header-form .form-container input {
    width: calc(100% - 100px);
  }
}



@media (min-width: 576px) {
  .about__thumb img {
    animation: angle-move 7s infinite;
  }
}
@media (min-width: 992px) {
  .about__content p {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .about__content ul {
    max-width: 50%;
  }
}
.countdown {
  column-gap: 20px;
  row-gap: 15px;
}
.countdown .clock-item {
  list-style: none;
  width: 120px;
  height: auto;
}
@media (min-width: 576px) {
  .countdown .clock-item {
    width: 80px;
  }
}
.countdown .clock-item .count-number {
  background: #c62447;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 1rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
  border-radius: 4px 4px 0 0;
}
.countdown .clock-item .count-text {
  background: #fff;
  font-size: 18px;
  color: #c62447;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
  border-radius: 0 0 4px 4px;
}

.feature__thumb {
  border-radius: 12px;
}
@media (min-width: 992px) {
  .feature__content--title p {
    max-width: 89%;
  }
}
@media (min-width: 576px) {
  .feature__content--content ul {
    max-width: 70%;
  }
}
.feature__content--left {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 100%;
  background: #1c1d21;
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .feature__content--left {
    font-size: 1.875rem;
  }
}
@media (max-width: 575px) {
  .feature__content--left {
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) {
  .feature__content--right {
    width: calc(100% - 90px);
  }
}
.banner-section{
  background: url(../images/banner/05.jpg)no-repeat;
  background-position:center center;
  background-size: cover;
  height: 700px;
  
}
.offer__item {
  background: url(../images/offer/bg-1.jpg);
  background-position: center !important;
  background-size: cover !important;
  border-radius: 6px;
}
.offer__item--content {
  padding: 60px 30px;
}
@media (min-width: 576px) {
  .offer__item--content {
    width: 75%;
  }
}
.offer__item--content span.default-btn {
  padding: 0 17px;
}
.offer__item--content span.default-btn span {
  color: #fff;
}
.offer__item.style-2 {
  background: transparent;
}
@media (min-width: 1440px) {
  .offer__item.style-2 .offer__item--thumb img {
    max-width: none;
  }
}
.offer__item.style-2 .offer__item--thumb .abs-image {
  right: 0px;
  top: 10%;
}
@media (min-width: 576px) {
  .offer__item.style-2 .offer__item--thumb .abs-image {
    right: 50px;
  }
}
@media (min-width: 992px) {
  .offer__item.style-2 .offer__item--thumb .abs-image {
    right: -50px;
  }
}
.offer__item.style-2 .offer__item--thumb .abs-image img {
  max-width: 100%;
}
.offer__item.style-2 .offer__item--content {
  padding: 0px;
}
@media (min-width: 576px) {
  .offer__item.style-2 .offer__item--content {
    width: 100%;
  }
}
.offer__item--content h2 {
  text-transform: capitalize;
  font-weight: 700;
}
.col:nth-child(2) .offer__item {
  background: url(../images/offer/bg-2.jpg);
}
.col:nth-child(2) .offer__item.style-2 {
  background: transparent;
}
.col:nth-child(3) .offer__item {
  background: url(../images/offer/bg-3.jpg);
}
.col:nth-child(3) .offer__item.style-3 {
  background: transparent;
}
.col:nth-child(4) .offer__item {
  background: url(../images/offer/bg-4.jpg);
}
.col:nth-child(3) .offer__item.style-4 {
  background: transparent;
}

.video {
  background: url(../images/bg/video-bg.jpg) no-repeat;
  background-position: center;
  height: 350px;
}
@media (min-width: 768px) {
  .video {
    height: 700px;
  }
}
.product__item {
  background: #16182075;
  border-radius: 25px;
}
.product__item--thumb img {
  transition: all 0.3s ease;
}
.product__item--content .rating {
  color: #fff;
}
.product__item:hover .product__item--thumb img {
  transform: scale(1.2);
}
.product__item:hover .product__item--content a h6 {
  color: #c62447;
}
.product__item:hover .product__item--content .defaule-btn.move-bottom::before {
  background: #c62447;
}

.faq-section {
  background: url(../images/bg/faq-bg.jpg);
  background-position: top;
  background-size: cover;
}

.accordion .accordion-item {
  border: none;
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.1);
  border-radius: 4px;
}
.accordion .accordion-item .accordion-header .accordion-button {
  color: #c62447;
  box-shadow: none;
  background: #fff;
  border-bottom: 1px solid #ededed;
  border-radius: 4px;
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  width: 16px;
  height: 2px;
  background: #c62447;
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: #000000;
  border-bottom: none;
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  background: #000000;
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed::before {
  height: 16px;
  width: 2px;
  background: #000000;
  right: 27px;
}
.accordion .accordion-item .accordion-body {
  color: #000000;
}

form input,
form textarea {
  background: #1c1d21;
  border-color: transparent;
  padding: 15px;
  color: #fff;
}
form input {
  height: 50px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  form input {
    width: calc(100% / 2 - 15px);
  }
}
form textarea {
  margin-bottom: 35px;
}
form button {
  height: 50px;
}
form button.default-btn {
  padding: 0px 30px;
  border: none;
  outline: none;
}

.form-message {
  font-size: 14px;
}
.form-message.success {
  color: green;
}
.form-message.error {
  color: red;
}

.contact__info--left {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin:0 auto 25px;
  border-radius: 100%;
  color: #fff;
  background: #1c1d21;
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .contact__info--left {
    font-size: 1.875rem;
  }
}
@media (max-width: 575px) {
  .contact__info--left {
    margin-bottom: 15px;
  }
}
.contact__form {
  background: #161820;
}

.event-section {
  background: url(../images/event/event-bg.html);
}
@media (max-width: 991px) {
  .event-section {
    background-size: cover;
  }
}

.event-tricket {
  background: url(../images/event/event-bg2.html);
}
@media (max-width: 991px) {
  .event-tricket {
    background-size: cover;
  }
}

.sponsor-section {
  background: url(../images/sponsor/sponsor-bg.html);
}
@media (max-width: 991px) {
  .sponsor-section {
    background-size: cover;
  }
}

/*# sourceMappingURL=style.css.map */

.offer-section.style-two{
  background: url(../../assets/images/offer/offer-bg-1.jpg) no-repeat center center;
  background-size:cover;
  position: relative;
}
.offer-section.style-two::before{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}
.offer {
  position: relative;
}

.contact-icon li{
  margin-right: 15px;
}
.cont-icon h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 0;
  line-height: 24px;
  text-transform: uppercase;
  font-family: 'Pinyon Script';
}
.cont-icon ul {
  padding: 0px 0px 50px;
}
.cont-icon ul li a {
  text-align: center;
  border: 1px solid #fff;
  float: left;
  color: #fff;
  font-size: 16px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: ease all .5s;
  -moz-transition: ease all .5s;
  -o-transition: ease all .5s;
  transition: all 0.3s ease-in-out ;
}
.cont-icon ul li a:hover{
  color: #c62447 ;
  border: 1px solid #c62447;

}

.pruct-tittle{
  display: flex;
  justify-content: center;
}
.pruct-tittle del{
  margin-right: 10px;
}
.section-contact-section{
  overflow: hidden;
  padding: 50px 0px;
}

@media screen and (max-width:1199px) {
  .contact__info--body ul li {
    width: 100%;
}
}





.Portfolio-section{
  overflow: hidden;
}
.portfolio-thump{
  position: relative;
}
.effcet{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.effcet:hover{
  opacity: 1;
}

.portfolio-thump img {
  width: 100%;
  height: 100%;
}
.p-icon{
  text-align: center;
  margin-top: 100px;
}
.p-icon svg{
  font-size: 36px;
  text-align: center;

}
/*----------New-Product--------------*/
.new-products{
  overflow: hidden;
}
.title-content {
  border: 1px solid #ededed;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.special-thump{
  position: relative;
}
.special-thump img {
  width: 100%;
  height: 100%;
}
.offer-effect{
  position: absolute;
  top: 0;
  left: 0;
}
.offer-effect span {
  background: #FF2929 none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 30px;
  line-height: 32px;
  width: 70px;
  text-align: center;
  font-size: 15px;
}
/*----------New-Product--------------*/

.testimonial-area {
  background: url(../../assets/images/client/client.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
}
.testimonial-area::before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.quotes {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}
.single-testimonial{
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.single-testimonial svg{
  font-size: 36px;
}
.client-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
.client-info span {
  font-size: 15px;
  text-transform: capitalize;
}
.single-testimonial.text-center p {
  font-size: 16px;
}
.testimonial-area{
  overflow: hidden;
}



.cont-icon .tittle{
  font-size: 60px;
  text-transform: capitalize;
  font-weight: 700;
  color: #fff;
}

.offer__item-one {
  background: url(../images/offer/bg-5.jpg);
  background-position: center !important;
  background-size: cover !important;
  border-radius: 6px;
  padding: 120px 30px;
}
.offer__item.offer-style-two{
  background: url(../images/offer/bg-6.jpg);
  background-position: center !important;
  background-size: cover !important;
  border-radius: 6px;
  padding: 120px 30px;
}
.offer__item.offer-style-three{
  background: url(../images/offer/bg-7.jpg);
  background-position: center !important;
  background-size: cover !important;
  border-radius: 6px;
  padding: 120px 30px;
}
.top-btn {
    position: fixed;
    left: 96%;
    bottom: 40px;
    color: #bf0a0a;
    float: right;
    border-radius: 5px;
    background: #00f6ff !important;
    padding: 5px 10px;
}

 #space-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        /* Degradado detrás de los nodos */
        #gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, #0a0a0a, #000);
            z-index: -3;
        }
   
        /* Estilo H2 con efecto glitch */
h2.glitch {
    font-size: 80px;
    color: #00f6ff;
    text-transform: uppercase;
    position: relative;
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff, 0 0 40px #00f6ff;
    animation: flickerH2 3s infinite alternate;
}

/* Flicker animación */
@keyframes flickerH2 {
    0%, 19%, 21%, 23%, 60%, 62%, 64%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff, 0 0 40px #00f6ff;
    }
    20%, 61%, 63% {
        opacity: 0.7;
        text-shadow: none;
    }
}

/* Efecto glitch */
h2.glitch::before,
h2.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
}

h2.glitch::before {
    color: #ff00ff;
    animation: glitchTopH2 2s infinite linear alternate-reverse;
}

h2.glitch::after {
    color: #00ffea;
    animation: glitchBottomH2 2s infinite linear alternate-reverse;
}

/* Animaciones glitch para el H2 */
@keyframes glitchTopH2 {
    0% { clip: rect(0, 9999px, 0, 0); transform: translate(-2px, -2px);}
    10% { clip: rect(10px, 9999px, 85px, 0); transform: translate(-3px, -3px);}
    20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(-4px, -2px);}
    30% { clip: rect(140px, 9999px, 180px, 0); transform: translate(-3px, -4px);}
    40% { clip: rect(0, 9999px, 0, 0);}
    100% { clip: rect(0, 9999px, 0, 0);}
}

@keyframes glitchBottomH2 {
    0% { clip: rect(0, 9999px, 0, 0); transform: translate(2px, 2px);}
    10% { clip: rect(20px, 9999px, 85px, 0); transform: translate(3px, 3px);}
    20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(4px, 2px);}
    30% { clip: rect(140px, 9999px, 180px, 0); transform: translate(3px, 4px);}
    40% { clip: rect(0, 9999px, 0, 0);}
    100% { clip: rect(0, 9999px, 0, 0);}
}

.logo-difusion {
    filter: drop-shadow(0 0 15px rgba(252, 105, 0, 0.8)) drop-shadow(0 0 30px rgba(252, 105, 0, 0.6));
    transition: filter 0.3s ease-in-out;
    animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(252, 105, 0, 0.5)) drop-shadow(0 0 20px rgba(252, 105, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(252, 105, 0, 1)) drop-shadow(0 0 45px rgba(252, 105, 0, 0.9));
    }
}

