@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
:root {
  --primary-color: #d62828;
  --secondary-color: #ffd300;
  --accent-color: #ff00aa;
  --dark-bg: #003049;
  --white-color: #ffffff;
}
a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.heading1 {
  font-size: 2.5rem;
}
.heading2 {
  font-size: 2rem;
}
.heading3 {
  font-size: 1.75rem;
}
.heading4 {
  font-size: 1.5rem;
}
.heading5 {
  font-size: 1.25rem;
}
.heading6 {
  font-size: 1rem;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
  font-family: Verdana, sans-serif;
}
p,
li,
a {
  font-family: Tahoma, sans-serif;
  font-weight: normal;
}
/* custom css starts */

/* === THEME COLORS === */

/* === HEADER SECTION === */
/* Header container */
header.site-header {
  font-family: Tahoma, sans-serif;
}

/* Topbar */
header.site-header .header-topbar {
  background-color: #003049;
  color: white;
  overflow: hidden;
  height: 3em;
}

/* Navbar */
header.site-header .navbar {
  background-color: #003049 !important;
}

header.site-header .navbar .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  text-transform: uppercase;
}

header.site-header .navbar .nav-link.active,
header.site-header .navbar .nav-link:hover {
  color: #f77f00 !important;
  text-decoration: underline;
  background-color: #000;
  border-radius: 20em;
}

/* Responsive logo for navbar */

/* ds code */
/* Default Styles (Large Screens) */
header.site-header .navbar {
  background: linear-gradient(to right, #003049 240px, #f5f5f5 240px);
  padding: 0;
}

header.site-header .header-topbar {
  background: #003049;
  color: white;
  font-size: 0.9rem;
  padding: 8px 0;
}

header.site-header .navbar-brand {
  position: relative;
  z-index: 2;
  background: #003049;
  padding: 15px 30px;
}

header.site-header .navbar-brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='100%%' viewBox='0 0 60 120' preserveAspectRatio='none'%3E%3Cpath d='M60,0 Q0,60 60,120 L0,120 L0,0 Z' fill='%23003049' /%3E%3C/svg%3E")
    no-repeat center center;
  background-size: cover;
}

header.site-header .logo-small {
  height: auto;
  max-height: 50px;
  transition: transform 0.3s ease;
}

header.site-header .navbar-collapse {
  background: #f5f5f5;
  color: var(--primary-color);
  padding-left: 30px;
}

header.site-header .nav-link {
  color: #003049 !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  position: relative;
}

header.site-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d62828;
  transition: all 0.3s ease;
}
/* home carousel */
section.home-carousel {
  position: relative;
}

section.home-carousel .home-carousel-swiper {
  width: 100%;
}

section.home-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

section.home-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* index page */
/* welcome section */

.fw-welcome {
  padding: 100px 0;
}

.fw-welcome-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px;
  margin-right: 20px;
}

.fw-welcome-image-box {
  width: calc(50% - 15px);
}

.fw-welcome-img-2 {
  margin-bottom: 30px;
}

.fw-welcome-img-1 figure,
.fw-welcome-img-2 figure,
.fw-welcome-img-3 figure {
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.fw-welcome-img-1 img,
.fw-welcome-img-2 img,
.fw-welcome-img-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.fw-welcome-img-1 img {
  aspect-ratio: 1 / 1.91;
}

.fw-welcome-img-2 img,
.fw-welcome-img-3 img {
  aspect-ratio: 1 / 1.07;
}

.fw-welcome-img-1 figure:hover img,
.fw-welcome-img-2 figure:hover img,
.fw-welcome-img-3 figure:hover img {
  transform: scale(1.05);
}

.fw-special-offer-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.fw-special-offer-circle img {
  width: 100%;
  max-width: 166px;
  animation: infiniterotate 20s infinite linear;
}

.fw-welcome-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--accent-color);
  color: white;
  border-radius: 100px;
  margin-bottom: 50px;
  margin-left: 20px;
  padding-right: 20px;
}

.fw-welcome-body-img {
  width: 200px;
  height: 145px;
  background-color: var(--white-color);
  clip-path: polygon(45% -70%, 96% 50%, 50% 155%, 0 50%);
  display: flex;
  margin-right: 10px;
  margin-left: -20px;
}

.fw-welcome-body-img figure {
  width: 180px;
  height: 145px;
  clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
  overflow: hidden;
}

.fw-welcome-body-img img {
  width: 180px;
  height: 145px;
}

.fw-welcome-body-content {
  width: calc(100% - 190px);
}

.fw-welcome-body-content h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fw-welcome-body-content p {
  color: var(--white-color);
  margin: 0;
}

.fw-welcome-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}

.fw-welcome-footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fw-welcome-footer-list ul li {
  background-position: left top;
  background-size: 24px auto;
  line-height: 1.5em;
  padding-left: 35px;
}

.fw-welcome-footer-list ul li:last-child {
  margin-bottom: 0;
}

.fw-welcome-contact-btn {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
}

.fw-icon-box {
  position: relative;
  height: 46px;
  width: 46px;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.fw-welcome-contact-btn:hover .fw-icon-box {
  background-position: right center;
}

.fw-icon-box img {
  width: 100%;
  max-width: 28px;
}

.fw-welcome-footer-btn-content {
  width: calc(100% - 56px);
}

.fw-welcome-footer-btn-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
}

.fw-welcome-footer-btn-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold !important;
}

.fw-welcome-footer-btn-content h3 a:hover {
  color: var(--accent-color);
}

/* index products */
section.index-products {
  background-color: var(--dark-bg);
  padding: 45px 0;
}

section.index-products .product-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  transition: all 0.4s ease-in-out;
}

section.index-products .product-item.active,
section.index-products .product-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

section.index-products .product-image a,
section.index-products .product-image figure {
  display: block;
  overflow: hidden;
  cursor: none;
}

section.index-products .product-image figure::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    270deg,
    rgb(255, 0, 170, 0.5) 0%,
    rgba(255, 213, 0, 0.586) 100%
  );
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

section.index-products .product-item.active .product-image a figure::before,
section.index-products .product-item:hover .product-image a figure::before {
  height: 100%;
}

section.index-products .product-image img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

section.index-products .product-item.active .product-image img,
section.index-products .product-item:hover .product-image img {
  transform: scale(1.05);
}

section.index-products .product-contents {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 30px;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

section.index-products .product-item.active .product-contents,
section.index-products .product-item:hover .product-contents {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

section.index-products .product-contents p {
  margin-bottom: 20px;
}

section.index-products .product-contents p a {
  display: inline-block;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 5px;
  padding: 8px 10px;
}

section.index-products .product-contents h3 {
  font-size: 20px;
  line-height: 1.4em;
  color: var(--white-color);
}

section.index-products .product-contents h3 a {
  color: inherit;
}

section.index-products .section-footer-text {
  width: 100%;
  max-width: 580px;
  text-align: center;
  margin: 20px auto 0;
}

section.index-products .section-footer-text p {
  margin-bottom: 0;
}

section.index-products .section-footer-text p a {
  position: relative;
  font-weight: 600;
  text-transform: capitalize;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

section.index-products .section-footer-text p a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  height: 2px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

section.index-products .section-footer-text p span:hover,
section.index-products .section-footer-text p a:hover,
section.index-products .section-footer-text p a:hover::before {
  background-position: right center;
}
section.index-products .theme-btn.products:hover {
  color: white !important;
}
/* index brands */
section.index-brands {
  background: #f8f9fa;
}

section.index-brands .wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

section.index-brands .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(255, 0, 170, 0.3);
}

section.index-brands .swiper-slide img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

section.index-brands .swiper-slide img:hover {
  filter: none;
  opacity: 1;
  background-color: var(--accent-color);
}
section.index-brands svg.wave {
  display: block;
  overflow: hidden;
  animation: waveMotion 4s ease-in-out infinite alternate;
}
/* pricelist parallax */
section.index-pricelist {
  position: relative;
  height: auto;
  background-image: url("../images/parallax-bg.webp");
  background-color: rgba(0, 0, 0, 0.4901960784);
  background-blend-mode: overlay;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 6em 2em;
}
section.index-pricelist .theme-btn:hover {
  color: white;
}
/* index final */
section.index-final {
  background-color: #fff;
}

section.index-final .feature-box {
  background: #f9f9f9;
  border-radius: 1.5rem;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.index-final .feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

section.index-final .feature-box img {
  width: 60px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

section.index-final .feature-box:hover img {
  transform: rotate(10deg) scale(1.05);
}

section.index-final .feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

section.index-final .cta-box {
  padding: 40px 20px;
  background: linear-gradient(135deg, #ff007a, #ff5e00);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(255, 94, 0, 0.3);
}

section.index-final .cta-box h3 {
  font-weight: 700;
}

section.index-final .cta-box .btn {
  background-color: #fff;
  color: #ff007a;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

section.index-final .cta-box .btn:hover {
  background-color: #ff007a;
  color: #fff;
}
/* about page */
/* about-intro */
section.about-intro {
  background-color: #fff;
  font-family: Tahoma, sans-serif;
}

section.about-intro .feature-box {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
section.about-intro .feature-box i {
  color: var(--accent-color);
}
section.about-intro .feature-box h5 {
  color: var(--dark-bg);
}

section.about-intro .feature-box:hover {
  background-color: #ffe6f2; /* light pink */
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 0, 170, 0.2);
}
section.about-intro .feature-box:hover h5 {
  color: var(--primary-color);
}
section.about-intro .feature-box:hover i.bi {
  color: var(--primary-color);
}
section.about-intro .feature-box i {
  transition: color 0.3s ease, transform 0.3s ease;
}

section.about-intro .feature-box:hover i {
  color: #ff007f; /* deeper pink */
  transform: scale(1.1);
}

section.about-intro h2 {
  font-weight: 700;
}

section.about-intro .text-red {
  color: #e60023;
}

section.about-intro .text-pink {
  color: #ff3399;
}
/* about-two */
section.about-parallax {
  background-image: url("../images/about-bg.webp");
  background-color: #000000a5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  background-attachment: fixed;
}
/* about counter */
section.about-counter {
  background-color: #fff;
  padding: 80px 0;
}

section.about-counter .odometer {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

section.about-counter .row.text-center > .col-6 {
  background-color: #f9f9f9;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.about-counter .row.text-center > .col-6:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

section.about-counter .text-muted {
  font-size: 16px;
  transition: color 0.3s ease;
}

section.about-counter .row.text-center > .col-6:hover .text-muted {
  color: #333;
}
section.about-counter .counter-wrapper .odometer {
  color: var(--primary-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}
section.about-counter .counter-wrapper p {
  color: #777;
}
section.about-counter .counter-wrapper:hover .odometer {
  color: black;
}
section.about-counter .counter-wrapper:hover p {
  color: black;
}
section.about-counter .counter-wrapper {
  height: 100%;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.about-counter .image-container {
  position: relative;
  z-index: 999;
}
/* safety tips */
section.safety-tips {
  background: #f9f9f9;
}

section.safety-tips .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
}

section.safety-tips .section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

section.safety-tips .safety-tip-box {
  background-color: #fff;
  border-left: 5px solid #ccc;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 6em;
}

section.safety-tips .safety-tip-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

section.safety-tips .safety-tip-box.do-tip {
  border-left-color: #28a745;
}

section.safety-tips .safety-tip-box.dont-tip {
  border-left-color: #dc3545;
}

section.safety-tips .safety-tip-box .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: inherit;
  flex-shrink: 0;
  line-height: 1;
}

section.safety-tips .do-tip .icon {
  color: #28a745;
}

section.safety-tips .dont-tip .icon {
  color: #dc3545;
}

section.safety-tips .safety-tip-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
/* contact page */
/* Contact Details Section */
section.contact-details {
  background: #fff;
  padding: 4rem 0;
}

section.contact-details .contact-image {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

section.contact-details .contact-image:hover {
  transform: translateY(-5px);
}

section.contact-details .heading {
  color: #dc3545;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

section.contact-details .sub-heading {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

section.contact-details .sub-heading i {
  color: #dc3545;
  margin-right: 0.8rem;
  transition: transform 0.3s ease;
}

section.contact-details .contact-card {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  min-height: 10em;
  display: block;
}

section.contact-details .contact-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  color: white;
}

section.contact-details .contact-text {
  color: black;
  line-height: 1.7;
  margin-left: 2rem;
}
section.contact-details .contact-card:hover .contact-text {
  color: white;
}
section.contact-details .contact-card:hover .sub-heading {
  color: white;
}
section.contact-details .contact-card:hover i {
  color: white;
}
/* footer */
/* Footer Styles - Desktop First */
.fireworks-footer {
  background-color: var(--dark-bg);
  color: var(--white-color);
  font-family: Verdana, sans-serif;
  position: relative;
}

.fireworks-footer .footer-heading {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  min-height: 3rem; /* Ensures consistent height for all headings */
  display: flex;
  align-items: flex-end; /* Aligns text to bottom */
}

.fireworks-footer .footer-about {
  color: #d1d1d1;
  font-size: 0.95rem;
}

.fireworks-footer ul {
  padding-left: 0;
  list-style: none;
}

.fireworks-footer ul li {
  margin-bottom: 0.8rem;
  display: flex;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.fireworks-footer ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.fireworks-footer ul li:hover {
  color: var(--secondary-color);
}

.fireworks-footer ul li:hover i {
  transform: scale(1.2);
}

.fireworks-footer a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fireworks-footer a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.fireworks-footer .quick-links li {
  margin-bottom: 0.5rem;
}

.fireworks-footer .quick-links a {
  color: #000 !important;
  transition: none;
  transform: none;
}

.fireworks-footer .quick-links a:hover {
  color: #000 !important;
  text-decoration: underline;
}

/* utility classes */
.text-red {
  color: var(--primary-color) !important;
}
.bg-red {
  background-color: var(--primary-color) !important;
}
.text-yellow {
  color: var(--secondary-color) !important;
}
.bg-yellow {
  background-color: var(--secondary-color) !important;
}
.text-pink {
  color: var(--accent-color) !important;
}
.bg-pink {
  background-color: var(--accent-color) !important;
}
.bg-blue {
  background-color: var(--dark-bg) !important;
}
.text-gray {
  color: #757270 !important;
}
/* theme-btn */
.theme-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--accent-color) 0%,
    var(--secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  border-radius: 100px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  padding: 17px 60px 17px 30px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.theme-btn:hover {
  background-position: right center;
}

.theme-btn .icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
}

.theme-btn:hover .icon {
  right: 27px;
}

.theme-btn.theme-btn-highlighted {
  background: var(--secondary-color);
  color: var(--dark-bg);
}

.theme-btn.theme-btn-highlighted .icon {
  color: var(--secondary-color);
}

.theme-btn.theme-btn-highlighted::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90.15deg,
    var(--accent-color) 1.15%,
    var(--secondary-color) 98.84%
  );
  border-radius: 100px;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.theme-btn.theme-btn-highlighted:hover {
  background-color: transparent;
  color: var(--white-color);
}

.theme-btn.theme-btn-highlighted:hover .icon {
  color: var(--white-color);
}

.theme-btn.theme-btn-highlighted:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
/* image shine hover effect */
.image-anime {
  display: block;
  overflow: hidden;
  cursor: none;
  position: relative;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 2;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
/* custom css ends */
.w0 {
  width: 0%;
}
.fixed {
  position: fixed;
  z-index: 2;
}
.priceicn {
  width: 50px;
}
.priceicn2 {
  width: 120px;
}
.point {
  bottom: 10px;
  left: 10px;
}
.point1 {
  bottom: 70px;
  left: 10px;
}
.point2 {
  bottom: 15px;
  right: 10px;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes waveMotion {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* mobile media query */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }
  section.index-pricelist h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  #navbarToggle {
    margin-right: 20px;
  }
  /* index hero */

  .fireworks-footer .footer-heading {
    text-align: center !important;
    min-height: auto;
    justify-content: center;
  }

  .fireworks-footer .footer-about,
  .fireworks-footer ul {
    text-align: left;
  }

  .fireworks-footer ul li {
    justify-content: left;
  }

  .fireworks-footer .quick-links {
    justify-content: center !important;
  }
}
/* menu toggler */
header.site-header .navbar-brand::after {
  right: -31px;
}
/* index page */
.fw-welcome {
  padding: 60px 0;
}

.fw-welcome-body {
  margin-left: 0;
  border-radius: 30px;
  padding: 15px;
}

.fw-welcome-body-img {
  width: 120px;
  height: 100px;
  margin-left: 0;
}

.fw-welcome-body-img figure {
  width: 110px;
  height: 100px;
}

.fw-welcome-body-img img {
  width: 110px;
  height: 100px;
}

.fw-welcome-body-content {
  width: calc(100% - 130px);
}

.fw-welcome-body-content h3 {
  font-size: 18px;
}

.fw-welcome-body-content p {
  font-size: 14px;
}
.fw-welcome-footer-btn-content h3 {
  font-size: 12px;
}

section.home-carousel .home-carousel-swiper {
  height: 25vh;
}

/* tablet media querry */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
  /* footer styles */
  .fireworks-footer .footer-heading {
    font-size: 1.1rem;
    min-height: 2.8rem;
  }
  .fw-welcome-footer {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .fireworks-footer ul li {
    font-size: 0.9rem;
  }
  /* index page */
  .fw-welcome {
    padding: 80px 0;
  }

  .fw-welcome-image {
    margin-bottom: 50px;
    margin-right: 0;
  }

  .fw-welcome-footer-list,
  .fw-welcome-footer-content {
    width: 100%;
  }

  .fw-welcome-footer {
    gap: 30px;
  }
  section.home-carousel .home-carousel-swiper {
    height: auto;
  }
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;
}
.oopslogo {
  width: 350px;
}
.notfound h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.notfound p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 5px;
}
.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px 4px 15px -5px #0046d5;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 142px;
  }
}

.time-of-year {
  margin: 100px 75px 10px 75px;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.time-of-year .tooltip {
  background: #db2a1b;
  border-radius: 3px;
  bottom: -49px;
  font-size: 20px;
  display: block;
  left: -67px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  width: 320px;
  height: 100px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.time-of-year .tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #db2a1b;
  bottom: 58px;
  content: " ";
  position: absolute;
  left: 0%;
  margin-left: -13px;
  transform: rotate(92deg);
}
.time-of-year:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
